From f306b95f622ec2f572cd8192536101a536dbe4d2 Mon Sep 17 00:00:00 2001 From: parsa aghaei Date: Tue, 18 Aug 2026 17:38:22 +0330 Subject: [PATCH] fix(router): add ErrorBoundary and lazyWithRetry to prevent dynamic import chunk failures --- .../src/components/RouteErrorBoundary.tsx | 111 + .../admin-panel/src/routes/adminRoutes.tsx | 73 +- .../admin-panel/src/utils/lazyWithRetry.ts | 35 + graphify-out/.graphify_labels.json | 51 +- graphify-out/.graphify_labels.json.sig | 2 +- graphify-out/2026-08-18/.graphify_labels.json | 64 +- graphify-out/2026-08-18/GRAPH_REPORT.md | 276 +- graphify-out/2026-08-18/graph.json | 85773 ++++++++-------- graphify-out/2026-08-18/manifest.json | 1126 +- graphify-out/GRAPH_REPORT.md | 283 +- graphify-out/cache/stat-index.json | 2 +- graphify-out/graph.html | 8 +- graphify-out/graph.json | 6984 +- graphify-out/manifest.json | 1086 +- 14 files changed, 48329 insertions(+), 47545 deletions(-) create mode 100644 frontend/admin-panel/src/components/RouteErrorBoundary.tsx create mode 100644 frontend/admin-panel/src/utils/lazyWithRetry.ts diff --git a/frontend/admin-panel/src/components/RouteErrorBoundary.tsx b/frontend/admin-panel/src/components/RouteErrorBoundary.tsx new file mode 100644 index 0000000..35a4be5 --- /dev/null +++ b/frontend/admin-panel/src/components/RouteErrorBoundary.tsx @@ -0,0 +1,111 @@ +import { Component, ReactNode, ErrorInfo } from 'react'; +import { AlertCircle, RefreshCw, Home } from 'lucide-react'; + +interface Props { + children: ReactNode; + fallback?: ReactNode; +} + +interface State { + hasError: boolean; + error: Error | null; + isChunkLoadError: boolean; +} + +export class RouteErrorBoundary extends Component { + public state: State = { + hasError: false, + error: null, + isChunkLoadError: false, + }; + + public static getDerivedStateFromError(error: Error): State { + const isChunk = + error.name === 'ChunkLoadError' || + /Failed to fetch dynamically imported module/i.test(error.message) || + /Loading chunk .* failed/i.test(error.message) || + /dynamically imported module/i.test(error.message); + + return { + hasError: true, + error, + isChunkLoadError: isChunk, + }; + } + + public componentDidCatch(error: Error, errorInfo: ErrorInfo) { + console.error('[RouteErrorBoundary] Uncaught error:', error, errorInfo); + + // Auto-reload on chunk mismatch once to seamlessly fetch updated assets from server + if (this.state.isChunkLoadError) { + const storageKey = 'canina_chunk_reload_ts'; + const lastReload = sessionStorage.getItem(storageKey); + const now = Date.now(); + + // Only auto-reload if we haven't done so in the last 10 seconds + if (!lastReload || now - parseInt(lastReload, 10) > 10000) { + sessionStorage.setItem(storageKey, String(now)); + window.location.reload(); + } + } + } + + private handleReload = () => { + window.location.reload(); + }; + + private handleGoHome = () => { + window.location.href = '/'; + }; + + public render() { + if (this.state.hasError) { + if (this.props.fallback) { + return this.props.fallback; + } + + return ( +
+
+
+ +
+ +
+

+ {this.state.isChunkLoadError + ? 'نسخه جدیدی از پنل ادمین منتشر شده است' + : 'خطا در بارگذاری بخش مورد نظر'} +

+

+ {this.state.isChunkLoadError + ? 'فایل‌های جاوااسکریپت این بخش روی سرور به‌روزرسانی شده‌اند. برای بارگذاری نسخه جدید دکمه بروزرسانی را بزنید.' + : this.state.error?.message || 'یک خطای غیرمنتظره در بارگذاری صفحه رخ داد.'} +

+
+ +
+ + + +
+
+
+ ); + } + + return this.props.children; + } +} diff --git a/frontend/admin-panel/src/routes/adminRoutes.tsx b/frontend/admin-panel/src/routes/adminRoutes.tsx index 5e6a116..652bbc0 100644 --- a/frontend/admin-panel/src/routes/adminRoutes.tsx +++ b/frontend/admin-panel/src/routes/adminRoutes.tsx @@ -1,44 +1,44 @@ -/* eslint-disable react-refresh/only-export-components */ -import { lazy } from 'react'; import type { ComponentType } from 'react'; import { createBrowserRouter, Navigate } from 'react-router-dom'; import Layout from '../components/Layout'; import ProtectedRoute from '../components/ProtectedRoute'; import Login from '../pages/Login'; +import { RouteErrorBoundary } from '../components/RouteErrorBoundary'; +import { lazyWithRetry } from '../utils/lazyWithRetry'; -// Lazy loading admin pages -const Dashboard = lazy(() => import('../pages/Dashboard')); -const Users = lazy(() => import('../pages/Users')); -const Products = lazy(() => import('../pages/Products')); -const Orders = lazy(() => import('../pages/Orders')); -const Coupons = lazy(() => import('../pages/Coupons')); -const Settings = lazy(() => import('../pages/Settings')); -const Reports = lazy(() => import('../pages/Reports')); -const Categories = lazy(() => import('../pages/Categories')); -const Blogs = lazy(() => import('../pages/Blogs')); -const Wiki = lazy(() => import('../pages/Wiki')); -const Pets = lazy(() => import('../pages/Pets')); -const UITexts = lazy(() => import('../pages/UITexts')); -const Media = lazy(() => import('../pages/Media')); -const CMS = lazy(() => import('../pages/CMS')); -const WholesaleApplications = lazy(() => import('../pages/WholesaleApplications')); -const Videos = lazy(() => import('../pages/Videos')); -const ContactSubmissions = lazy(() => import('../pages/ContactSubmissions')); -const BannersManager = lazy(() => import('../pages/BannersManager')); -const SmartAdvisorManager = lazy(() => import('../pages/SmartAdvisorManager')); -const TestimonialsManager = lazy(() => import('../pages/TestimonialsManager')); -const IngredientsManager = lazy(() => import('../pages/IngredientsManager')); -const PrescriptionsManager = lazy(() => import('../pages/PrescriptionsManager')); -const B2BManager = lazy(() => import('../pages/B2BManager')); -const SeoSettingsPage = lazy(() => import('../pages/SeoSettingsPage')); -const FinancialSettingsPage = lazy(() => import('../pages/FinancialSettingsPage')); -const SystemSettingsPage = lazy(() => import('../pages/SystemSettingsPage')); -const SmsSettingsPage = lazy(() => import('../pages/SmsSettingsPage')); -const SslSettingsPage = lazy(() => import('../pages/SslSettingsPage')); -const Transactions = lazy(() => import('../pages/Transactions')); -const Tickets = lazy(() => import('../pages/Tickets')); -const Reviews = lazy(() => import('../pages/Reviews')); -const DoctorsManager = lazy(() => import('../pages/DoctorsManager')); +// Lazy loading admin pages with automatic retry and cache recovery +const Dashboard = lazyWithRetry(() => import('../pages/Dashboard')); +const Users = lazyWithRetry(() => import('../pages/Users')); +const Products = lazyWithRetry(() => import('../pages/Products')); +const Orders = lazyWithRetry(() => import('../pages/Orders')); +const Coupons = lazyWithRetry(() => import('../pages/Coupons')); +const Settings = lazyWithRetry(() => import('../pages/Settings')); +const Reports = lazyWithRetry(() => import('../pages/Reports')); +const Categories = lazyWithRetry(() => import('../pages/Categories')); +const Blogs = lazyWithRetry(() => import('../pages/Blogs')); +const Wiki = lazyWithRetry(() => import('../pages/Wiki')); +const Pets = lazyWithRetry(() => import('../pages/Pets')); +const UITexts = lazyWithRetry(() => import('../pages/UITexts')); +const Media = lazyWithRetry(() => import('../pages/Media')); +const CMS = lazyWithRetry(() => import('../pages/CMS')); +const WholesaleApplications = lazyWithRetry(() => import('../pages/WholesaleApplications')); +const Videos = lazyWithRetry(() => import('../pages/Videos')); +const ContactSubmissions = lazyWithRetry(() => import('../pages/ContactSubmissions')); +const BannersManager = lazyWithRetry(() => import('../pages/BannersManager')); +const SmartAdvisorManager = lazyWithRetry(() => import('../pages/SmartAdvisorManager')); +const TestimonialsManager = lazyWithRetry(() => import('../pages/TestimonialsManager')); +const IngredientsManager = lazyWithRetry(() => import('../pages/IngredientsManager')); +const PrescriptionsManager = lazyWithRetry(() => import('../pages/PrescriptionsManager')); +const B2BManager = lazyWithRetry(() => import('../pages/B2BManager')); +const SeoSettingsPage = lazyWithRetry(() => import('../pages/SeoSettingsPage')); +const FinancialSettingsPage = lazyWithRetry(() => import('../pages/FinancialSettingsPage')); +const SystemSettingsPage = lazyWithRetry(() => import('../pages/SystemSettingsPage')); +const SmsSettingsPage = lazyWithRetry(() => import('../pages/SmsSettingsPage')); +const SslSettingsPage = lazyWithRetry(() => import('../pages/SslSettingsPage')); +const Transactions = lazyWithRetry(() => import('../pages/Transactions')); +const Tickets = lazyWithRetry(() => import('../pages/Tickets')); +const Reviews = lazyWithRetry(() => import('../pages/Reviews')); +const DoctorsManager = lazyWithRetry(() => import('../pages/DoctorsManager')); export interface AdminRouteConfig { path: string; @@ -50,13 +50,16 @@ export const router = createBrowserRouter([ { path: '/login', element: , + errorElement: , }, { element: , + errorElement: , children: [ { path: '/', element: , + errorElement: , children: [ { index: true, element: }, { path: 'users/*', element: }, diff --git a/frontend/admin-panel/src/utils/lazyWithRetry.ts b/frontend/admin-panel/src/utils/lazyWithRetry.ts new file mode 100644 index 0000000..6388e85 --- /dev/null +++ b/frontend/admin-panel/src/utils/lazyWithRetry.ts @@ -0,0 +1,35 @@ +import { ComponentType, lazy } from 'react'; + +/** + * Wraps dynamic React.lazy imports with retry logic and auto cache-busting + * to prevent "Failed to fetch dynamically imported module" errors after deployments. + */ +export function lazyWithRetry>( + componentImport: () => Promise<{ default: T }>, + retriesLeft = 2, + interval = 1000 +): React.LazyExoticComponent { + return lazy(() => + new Promise<{ default: T }>((resolve, reject) => { + componentImport() + .then(resolve) + .catch((error: unknown) => { + if (retriesLeft <= 0) { + // Check if page was already reloaded for chunk error + const hasReloaded = sessionStorage.getItem('chunk_retry_reloaded'); + if (!hasReloaded) { + sessionStorage.setItem('chunk_retry_reloaded', 'true'); + window.location.reload(); + return; + } + reject(error); + return; + } + + setTimeout(() => { + lazyWithRetry(componentImport, retriesLeft - 1, interval); + }, interval); + }); + }) + ); +} diff --git a/graphify-out/.graphify_labels.json b/graphify-out/.graphify_labels.json index ecb723d..5dd6e65 100644 --- a/graphify-out/.graphify_labels.json +++ b/graphify-out/.graphify_labels.json @@ -1,24 +1,24 @@ { - "0": "ApiOperation", + "0": "OrdersService", "1": "productService.ts", "2": "CmsController", "3": "app.module.ts", "4": "reviews.controller.ts", "5": "tickets.controller.ts", "6": "UserDashboard.tsx", - "7": "MediaSelector.tsx", + "7": "Spinner.tsx", "8": "admin.module.ts", "9": "PetProfile.tsx", "10": "DoctorsService", "11": "useSettingsStore", "12": "adminRoutes.tsx", "13": "PrismaService", - "14": "BlogsController", + "14": ".findAll", "15": "ProductsService", "16": "lib/services/api.ts", "17": "CreateVideoDto", "18": "src/services/api.ts", - "19": "pets/pets.controller.ts", + "19": "auth.service.ts", "20": "BE-001", "21": "Roles", "22": "FE-001", @@ -42,13 +42,13 @@ "40": "SslController", "41": "PodcastPlayerModal.tsx", "42": "IngredientsService", - "43": "RedisService", + "43": "AuthService", "44": "MediaController", - "45": "Pagination.tsx", + "45": "Transactions.tsx", "46": "SmsService", - "47": "OrdersService", - "48": "PrescriptionsService", - "49": "SmartAdvisorService", + "47": "OrdersController", + "48": "PrescriptionsController", + "49": "SmartAdvisorController", "50": "TestimonialsService", "51": "Role & Core Objective", "52": "ContactService", @@ -57,7 +57,7 @@ "55": "Media.tsx", "56": "compilerOptions", "57": "PetsController", - "58": "PaginationDto", + "58": "BlogsController", "59": "dependencies", "60": "compilerOptions", "61": "HomeClient.tsx", @@ -69,7 +69,7 @@ "67": "Operational Rules & Boundaries", "68": "Operational Rules & Boundaries", "69": "WikiController", - "70": "AdminQueryDto", + "70": "ApiOperation", "71": "PetsController", "72": "seo.module.ts", "73": "admin.service.ts", @@ -97,15 +97,15 @@ "95": "Operational Rules & Boundaries", "96": "exclude", "97": "jest", - "98": "AdminController", + "98": "AdminService", "99": "Comprehensive Change Log", "100": "Operational Rules & Boundaries", - "101": "AdminService", + "101": "Body", "102": "devDependencies", "103": "ProductDto", - "104": "auth.controller.ts", + "104": ".adminLogin", "105": "1. Summary of Integrity Repairs Performed", - "106": "BlogsService", + "106": "PaginationDto", "107": "Operational Rules & Boundaries", "108": "Operational Rules & Boundaries", "109": "Operational Rules & Boundaries", @@ -140,11 +140,11 @@ "138": "InitiatePaymentDto", "139": "System Discovery", "140": "Product Requirement Document (PRD)", - "141": "WikiController", + "141": "pagination.dto.ts", "142": "globals", "143": "@nestjs/cli", "144": "Baseline Command Plan & Reconciled Command History", - "145": "Spinner.tsx", + "145": "SmsSettingsPage.tsx", "146": "ErrorPages.tsx", "147": "with-vpn.sh", "148": "Architecture Specification", @@ -173,7 +173,7 @@ "171": "🎨 Frontend & Admin Panel Technical Review (06_dev_frontend)", "172": "🚀 SEO & Content Strategy Review (12_seo_content)", "173": "@types/node", - "174": "ZibalCallbackQueryDto", + "174": ".handleZibalCallback", "175": "seed-ui-texts.ts", "176": "seed-wiki.ts", "177": "update-blog.dto.ts", @@ -231,7 +231,7 @@ "229": "eslint-plugin-react-refresh", "230": "@tailwindcss/postcss", "231": "typescript", - "232": "@nestjs/core", + "232": "RegisterDto", "233": "@testing-library/react", "234": "@types/react", "235": "typescript", @@ -242,7 +242,7 @@ "240": "ts-loader", "241": "passport-jwt", "242": "@types/bcrypt", - "243": "MetricsController", + "243": "RedisService", "244": "blog.entity.ts", "245": "home.entity.ts", "246": "wiki.entity.ts", @@ -304,5 +304,14 @@ "302": "@eslint/eslintrc", "303": "axios", "304": "tailwindcss", - "312": "tailwindcss" + "305": "RouteErrorBoundary", + "306": ".findAll", + "307": "AdminLoginDto", + "308": "VerifyOtpDto", + "309": ".deleteScientificTerm", + "310": "PetsService", + "311": "AuthController", + "312": "tailwindcss", + "313": "ValidateCouponDto", + "314": "reflect-metadata" } diff --git a/graphify-out/.graphify_labels.json.sig b/graphify-out/.graphify_labels.json.sig index 210f103..c22a686 100644 --- a/graphify-out/.graphify_labels.json.sig +++ b/graphify-out/.graphify_labels.json.sig @@ -1 +1 @@ -{"0": "5bfa86169c4cf40c", "1": "ad98932dbc749660", "2": "f34c872571e8a774", "3": "07a90c59781b53fa", "4": "e276e5845f115c99", "5": "81b67391b0b87cab", "6": "691b713e90832ddd", "7": "1436680f46194ec3", "8": "f788abeae5e7e9ce", "9": "62311a1aab87ffa2", "10": "8744c3e2c5ef5deb", "11": "fea0e1f745e9a689", "12": "f4a05373df96a823", "13": "7dcaca8334a76dff", "14": "e37e0ecadc209564", "15": "5df44d6c45d12778", "16": "000fc1a788f508c6", "17": "1077fee6b5510591", "18": "f841b633ae9885ba", "19": "9ef60287390f427d", "20": "4eda46a5b0695ef6", "21": "5c95b55c979b5fff", "22": "90b79d6027d60d30", "23": "6bd6f2633370820c", "24": "7664e56213a29331", "25": "942c4f9928c60a45", "26": "0614b98d9013b5f5", "27": "53ff49b3d54f0fba", "28": "2153ddcd7477dfb7", "29": "5499104e9ca4fdad", "30": "6198197b3da188d8", "31": "2a9c6e05c217b53e", "32": "32117d32aa2801ee", "33": "1c9a1f4c72613346", "34": "925daf4b9b9c3df6", "35": "4c59d1cd2ef8804b", "36": "7abb5bc6a0e4f65f", "37": "a1c128c95e3842dc", "38": "be3689094661c515", "39": "7dd5c61562c827a8", "40": "cbaa20536db72d3e", "41": "f74d29bd4f6b6043", "42": "65e41c1c22dcd058", "43": "68522816a2fa057a", "44": "cf43e144340a5383", "45": "3d3ebff744952385", "46": "d3fa96ac9ea8b30a", "47": "00341c22c4d34679", "48": "73df605d6eec20d9", "49": "cb17af4eb831480f", "50": "5a6d4157fb91d937", "51": "0f62727f3b4907c0", "52": "93d54dd865cba4db", "53": "2ffbb1f78c12dced", "54": "e802e72646a2bc8a", "55": "a58a434433339b35", "56": "01d4f9d6d9f3b08a", "57": "e2bda4d8806cbe01", "58": "4b68a8d826fbc345", "59": "060c64726e8d1bd3", "60": "3b9521f7d7986eaa", "61": "43d5d1b48c838a16", "62": "3b1909d07e8fb962", "63": "934752afce22e8e1", "64": "7478d6755ca2248a", "65": "31a5a53f1fe77e46", "66": "63324a751eae8384", "67": "69d0f8b228227690", "68": "22456307ff273d80", "69": "d9e74b032c5b8440", "70": "223426ad109db14d", "71": "7b751917f48cf7a7", "72": "62430df45afa65b5", "73": "d1392d8ad5d97af2", "74": "ba7bc17581366c9a", "75": "0727bb53199085fc", "76": "91393683c97d1773", "77": "b1fb8b1d0bcaa7fd", "78": "70497658d0e0cea6", "79": "4ece6985263357c4", "80": "e3d13e2060945d3f", "81": "6e280669736f661b", "82": "8c69c1f2f4a74077", "83": "8c4c02353e3f3b15", "84": "841013681f4e6e8c", "85": "656f816eb51f2ab1", "86": "25a6695f5783d2be", "87": "bf5a253cc5340107", "88": "f7a706f5fcb260c3", "89": "71d2ce6fb684bc0e", "90": "44ba71147b823d4b", "91": "46e9411f2b2e725a", "92": "c2ee2f9838df873c", "93": "3c1d9844d072bd2a", "94": "f0f56796aaebb4f5", "95": "b3c5433df880f335", "96": "3077e46a7508b30b", "97": "e036dbd1de0f8b38", "98": "1ca8c1d4ef4f96ba", "99": "ac7cb5ec7d5c0802", "100": "622f83f2eb300a25", "101": "56de41d47484c340", "102": "94bf724f55aba57a", "103": "610fb4de52790b25", "104": "0f87af5648bfc458", "105": "6d16ccde1291c9d4", "106": "81b239851ec502ca", "107": "d228746e85ead3af", "108": "b55ba9125ffb5729", "109": "5f50a360f18a880b", "110": "c6b57d78299a27b3", "111": "8ffb30447853a689", "112": "6594364126802c01", "113": "db70db08c00162df", "114": "9a1080686fc7c39b", "115": "77fd76193df9f573", "116": "28355f848c862b6e", "117": "25f77f5455bdc96a", "118": "9141a0ede9461fd5", "119": "70e62553403661a3", "120": "3ceda88239910d9a", "121": "9409b3b8a334f51d", "122": "ac95a9f152e3d1c4", "123": "a7299f20633c0236", "124": "989c014f76b74793", "125": "7f405315686459b9", "126": "44c7924c829cc215", "127": "17ecb7325285cf7a", "128": "4487fd85ddc13c93", "129": "bddcc43a56a2787b", "130": "c4abf0eb38ef740d", "131": "07d37aeefbe50e21", "132": "70b58e32c2890fdd", "133": "f2c7afb0c277c4b7", "134": "167643bcbbc26244", "135": "dcffd9ad7a1f7df6", "136": "1b0ef1cf87b53de3", "137": "5404a2dafca5cc88", "138": "34581929891cefb2", "139": "c7ddffce8605b65b", "140": "5910eeefe2f97a20", "141": "6e67e4bc78994a71", "142": "c556ac339be4aba5", "143": "d7cad630fb1d1414", "144": "66efafa1e86d8081", "145": "14327ff60e9b9d11", "146": "48f898ce95c8e90c", "147": "a2fe690317aef2ee", "148": "e30004421d79ffeb", "149": "cd66a5f43cd3407d", "150": "fa2d7dcf52348095", "151": "78aa95566e86b57f", "152": "75efc6457f7fce22", "153": "8375a4fbf0573a52", "154": "edb079558c6f3d59", "155": "fc778d7a22e550eb", "156": "1d80b74f885d6716", "157": "f4d1e3ec22fbfe3d", "158": "3cd15de82f23093a", "159": "7a77349497fcdf37", "160": "85cd9ca1246dc437", "161": "3e93071fc4a80e95", "162": "6114ccb7b9036e33", "163": "f3d92800d756dd79", "164": "2aa85a497fd142d7", "165": "35d3a2679371e9a4", "166": "b8f35a499b36a57a", "167": "8d1aad761b4c839d", "168": "00d9ddfeee7b4c47", "169": "4ac5f9965007617d", "170": "cff999497d56b512", "171": "06b38ffa6f58195d", "172": "ee705c178d6958bb", "173": "6ddbf62ac93920e1", "174": "1a8c049b65c88a7d", "175": "867babdd40f0c3fc", "176": "298144d1548a7dee", "177": "00d275127a7e435e", "178": "2942a9d30dae4a29", "179": "3e21e2fb50e12670", "180": "be62daa7d5bc336a", "181": "47c3e1a9d4bb7e67", "182": "82ff39c105ae3090", "183": "6747ecf936cb0400", "184": "ebc0087e3400009c", "185": "51d4e15c7e10decf", "186": "17ca8d640a75a60d", "187": "bbcea5ec9d046ac0", "188": "162b36508e5879f3", "189": "5eb83040a203bd16", "190": "6256958a9b817133", "191": "ab06e01c9caa9f90", "192": "204b3a83ef62f360", "193": "20a2080eac259e2b", "194": "1c69dcee9405ce47", "195": "7c65a1f3c4f1b858", "196": "67b5cef27d55952d", "197": "10b2996179aaaf2e", "198": "39031f751fb2d42f", "199": "d2a7888a77082d4c", "200": "54f53e5e0cc8c385", "201": "821696b1ff49347b", "202": "00739b5480732bdc", "203": "2434b1a28b16557f", "204": "cb3fe87c920b0cb3", "205": "ddb9c95db6575999", "206": "e2250667e3a77089", "207": "9069d5dda9013eee", "208": "0077975cffee54dc", "209": "e6fcd0aec85fac92", "210": "9590124db1601a96", "211": "0598c15fa2a12fad", "212": "1d230c8fb897098f", "213": "0650b6a561436852", "214": "3a6753a80123a0f4", "215": "ca950b47c628b81a", "216": "e077f384ad6b18ad", "217": "dd8d62f9fb517bb5", "218": "6d0322fa3d03fa10", "219": "3be2a9ccdc6668cc", "220": "3fb0bef25bab507e", "221": "bd3010d97e467f52", "222": "703a4a9860d7ed16", "223": "85fd4a84b5393d0e", "224": "97ec841e4f367258", "225": "4654167fd211d027", "226": "8176a164778526f9", "227": "a74925b45b279d6f", "228": "88e82bb9fffbe642", "229": "60ce4fcea460e0a6", "230": "5a4d1c1ef8bed9bb", "231": "b1d204e97a3c45dc", "232": "255a8a95e2a3df67", "233": "e195f425def606d0", "234": "19ac29575c50f599", "235": "a0fdc688ac30f227", "236": "bcf417101439fd9e", "237": "47e08912fd6cd296", "238": "3528c4c8a0e2db61", "239": "3a8a257d1f54b2ae", "240": "e24cf60bcf607797", "241": "8bd25b17ffb7ab6b", "242": "ecfb692b6f7a1014", "243": "038915bd030e573c", "244": "e66a941c60456b44", "245": "a7cf02106e992a23", "246": "88604333ff6aa860", "247": "8365b02889fa6cfc", "248": "6e7b82d0387bf16d", "249": "2eef246ebb269184", "250": "f5edd0761d024ff0", "251": "1e833ee596b5ca23", "252": "9fd8a4abf0eb00a3", "253": "e9728eefddbaed5b", "254": "fe8ad8aaa5b6f652", "255": "be78134816511eaf", "256": "4737624cd139d117", "257": "5fcab665dcd75a7d", "258": "33b1870821fb012a", "259": "10992f7331cbdeba", "260": "cef806733796b489", "261": "76578e90353475ed", "262": "04d938f720c1db19", "263": "57931ddf408ceeeb", "264": "b4fbbd4b7a13369e", "265": "d64c6d160a7faed4", "266": "2d1c86501cdb42dd", "267": "e6273a4f9b65952b", "268": "38a03e32ab28113e", "269": "400d2883ce278be7", "270": "a13f9628796dc16a", "271": "6e3ce4714f76f2f9", "272": "de2233c73c628824", "273": "a144dcdc61af17a5", "274": "672ba0ee4d6993c2", "275": "daf108b14eb1d2d5", "276": "a618b7b467aa2c0c", "277": "60a2d42e0373376c", "278": "934bee98555c5f5b", "279": "3a30dd7bf2ececaa", "280": "23c1a365d72c9b86", "281": "3323cd7407922799", "282": "9050a3ebe80326e5", "283": "10d7c8f3898b68e5", "284": "2ce5bbc30db985b5", "285": "2a963843e9a8e153", "286": "28537a0c0fbd566f", "287": "3659ed0b62c213c5", "288": "912cf03978233ef7", "289": "df4cc8f2a19b98fa", "290": "65d822bbba496dee", "291": "6cc089e9f052ba3f", "292": "f6ddba6f531d6b96", "293": "b0b81cfb9e11502e", "294": "c7de3fe21e2e53b4", "295": "b796283dc9729998", "296": "9a7b4968676954d7", "297": "4865e180c0694458", "298": "c24925d361d1eb6f", "299": "fd158611e3227271", "300": "131bf974d820052c", "301": "6c1a09679076ea89", "302": "0bd7ed52b69464bf", "303": "768db8a3a299f590", "304": "321732baccae846b", "312": "7a7f04630a11cc2b"} \ No newline at end of file +{"0": "1a2462afa4e1b77c", "1": "ad98932dbc749660", "2": "f34c872571e8a774", "3": "1ab4cb9e74792926", "4": "e276e5845f115c99", "5": "2240106a1c3e59b2", "6": "691b713e90832ddd", "7": "400f419f33d83fe5", "8": "d2468a620e0e2886", "9": "62311a1aab87ffa2", "10": "60d3462be74f605c", "11": "fea0e1f745e9a689", "12": "8e6bd8eb027ea7d2", "13": "e7876a4b058cc195", "14": "36ce34eb1840b3b7", "15": "8fb0bfac013b3325", "16": "000fc1a788f508c6", "17": "a30bfe3dddce4f48", "18": "335f8410c056c043", "19": "a436fd2990f8250f", "20": "4eda46a5b0695ef6", "21": "82fe24b1bd130db9", "22": "90b79d6027d60d30", "23": "6bd6f2633370820c", "24": "7664e56213a29331", "25": "942c4f9928c60a45", "26": "0614b98d9013b5f5", "27": "53ff49b3d54f0fba", "28": "2153ddcd7477dfb7", "29": "5499104e9ca4fdad", "30": "c412e63adcbfa299", "31": "d1b2113d84de3c49", "32": "32117d32aa2801ee", "33": "1c9a1f4c72613346", "34": "c387d7ef8479ef21", "35": "9b13da82475fc3c8", "36": "7abb5bc6a0e4f65f", "37": "a1c128c95e3842dc", "38": "be3689094661c515", "39": "7dd5c61562c827a8", "40": "cbaa20536db72d3e", "41": "f74d29bd4f6b6043", "42": "418bd497cbc98ef7", "43": "069a70d171440fbf", "44": "2078e6143c52e5cc", "45": "4a1bb81756ca0e46", "46": "b74f3cd39c1fc37d", "47": "f675db38dc787e17", "48": "cbd16be3d8438cc9", "49": "ab44daeb527b6e64", "50": "5a6d4157fb91d937", "51": "0f62727f3b4907c0", "52": "93d54dd865cba4db", "53": "b37052439b21abe1", "54": "e802e72646a2bc8a", "55": "a58a434433339b35", "56": "01d4f9d6d9f3b08a", "57": "e2bda4d8806cbe01", "58": "d308b8d47bb1d1ef", "59": "b2d94d194b80fb5a", "60": "3b9521f7d7986eaa", "61": "43d5d1b48c838a16", "62": "3b1909d07e8fb962", "63": "3f0509cb68ac320e", "64": "97f26c6b5405e0d6", "65": "31a5a53f1fe77e46", "66": "0f977a15216aa1e4", "67": "69d0f8b228227690", "68": "22456307ff273d80", "69": "d9e74b032c5b8440", "70": "fea7287db26db511", "71": "cc796e91a35fd3a4", "72": "62430df45afa65b5", "73": "6eb68cff119f027e", "74": "ba7bc17581366c9a", "75": "0727bb53199085fc", "76": "91393683c97d1773", "77": "b1fb8b1d0bcaa7fd", "78": "70497658d0e0cea6", "79": "4ece6985263357c4", "80": "e3d13e2060945d3f", "81": "6e280669736f661b", "82": "ba05391b6a392a4a", "83": "8c4c02353e3f3b15", "84": "841013681f4e6e8c", "85": "656f816eb51f2ab1", "86": "25a6695f5783d2be", "87": "bf5a253cc5340107", "88": "f7a706f5fcb260c3", "89": "71d2ce6fb684bc0e", "90": "44ba71147b823d4b", "91": "46e9411f2b2e725a", "92": "c2ee2f9838df873c", "93": "3c1d9844d072bd2a", "94": "f0f56796aaebb4f5", "95": "b3c5433df880f335", "96": "3077e46a7508b30b", "97": "e036dbd1de0f8b38", "98": "172e50405c1de3e9", "99": "ac7cb5ec7d5c0802", "100": "622f83f2eb300a25", "101": "c0c352b261b49d91", "102": "94bf724f55aba57a", "103": "610fb4de52790b25", "104": "5b058911f6e8588b", "105": "6d16ccde1291c9d4", "106": "697e3dad395551f2", "107": "d228746e85ead3af", "108": "b55ba9125ffb5729", "109": "5f50a360f18a880b", "110": "c6b57d78299a27b3", "111": "8ffb30447853a689", "112": "69c8cbfb6992b123", "113": "db70db08c00162df", "114": "9a1080686fc7c39b", "115": "77fd76193df9f573", "116": "28355f848c862b6e", "117": "25f77f5455bdc96a", "118": "9141a0ede9461fd5", "119": "70e62553403661a3", "120": "3ceda88239910d9a", "121": "9409b3b8a334f51d", "122": "ac95a9f152e3d1c4", "123": "a7299f20633c0236", "124": "989c014f76b74793", "125": "7f405315686459b9", "126": "44c7924c829cc215", "127": "17ecb7325285cf7a", "128": "4487fd85ddc13c93", "129": "bddcc43a56a2787b", "130": "c4abf0eb38ef740d", "131": "07d37aeefbe50e21", "132": "70b58e32c2890fdd", "133": "f2c7afb0c277c4b7", "134": "167643bcbbc26244", "135": "dcffd9ad7a1f7df6", "136": "1b0ef1cf87b53de3", "137": "cd0a24421495923f", "138": "34581929891cefb2", "139": "c7ddffce8605b65b", "140": "5910eeefe2f97a20", "141": "52dc2ae7b1a3c1eb", "142": "c556ac339be4aba5", "143": "d7cad630fb1d1414", "144": "66efafa1e86d8081", "145": "763842f965ae3d9d", "146": "48f898ce95c8e90c", "147": "a2fe690317aef2ee", "148": "e30004421d79ffeb", "149": "cd66a5f43cd3407d", "150": "fa2d7dcf52348095", "151": "78aa95566e86b57f", "152": "75efc6457f7fce22", "153": "8375a4fbf0573a52", "154": "edb079558c6f3d59", "155": "fc778d7a22e550eb", "156": "1d80b74f885d6716", "157": "f4d1e3ec22fbfe3d", "158": "3cd15de82f23093a", "159": "7a77349497fcdf37", "160": "85cd9ca1246dc437", "161": "3e93071fc4a80e95", "162": "6114ccb7b9036e33", "163": "f3d92800d756dd79", "164": "2aa85a497fd142d7", "165": "35d3a2679371e9a4", "166": "b8f35a499b36a57a", "167": "8d1aad761b4c839d", "168": "00d9ddfeee7b4c47", "169": "4ac5f9965007617d", "170": "cff999497d56b512", "171": "06b38ffa6f58195d", "172": "ee705c178d6958bb", "173": "6ddbf62ac93920e1", "174": "34aa7801077814c8", "175": "867babdd40f0c3fc", "176": "298144d1548a7dee", "177": "00d275127a7e435e", "178": "2942a9d30dae4a29", "179": "3e21e2fb50e12670", "180": "be62daa7d5bc336a", "181": "47c3e1a9d4bb7e67", "182": "82ff39c105ae3090", "183": "6747ecf936cb0400", "184": "ebc0087e3400009c", "185": "51d4e15c7e10decf", "186": "17ca8d640a75a60d", "187": "bbcea5ec9d046ac0", "188": "162b36508e5879f3", "189": "5eb83040a203bd16", "190": "6256958a9b817133", "191": "ab06e01c9caa9f90", "192": "204b3a83ef62f360", "193": "20a2080eac259e2b", "194": "1c69dcee9405ce47", "195": "7c65a1f3c4f1b858", "196": "67b5cef27d55952d", "197": "10b2996179aaaf2e", "198": "39031f751fb2d42f", "199": "d2a7888a77082d4c", "200": "54f53e5e0cc8c385", "201": "821696b1ff49347b", "202": "00739b5480732bdc", "203": "2434b1a28b16557f", "204": "cb3fe87c920b0cb3", "205": "ddb9c95db6575999", "206": "e2250667e3a77089", "207": "9069d5dda9013eee", "208": "0077975cffee54dc", "209": "e6fcd0aec85fac92", "210": "9590124db1601a96", "211": "0598c15fa2a12fad", "212": "1d230c8fb897098f", "213": "0650b6a561436852", "214": "3a6753a80123a0f4", "215": "ca950b47c628b81a", "216": "e077f384ad6b18ad", "217": "dd8d62f9fb517bb5", "218": "6d0322fa3d03fa10", "219": "3be2a9ccdc6668cc", "220": "3fb0bef25bab507e", "221": "bd3010d97e467f52", "222": "703a4a9860d7ed16", "223": "85fd4a84b5393d0e", "224": "97ec841e4f367258", "225": "4654167fd211d027", "226": "8176a164778526f9", "227": "a74925b45b279d6f", "228": "88e82bb9fffbe642", "229": "60ce4fcea460e0a6", "230": "5a4d1c1ef8bed9bb", "231": "b1d204e97a3c45dc", "232": "acfe5a84eaab81d7", "233": "e195f425def606d0", "234": "19ac29575c50f599", "235": "a0fdc688ac30f227", "236": "bcf417101439fd9e", "237": "47e08912fd6cd296", "238": "3528c4c8a0e2db61", "239": "3a8a257d1f54b2ae", "240": "e24cf60bcf607797", "241": "8bd25b17ffb7ab6b", "242": "ecfb692b6f7a1014", "243": "dd1978ec44188ccc", "244": "e66a941c60456b44", "245": "a7cf02106e992a23", "246": "88604333ff6aa860", "247": "8365b02889fa6cfc", "248": "6e7b82d0387bf16d", "249": "2eef246ebb269184", "250": "f5edd0761d024ff0", "251": "1e833ee596b5ca23", "252": "9fd8a4abf0eb00a3", "253": "e9728eefddbaed5b", "254": "fe8ad8aaa5b6f652", "255": "be78134816511eaf", "256": "4737624cd139d117", "257": "5fcab665dcd75a7d", "258": "33b1870821fb012a", "259": "10992f7331cbdeba", "260": "cef806733796b489", "261": "76578e90353475ed", "262": "04d938f720c1db19", "263": "57931ddf408ceeeb", "264": "b4fbbd4b7a13369e", "265": "d64c6d160a7faed4", "266": "2d1c86501cdb42dd", "267": "e6273a4f9b65952b", "268": "38a03e32ab28113e", "269": "400d2883ce278be7", "270": "a13f9628796dc16a", "271": "6e3ce4714f76f2f9", "272": "de2233c73c628824", "273": "a144dcdc61af17a5", "274": "672ba0ee4d6993c2", "275": "daf108b14eb1d2d5", "276": "a618b7b467aa2c0c", "277": "60a2d42e0373376c", "278": "934bee98555c5f5b", "279": "3a30dd7bf2ececaa", "280": "23c1a365d72c9b86", "281": "3323cd7407922799", "282": "9050a3ebe80326e5", "283": "10d7c8f3898b68e5", "284": "2ce5bbc30db985b5", "285": "2a963843e9a8e153", "286": "28537a0c0fbd566f", "287": "3659ed0b62c213c5", "288": "912cf03978233ef7", "289": "df4cc8f2a19b98fa", "290": "65d822bbba496dee", "291": "6cc089e9f052ba3f", "292": "f6ddba6f531d6b96", "293": "b0b81cfb9e11502e", "294": "c7de3fe21e2e53b4", "295": "b796283dc9729998", "296": "9a7b4968676954d7", "297": "4865e180c0694458", "298": "c24925d361d1eb6f", "299": "fd158611e3227271", "300": "131bf974d820052c", "301": "6c1a09679076ea89", "302": "0bd7ed52b69464bf", "303": "768db8a3a299f590", "304": "321732baccae846b", "305": "ed938bf48ae6ca6c", "306": "96d87080e1586a3d", "307": "2c92e71020d644f3", "308": "e68f71b9984258d3", "309": "6d6550ccb45a40f3", "310": "563a6b87b4431efa", "311": "4436fcb587702ee9", "312": "7a7f04630a11cc2b", "313": "4a0ee509eb81db2e", "314": "7fde599bf90ee0bf"} \ No newline at end of file diff --git a/graphify-out/2026-08-18/.graphify_labels.json b/graphify-out/2026-08-18/.graphify_labels.json index a900837..ecb723d 100644 --- a/graphify-out/2026-08-18/.graphify_labels.json +++ b/graphify-out/2026-08-18/.graphify_labels.json @@ -1,9 +1,9 @@ { - "0": "AdminService", + "0": "ApiOperation", "1": "productService.ts", "2": "CmsController", "3": "app.module.ts", - "4": "CreateReviewDto", + "4": "reviews.controller.ts", "5": "tickets.controller.ts", "6": "UserDashboard.tsx", "7": "MediaSelector.tsx", @@ -18,7 +18,7 @@ "16": "lib/services/api.ts", "17": "CreateVideoDto", "18": "src/services/api.ts", - "19": "B2BService", + "19": "pets/pets.controller.ts", "20": "BE-001", "21": "Roles", "22": "FE-001", @@ -28,13 +28,13 @@ "26": "TEST-001", "27": "DEVOPS-001", "28": "DOC-001", - "29": "WholesaleApplyDto", + "29": "WholesaleService", "30": "main.ts", "31": "JwtAuthGuard", "32": "ZibalService", "33": "راهنمای تست سیستم (Software Testing)", "34": "CategoriesController", - "35": "B2BController", + "35": "B2BService", "36": "What You Must Do When Invoked", "37": "userStore.ts", "38": "UsersService", @@ -46,9 +46,9 @@ "44": "MediaController", "45": "Pagination.tsx", "46": "SmsService", - "47": "OrdersController", - "48": "PrescriptionsController", - "49": "SmartAdvisorController", + "47": "OrdersService", + "48": "PrescriptionsService", + "49": "SmartAdvisorService", "50": "TestimonialsService", "51": "Role & Core Objective", "52": "ContactService", @@ -62,8 +62,8 @@ "60": "compilerOptions", "61": "HomeClient.tsx", "62": "BlogsController", - "63": "AuthController", - "64": "prescriptions.controller.ts", + "63": "SettingsService", + "64": "BannersService", "65": "Required Review Group Closures", "66": "Coupons.tsx", "67": "Operational Rules & Boundaries", @@ -97,27 +97,28 @@ "95": "Operational Rules & Boundaries", "96": "exclude", "97": "jest", - "98": "OrdersService", + "98": "AdminController", "99": "Comprehensive Change Log", "100": "Operational Rules & Boundaries", - "101": "CreateOrderDto", - "102": "@types/passport-jwt", - "103": "@types/supertest", - "104": "auth.service.ts", + "101": "AdminService", + "102": "devDependencies", + "103": "ProductDto", + "104": "auth.controller.ts", "105": "1. Summary of Integrity Repairs Performed", - "106": "typescript", + "106": "BlogsService", "107": "Operational Rules & Boundaries", "108": "Operational Rules & Boundaries", "109": "Operational Rules & Boundaries", "110": "AppService", - "112": "eslint-plugin-prettier", + "111": "SmsLogQueryDto", + "112": "WholesaleApplyDto", "113": "Vazirmatn Changelog", "114": "Vazirmatn Font فونت وزیرمتن", "115": "Operational Rules & Boundaries", "116": "compilerOptions", "117": "compilerOptions", "118": "backend/README.md", - "119": "devDependencies", + "119": "eslint", "120": "Repository Map", "121": "validate_integrity.js", "122": "admin-panel/package.json", @@ -135,8 +136,8 @@ "134": "ErrorBoundary", "135": "application/package.json", "136": "generate-openapi.js", - "137": "payment.module.ts", - "138": "payment.controller.ts", + "137": "AdminTransactionFilterDto", + "138": "InitiatePaymentDto", "139": "System Discovery", "140": "Product Requirement Document (PRD)", "141": "WikiController", @@ -172,6 +173,7 @@ "171": "🎨 Frontend & Admin Panel Technical Review (06_dev_frontend)", "172": "🚀 SEO & Content Strategy Review (12_seo_content)", "173": "@types/node", + "174": "ZibalCallbackQueryDto", "175": "seed-ui-texts.ts", "176": "seed-wiki.ts", "177": "update-blog.dto.ts", @@ -209,7 +211,10 @@ "209": "sync_honest_manifest.js", "210": "sync_manifest.js", "211": "@types/multer", + "212": "bcryptjs", "213": "@testing-library/jest-dom", + "214": "helmet", + "215": "js-yaml", "216": "FormField.tsx", "217": "Input.tsx", "218": "Textarea.tsx", @@ -226,11 +231,16 @@ "229": "eslint-plugin-react-refresh", "230": "@tailwindcss/postcss", "231": "typescript", + "232": "@nestjs/core", "233": "@testing-library/react", "234": "@types/react", "235": "typescript", "236": "vitest", + "237": "@nestjs/jwt", + "238": "@nestjs/swagger", + "239": "@nestjs/throttler", "240": "ts-loader", + "241": "passport-jwt", "242": "@types/bcrypt", "243": "MetricsController", "244": "blog.entity.ts", @@ -278,7 +288,21 @@ "286": "Shabnam Font Sample", "287": "Production Docker Compose", "288": "Staging Docker Compose", + "289": "@prisma/client", + "290": "swagger-ui-express", "291": "NetworkBanner.tsx", + "292": "eslint-config-prettier", + "293": "@eslint/js", + "294": "jest", + "295": "@nestjs/schematics", + "296": "@nestjs/testing", + "297": "source-map-support", + "298": "ts-jest", + "299": "tsconfig-paths", + "300": "@types/bcryptjs", + "301": "typescript-eslint", "302": "@eslint/eslintrc", + "303": "axios", + "304": "tailwindcss", "312": "tailwindcss" } diff --git a/graphify-out/2026-08-18/GRAPH_REPORT.md b/graphify-out/2026-08-18/GRAPH_REPORT.md index 9c895f9..e6091a2 100644 --- a/graphify-out/2026-08-18/GRAPH_REPORT.md +++ b/graphify-out/2026-08-18/GRAPH_REPORT.md @@ -1,12 +1,12 @@ # Graph Report - canina (2026-08-18) ## Corpus Check -- 511 files · ~734,460 words +- 511 files · ~734,987 words - Verdict: corpus is large enough that graph structure adds value. ## Summary -- 3633 nodes · 6163 edges · 282 communities (184 shown, 98 thin omitted) -- Extraction: 96% EXTRACTED · 4% INFERRED · 0% AMBIGUOUS · INFERRED: 228 edges (avg confidence: 0.79) +- 3638 nodes · 6178 edges · 306 communities (192 shown, 114 thin omitted) +- Extraction: 96% EXTRACTED · 4% INFERRED · 0% AMBIGUOUS · INFERRED: 230 edges (avg confidence: 0.79) - Token cost: 0 input · 0 output ## Graph Freshness @@ -15,11 +15,11 @@ - Run `graphify update .` after code changes (no API cost). ## Community Hubs (Navigation) -- AdminService +- ApiOperation - productService.ts - CmsController - app.module.ts -- CreateReviewDto +- reviews.controller.ts - tickets.controller.ts - UserDashboard.tsx - MediaSelector.tsx @@ -34,7 +34,7 @@ - lib/services/api.ts - CreateVideoDto - src/services/api.ts -- B2BService +- pets/pets.controller.ts - BE-001 - Roles - FE-001 @@ -44,13 +44,13 @@ - TEST-001 - DEVOPS-001 - DOC-001 -- WholesaleApplyDto +- WholesaleService - main.ts - JwtAuthGuard - ZibalService - راهنمای تست سیستم (Software Testing) - CategoriesController -- B2BController +- B2BService - What You Must Do When Invoked - userStore.ts - UsersService @@ -62,9 +62,9 @@ - MediaController - Pagination.tsx - SmsService -- OrdersController -- PrescriptionsController -- SmartAdvisorController +- OrdersService +- PrescriptionsService +- SmartAdvisorService - TestimonialsService - Role & Core Objective - ContactService @@ -78,8 +78,8 @@ - compilerOptions - HomeClient.tsx - BlogsController -- AuthController -- prescriptions.controller.ts +- SettingsService +- BannersService - Required Review Group Closures - Coupons.tsx - Operational Rules & Boundaries @@ -113,27 +113,28 @@ - Operational Rules & Boundaries - exclude - jest -- OrdersService +- AdminController - Comprehensive Change Log - Operational Rules & Boundaries -- CreateOrderDto -- @types/passport-jwt -- @types/supertest -- auth.service.ts +- AdminService +- devDependencies +- ProductDto +- auth.controller.ts - 1. Summary of Integrity Repairs Performed -- typescript +- BlogsService - Operational Rules & Boundaries - Operational Rules & Boundaries - Operational Rules & Boundaries - AppService -- eslint-plugin-prettier +- SmsLogQueryDto +- WholesaleApplyDto - Vazirmatn Changelog - Vazirmatn Font فونت وزیرمتن - Operational Rules & Boundaries - compilerOptions - compilerOptions - backend/README.md -- devDependencies +- eslint - Repository Map - validate_integrity.js - admin-panel/package.json @@ -151,8 +152,8 @@ - ErrorBoundary - application/package.json - generate-openapi.js -- payment.module.ts -- payment.controller.ts +- AdminTransactionFilterDto +- InitiatePaymentDto - System Discovery - Product Requirement Document (PRD) - WikiController @@ -188,6 +189,7 @@ - 🎨 Frontend & Admin Panel Technical Review (06_dev_frontend) - 🚀 SEO & Content Strategy Review (12_seo_content) - @types/node +- ZibalCallbackQueryDto - seed-ui-texts.ts - seed-wiki.ts - update-blog.dto.ts @@ -225,7 +227,10 @@ - sync_honest_manifest.js - sync_manifest.js - @types/multer +- bcryptjs - @testing-library/jest-dom +- helmet +- js-yaml - FormField.tsx - Input.tsx - Textarea.tsx @@ -242,11 +247,16 @@ - eslint-plugin-react-refresh - @tailwindcss/postcss - typescript +- @nestjs/core - @testing-library/react - @types/react - typescript - vitest +- @nestjs/jwt +- @nestjs/swagger +- @nestjs/throttler - ts-loader +- passport-jwt - @types/bcrypt - MetricsController - blog.entity.ts @@ -281,17 +291,29 @@ - Shabnam Font Sample - Production Docker Compose - Staging Docker Compose +- @prisma/client +- swagger-ui-express - NetworkBanner.tsx +- eslint-config-prettier +- @eslint/js +- jest +- @nestjs/schematics +- @nestjs/testing +- source-map-support +- ts-jest +- tsconfig-paths +- @types/bcryptjs +- typescript-eslint - @eslint/eslintrc - tailwindcss ## God Nodes (most connected - your core abstractions) 1. `PrismaService` - 81 edges -2. `Roles()` - 74 edges +2. `Roles()` - 75 edges 3. `useSettingsStore` - 47 edges -4. `SmsService` - 41 edges +4. `SmsService` - 42 edges 5. `PaginationDto` - 39 edges -6. `api` - 37 edges +6. `api` - 38 edges 7. `AdminService` - 34 edges 8. `AdminController` - 33 edges 9. `JwtAuthGuard` - 32 edges @@ -300,14 +322,14 @@ ## Surprising Connections (you probably didn't know these) - `User Profile Photo` --conceptually_related_to--> `User Roles and Capabilities` [INFERRED] backend/uploads/1781288429353-508765350.jpg → docs/02-user-guide.md -- `WikiController` --references--> `ApiResponse` [EXTRACTED] - backend/src/wiki/wiki.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 - `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 ## 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` @@ -318,11 +340,11 @@ - **Rastikerdar Font Ecosystem** — frontend_application_public_fonts_shabnam_font_v5_0_1_readme, frontend_application_public_fonts_vazirmatn_v33_003_readme, vazir_font [EXTRACTED 0.95] - **Canina Deployment Stack** — scripts_compose_prod, scripts_compose_stage [EXTRACTED 1.00] -## Communities (282 total, 98 thin omitted) +## Communities (306 total, 114 thin omitted) -### Community 0 - "AdminService" -Cohesion: 0.09 -Nodes (14): AdminController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Param (+6 more) +### Community 0 - "ApiOperation" +Cohesion: 0.16 +Nodes (3): ApiOperation, Body, Put ### Community 1 - "productService.ts" Cohesion: 0.06 @@ -334,15 +356,15 @@ Nodes (24): CmsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controlle ### Community 3 - "app.module.ts" Cohesion: 0.08 -Nodes (29): BannersModule, Module, CmsModule, Module, SmsModule, Global, Module, ContactModule (+21 more) +Nodes (32): B2BModule, Module, BannersModule, Module, CmsModule, Module, SmsModule, Global (+24 more) -### Community 4 - "CreateReviewDto" +### Community 4 - "reviews.controller.ts" Cohesion: 0.07 -Nodes (29): CreateReviewDto, ApiProperty, IsInt, IsNotEmpty, IsOptional, IsString, Min, ApiProperty (+21 more) +Nodes (31): CreateReviewDto, ApiProperty, IsInt, IsNotEmpty, IsOptional, IsString, Min, ApiProperty (+23 more) ### Community 5 - "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) ### Community 6 - "UserDashboard.tsx" Cohesion: 0.09 @@ -354,15 +376,15 @@ Nodes (25): ConfirmModal(), ConfirmModalProps, getFileType(), Media, MediaSelect ### Community 8 - "admin.module.ts" Cohesion: 0.06 -Nodes (19): AdminModule, Module, BlogsService, Injectable, ReportsController, ApiBearerAuth, ApiOperation, ApiTags (+11 more) +Nodes (21): AdminModule, Module, PetQuery, PetsService, Injectable, ReportsController, ApiBearerAuth, ApiOperation (+13 more) ### Community 9 - "PetProfile.tsx" Cohesion: 0.14 Nodes (12): FeaturedProducts(), OrderRowSkeleton(), PetProfileSkeleton(), ProductCardSkeleton(), Skeleton(), SkeletonProps, mockProducts, HealthLog (+4 more) ### Community 10 - "DoctorsService" -Cohesion: 0.13 -Nodes (15): DoctorsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+7 more) +Cohesion: 0.12 +Nodes (16): DoctorsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+8 more) ### Community 11 - "useSettingsStore" Cohesion: 0.14 @@ -374,7 +396,7 @@ Nodes (14): App(), ContactInfoItem, ContactSubmission, CategoryDist, DashboardDa ### Community 13 - "PrismaService" Cohesion: 0.08 -Nodes (18): BlogQuery, WikiQuery, BannersService, Injectable, MeliPayamakPattern, MeliPayamakResponse, SendPatternSmsOptions, SmsConfig (+10 more) +Nodes (17): AdminLoginInput, LoginInput, RegisterInput, MeliPayamakPattern, MeliPayamakResponse, SendPatternSmsOptions, SmsConfig, CreateContactSubmissionDto (+9 more) ### Community 14 - "BlogsController" Cohesion: 0.21 @@ -389,24 +411,24 @@ Cohesion: 0.06 Nodes (18): metadata, ContactFormClient(), ContactInfoItem, Testimonial, TestimonialsSection(), api, ApiErrorPayload, BASE_DOMAIN (+10 more) ### Community 17 - "CreateVideoDto" -Cohesion: 0.09 -Nodes (24): CreateVideoDto, ApiProperty, ApiPropertyOptional, IsBoolean, IsNotEmpty, IsOptional, IsString, UpdateVideoDto (+16 more) +Cohesion: 0.07 +Nodes (31): CreateVideoDto, ApiProperty, ApiPropertyOptional, IsBoolean, IsNotEmpty, IsOptional, IsString, UpdateVideoDto (+23 more) ### Community 18 - "src/services/api.ts" Cohesion: 0.10 Nodes (23): ProtectedRoute(), SEARCHABLE_PAGES, Topbar(), TopbarProps, Login(), B2BManager, SmartAdvisorManager, SystemSettingsPage (+15 more) -### Community 19 - "B2BService" -Cohesion: 0.33 -Nodes (5): B2BModule, Module, B2BService, B2BWholesaleOrderItem, Injectable +### Community 19 - "pets/pets.controller.ts" +Cohesion: 0.12 +Nodes (15): CreatePetDto, ApiProperty, ApiPropertyOptional, IsArray, IsNotEmpty, IsNumber, IsOptional, IsString (+7 more) ### Community 20 - "BE-001" Cohesion: 0.06 Nodes (32): Acceptance Criteria, Affected Application, Affected Files, Alternative Direction, BE-001, Category, Completion Statement, Confidence (+24 more) ### Community 21 - "Roles" -Cohesion: 0.05 -Nodes (38): BannersController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+30 more) +Cohesion: 0.21 +Nodes (15): Roles(), SettingsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete (+7 more) ### Community 22 - "FE-001" Cohesion: 0.06 @@ -436,17 +458,17 @@ Nodes (31): Acceptance Criteria, Affected Application, Affected Files, Alternati Cohesion: 0.06 Nodes (31): Acceptance Criteria, Affected Application, Affected Files, Alternative Direction, Category, Completion Statement, Confidence, Dependencies (+23 more) -### Community 29 - "WholesaleApplyDto" -Cohesion: 0.10 -Nodes (20): ApiProperty, ApiPropertyOptional, IsNotEmpty, IsOptional, IsString, WholesaleApplyDto, ApiBearerAuth, ApiOperation (+12 more) +### Community 29 - "WholesaleService" +Cohesion: 0.14 +Nodes (14): ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Get, Param, Post (+6 more) ### Community 30 - "main.ts" -Cohesion: 0.11 -Nodes (11): AppModule, Module, CustomHttpExceptionFilter, Catch, PrismaExceptionFilter, Catch, DecimalInterceptor, Injectable (+3 more) +Cohesion: 0.14 +Nodes (9): CustomHttpExceptionFilter, Catch, PrismaExceptionFilter, Catch, DecimalInterceptor, Injectable, ApiErrorResponse, ErrorDetailField (+1 more) ### Community 31 - "JwtAuthGuard" -Cohesion: 0.19 -Nodes (6): JwtAuthGuard, Injectable, ROLES_KEY, RequestWithUser, RolesGuard, Injectable +Cohesion: 0.20 +Nodes (7): JwtAuthGuard, Injectable, ROLES_KEY, RequestWithUser, RolesGuard, Injectable, UserReqPayload ### Community 32 - "ZibalService" Cohesion: 0.14 @@ -460,9 +482,9 @@ Nodes (25): اجرای بک‌اند, اجرای فرانت‌اند, اجرای Cohesion: 0.09 Nodes (17): CategoriesController, ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Body, Controller, Delete (+9 more) -### Community 35 - "B2BController" -Cohesion: 0.14 -Nodes (12): B2BController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Get, Param (+4 more) +### Community 35 - "B2BService" +Cohesion: 0.13 +Nodes (15): B2BController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Get, Param (+7 more) ### Community 36 - "What You Must Do When Invoked" Cohesion: 0.07 @@ -474,7 +496,7 @@ Nodes (32): ClientLayout(), ArchiveProductCard(), AuthModal(), AuthModalProps, e ### Community 38 - "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 39 - "What You Must Do When Invoked" Cohesion: 0.07 @@ -493,8 +515,8 @@ Cohesion: 0.13 Nodes (14): IngredientsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+6 more) ### Community 43 - "RedisService" -Cohesion: 0.10 -Nodes (5): AuthService, Injectable, normalizeMobile(), RedisService, Injectable +Cohesion: 0.09 +Nodes (7): AppModule, Module, AuthService, Injectable, normalizeMobile(), RedisService, Injectable ### Community 44 - "MediaController" Cohesion: 0.11 @@ -504,17 +526,17 @@ Nodes (16): MediaController, ApiBearerAuth, ApiOperation, ApiTags, Body, Control Cohesion: 0.13 Nodes (11): Pagination(), PaginationProps, Pet, GatewayHealth, Stats, Transaction, ProductItem, WikiTerm (+3 more) -### Community 47 - "OrdersController" -Cohesion: 0.13 -Nodes (16): OrdersController, ApiBadRequestResponse, ApiBearerAuth, ApiCreatedResponse, ApiNotFoundResponse, ApiOkResponse, ApiOperation, ApiTags (+8 more) +### Community 47 - "OrdersService" +Cohesion: 0.07 +Nodes (29): CreateOrderDto, OrderItemDto, ApiProperty, ApiPropertyOptional, IsArray, IsNotEmpty, IsNumber, IsOptional (+21 more) -### Community 48 - "PrescriptionsController" -Cohesion: 0.15 -Nodes (12): PrescriptionsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Get, Param (+4 more) - -### Community 49 - "SmartAdvisorController" +### Community 48 - "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) + +### Community 49 - "SmartAdvisorService" +Cohesion: 0.13 +Nodes (14): SmartAdvisorController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+6 more) ### Community 50 - "TestimonialsService" Cohesion: 0.13 @@ -545,16 +567,16 @@ Cohesion: 0.08 Nodes (23): compilerOptions, allowImportingTsExtensions, erasableSyntaxOnly, jsx, lib, module, moduleDetection, moduleResolution (+15 more) ### Community 57 - "PetsController" -Cohesion: 0.10 -Nodes (14): PetsController, ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Controller, Delete, Get (+6 more) +Cohesion: 0.15 +Nodes (11): PetsController, ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Controller, Delete, Get (+3 more) ### Community 58 - "PaginationDto" -Cohesion: 0.07 -Nodes (24): BlogsModule, Module, BlogsService, Injectable, PaginationDto, SortOrder, ApiPropertyOptional, IsEnum (+16 more) +Cohesion: 0.08 +Nodes (19): BlogsModule, Module, BlogsService, Injectable, PaginationDto, SortOrder, ApiPropertyOptional, IsEnum (+11 more) ### Community 59 - "dependencies" -Cohesion: 0.05 -Nodes (41): dependencies, bcrypt, bcryptjs, class-transformer, class-validator, helmet, ioredis, js-yaml (+33 more) +Cohesion: 0.10 +Nodes (21): dependencies, bcrypt, class-transformer, class-validator, ioredis, @nestjs/common, @nestjs/passport, @nestjs/platform-express (+13 more) ### Community 60 - "compilerOptions" Cohesion: 0.10 @@ -568,13 +590,13 @@ Nodes (20): HomeClient(), HomeClientProps, getHomeData(), Home(), metadata, meta Cohesion: 0.13 Nodes (15): BlogsController, ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Body, Controller, Delete (+7 more) -### Community 63 - "AuthController" -Cohesion: 0.27 -Nodes (12): AuthController, ApiBadRequestResponse, ApiBearerAuth, ApiOkResponse, ApiOperation, ApiTags, Body, Controller (+4 more) +### Community 63 - "SettingsService" +Cohesion: 0.09 +Nodes (4): SmsLogQuery, ApiOkResponse, SettingsService, Injectable -### Community 64 - "prescriptions.controller.ts" -Cohesion: 0.31 -Nodes (5): UserReqPayload, PrescriptionsModule, Module, PrescriptionsService, Injectable +### Community 64 - "BannersService" +Cohesion: 0.13 +Nodes (15): BannersController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+7 more) ### Community 65 - "Required Review Group Closures" Cohesion: 0.10 @@ -597,20 +619,20 @@ Cohesion: 0.13 Nodes (14): ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Body, Controller, Delete, Get (+6 more) ### Community 70 - "AdminQueryDto" -Cohesion: 0.18 +Cohesion: 0.16 Nodes (7): ApiQuery, Get, Query, AdminQueryDto, ApiPropertyOptional, IsOptional, IsString ### Community 71 - "PetsController" -Cohesion: 0.05 -Nodes (47): CreateHealthLogDto, ApiProperty, ApiPropertyOptional, IsNotEmpty, IsOptional, IsString, CreatePetDto, ApiProperty (+39 more) +Cohesion: 0.08 +Nodes (32): CreateHealthLogDto, ApiProperty, ApiPropertyOptional, IsNotEmpty, IsOptional, IsString, CreateReminderDto, ApiProperty (+24 more) ### Community 72 - "seo.module.ts" Cohesion: 0.16 Nodes (10): SeoController, ApiOperation, ApiTags, Controller, Get, Param, SeoModule, Module (+2 more) ### Community 73 - "admin.service.ts" -Cohesion: 0.13 -Nodes (20): CouponTargetInput, PaginationQuery, ProductDto, ApiPropertyOptional, IsArray, IsBoolean, IsNumber, IsOptional (+12 more) +Cohesion: 0.20 +Nodes (13): CouponInput, CouponTargetInput, PaginationQuery, CreateUserDto, ApiProperty, ApiPropertyOptional, IsEmail, IsNotEmpty (+5 more) ### Community 74 - "🏢 AI Software Agency — Master Orchestration Protocol v3" Cohesion: 0.11 @@ -649,7 +671,7 @@ Cohesion: 0.29 Nodes (6): Layout(), MenuGroup, Sidebar(), SidebarProps, SubMenuItem, api ### Community 83 - "Orders.tsx" -Cohesion: 0.13 +Cohesion: 0.14 Nodes (13): Skeleton(), getPaymentMethodLabel(), Order, ORDER_STATUS_MAP, OrderItem, Orders(), PaymentTx, toPersianDigits() (+5 more) ### Community 84 - "devDependencies" @@ -708,6 +730,10 @@ Nodes (8): exclude, extends, dist, node_modules, prisma, **/*spec.ts, test, ./ts Cohesion: 0.15 Nodes (13): jest, collectCoverageFrom, coverageDirectory, moduleFileExtensions, rootDir, testEnvironment, testRegex, transform (+5 more) +### Community 98 - "AdminController" +Cohesion: 0.17 +Nodes (7): AdminController, ApiBearerAuth, ApiTags, Controller, Delete, Param, UseGuards + ### Community 99 - "Comprehensive Change Log" 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) @@ -716,18 +742,30 @@ Nodes (12): 10. `TASK-VERIFY-001`, 1. `TASK-SEC-001`, 2. `TASK-SEC-002`, 3. `TAS 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 101 - "CreateOrderDto" +### Community 101 - "AdminService" Cohesion: 0.22 -Nodes (11): CreateOrderDto, OrderItemDto, ApiProperty, ApiPropertyOptional, IsArray, IsNotEmpty, IsNumber, IsOptional (+3 more) +Nodes (3): Post, AdminService, Injectable -### Community 104 - "auth.service.ts" +### Community 102 - "devDependencies" +Cohesion: 0.22 +Nodes (9): devDependencies, eslint-plugin-prettier, @types/passport-jwt, @types/supertest, typescript, typescript, eslint-plugin-prettier, @types/passport-jwt (+1 more) + +### Community 103 - "ProductDto" +Cohesion: 0.22 +Nodes (7): ProductDto, ApiPropertyOptional, IsArray, IsBoolean, IsNumber, IsOptional, IsString + +### Community 104 - "auth.controller.ts" Cohesion: 0.06 -Nodes (33): AdminLoginInput, LoginInput, RegisterInput, AdminLoginDto, ApiProperty, IsEmail, IsNotEmpty, IsString (+25 more) +Nodes (42): AuthController, ApiBadRequestResponse, ApiBearerAuth, ApiOkResponse, ApiOperation, ApiTags, Body, Controller (+34 more) ### Community 105 - "1. Summary of Integrity Repairs Performed" Cohesion: 0.17 Nodes (11): 1.1 Authoritative Source File Inventory Rebuilt, 1.2 Raw Finding Dispositions Reconciled, 1.3 Finding Identifier Normalization, 1.4 Rejected Finding Cleanup, 1. Summary of Integrity Repairs Performed, 2. Final Verified Finding Metrics, 3. Reference and Compiler Integrity Results, 4. Quality Gate Conclusion (+3 more) +### Community 106 - "BlogsService" +Cohesion: 0.22 +Nodes (3): BlogQuery, BlogsService, Injectable + ### Community 107 - "Operational Rules & Boundaries" Cohesion: 0.18 Nodes (10): 1. Detect Tech Stack First (Universal), 2. Explicit Scoring Methodology (Universal), 3. Code Coverage Ratio Rule, 4. Deep Directory Scanning, 5. Forbidden Actions, Expected JSON Output Schema, Operational Rules & Boundaries, Required Output Artifacts (What files to write/update) (+2 more) @@ -744,6 +782,14 @@ Nodes (10): 1. Pre-Deployment Checklist, 2. Build Verification, 3. Deployment St Cohesion: 0.29 Nodes (5): AppController, Controller, Get, AppService, Injectable +### Community 111 - "SmsLogQueryDto" +Cohesion: 0.25 +Nodes (7): SmsLogQueryDto, ApiPropertyOptional, IsIn, IsNumber, IsOptional, IsString, Type + +### Community 112 - "WholesaleApplyDto" +Cohesion: 0.29 +Nodes (6): ApiProperty, ApiPropertyOptional, IsNotEmpty, IsOptional, IsString, WholesaleApplyDto + ### Community 113 - "Vazirmatn Changelog" Cohesion: 0.18 Nodes (10): 32.0.0, 32.1, 32.101, 32.102, 33.000, 33.001, 33.002, 33.003 (+2 more) @@ -768,10 +814,6 @@ 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) -### Community 119 - "devDependencies" -Cohesion: 0.09 -Nodes (23): devDependencies, eslint, eslint-config-prettier, @eslint/js, jest, @nestjs/schematics, @nestjs/testing, source-map-support (+15 more) - ### Community 120 - "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) @@ -836,13 +878,13 @@ Nodes (8): name, private, scripts, build, dev, lint, start, version Cohesion: 0.25 Nodes (6): app_module_1, core_1, fs, path, swagger_1, yaml -### Community 137 - "payment.module.ts" -Cohesion: 0.15 -Nodes (10): AdminTransactionFilterDto, ApiPropertyOptional, IsIn, IsNumber, IsOptional, IsString, Type, PaymentModule (+2 more) +### Community 137 - "AdminTransactionFilterDto" +Cohesion: 0.22 +Nodes (7): AdminTransactionFilterDto, ApiPropertyOptional, IsIn, IsNumber, IsOptional, IsString, Type -### Community 138 - "payment.controller.ts" -Cohesion: 0.23 -Nodes (11): InitiatePaymentDto, InitiateWalletTopupDto, ApiProperty, ApiPropertyOptional, IsNotEmpty, IsOptional, IsString, ApiPropertyOptional (+3 more) +### Community 138 - "InitiatePaymentDto" +Cohesion: 0.43 +Nodes (7): InitiatePaymentDto, InitiateWalletTopupDto, ApiProperty, ApiPropertyOptional, IsNotEmpty, IsOptional, IsString ### Community 139 - "System Discovery" Cohesion: 0.25 @@ -956,6 +998,10 @@ 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 174 - "ZibalCallbackQueryDto" +Cohesion: 0.40 +Nodes (4): ApiPropertyOptional, IsOptional, IsString, ZibalCallbackQueryDto + ### Community 180 - "graphify reference: add a URL and watch a folder" Cohesion: 0.50 Nodes (3): For /graphify add, For --watch, graphify reference: add a URL and watch a folder @@ -1005,24 +1051,24 @@ Cohesion: 0.29 Nodes (5): ApiExcludeController, MetricsController, Controller, Get, Res ## Knowledge Gaps -- **1240 isolated node(s):** `OrderItem`, `PaymentTx`, `Order`, `ORDER_STATUS_MAP`, `BlogPost` (+1235 more) +- **1240 isolated node(s):** `$schema`, `collection`, `sourceRoot`, `deleteOutDir`, `name` (+1235 more) These have ≤1 connection - possible missing edges or undocumented components. -- **98 thin communities (<3 nodes) omitted from report** — run `graphify query` to explore isolated nodes. +- **114 thin communities (<3 nodes) omitted from report** — run `graphify query` to explore isolated nodes. ## Suggested Questions _Questions this graph is uniquely positioned to answer:_ -- **Why does `Roles()` connect `Roles` to `prescriptions.controller.ts`, `CmsController`, `B2BController`, `CreateReviewDto`, `tickets.controller.ts`, `SslController`, `IngredientsService`, `payment.controller.ts`, `ProductsService`, `PrescriptionsController`, `SmartAdvisorController`, `TestimonialsService`, `B2BService`, `ContactService`, `PaymentController`, `WholesaleApplyDto`, `JwtAuthGuard`?** - _High betweenness centrality (0.061) - this node is a cross-community bridge._ -- **Why does `ApiResponse` connect `src/services/api.ts` to `UsersService`, `PetsController`, `WikiController`, `BlogsController`, `HomeController`, `OrdersController`, `ProductsService`, `AuthController`?** - _High betweenness centrality (0.055) - this node is a cross-community bridge._ -- **Why does `PrismaService` connect `PrismaService` to `CmsController`, `app.module.ts`, `CreateReviewDto`, `tickets.controller.ts`, `admin.module.ts`, `payment.module.ts`, `DoctorsService`, `WikiController`, `ProductsService`, `CreateVideoDto`, `B2BService`, `Roles`, `WholesaleApplyDto`, `JwtAuthGuard`, `ZibalService`, `CategoriesController`, `UsersService`, `IngredientsService`, `RedisService`, `MediaController`, `SmsService`, `TestimonialsService`, `ContactService`, `PetsController`, `PaginationDto`, `prescriptions.controller.ts`, `PetsController`, `seo.module.ts`, `admin.service.ts`, `HomeController`, `zibal.service.ts`, `OrdersService`, `auth.service.ts`, `MetricsController`?** - _High betweenness centrality (0.042) - this node is a cross-community bridge._ -- **What connects `OrderItem`, `PaymentTx`, `Order` to the rest of the system?** +- **Why does `Roles()` connect `Roles` to `BannersService`, `CmsController`, `B2BService`, `reviews.controller.ts`, `tickets.controller.ts`, `SslController`, `IngredientsService`, `ProductsService`, `PrescriptionsService`, `SmartAdvisorService`, `TestimonialsService`, `ContactService`, `PaymentController`, `WholesaleService`, `JwtAuthGuard`?** + _High betweenness centrality (0.051) - this node is a cross-community bridge._ +- **Why does `ApiResponse` connect `src/services/api.ts` to `UsersService`, `PetsController`, `auth.controller.ts`, `WikiController`, `BlogsController`, `OrdersService`, `HomeController`, `ProductsService`?** + _High betweenness centrality (0.038) - this node is a cross-community bridge._ +- **Why does `JwtAuthGuard` connect `JwtAuthGuard` to `CmsController`, `reviews.controller.ts`, `tickets.controller.ts`, `UsersService`, `admin.module.ts`, `admin.service.ts`, `BlogsService`, `auth.controller.ts`, `DoctorsService`, `CreateVideoDto`, `pets/pets.controller.ts`, `PaginationDto`?** + _High betweenness centrality (0.024) - this node is a cross-community bridge._ +- **What connects `$schema`, `collection`, `sourceRoot` to the rest of the system?** _1240 weakly-connected nodes found - possible documentation gaps or missing edges._ -- **Should `AdminService` be split into smaller, more focused modules?** - _Cohesion score 0.08821548821548822 - nodes in this community are weakly interconnected._ - **Should `productService.ts` be split into smaller, more focused modules?** _Cohesion score 0.05888376856118792 - nodes in this community are weakly interconnected._ - **Should `CmsController` be split into smaller, more focused modules?** - _Cohesion score 0.0899854862119013 - nodes in this community are weakly interconnected._ \ No newline at end of file + _Cohesion score 0.0899854862119013 - nodes in this community are weakly interconnected._ +- **Should `app.module.ts` be split into smaller, more focused modules?** + _Cohesion score 0.0797872340425532 - nodes in this community are weakly interconnected._ \ No newline at end of file diff --git a/graphify-out/2026-08-18/graph.json b/graphify-out/2026-08-18/graph.json index 3ce2d53..fdf2ed7 100644 --- a/graphify-out/2026-08-18/graph.json +++ b/graphify-out/2026-08-18/graph.json @@ -31,45 +31,6 @@ ] }, "nodes": [ - { - "label": "AdminController", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L29", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "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": "L50", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 0, - "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": "L37", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": "couponinput", - "id": "backend_src_admin_admin_service_couponinput" - }, { "label": "BlogPost", "file_type": "code", @@ -78,10 +39,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "frontend_application_components_blogpage_blogpost", "community": 1, "community_name": "productService.ts", - "norm_label": "blogpost", - "id": "frontend_application_components_blogpage_blogpost" + "norm_label": "blogpost" }, { "label": "CatalogPageSpreadProps", @@ -91,10 +52,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "frontend_application_components_catalog_catalogpagespread_catalogpagespreadprops", "community": 1, "community_name": "productService.ts", - "norm_label": "catalogpagespreadprops", - "id": "frontend_application_components_catalog_catalogpagespread_catalogpagespreadprops" + "norm_label": "catalogpagespreadprops" }, { "label": "CategoryMeta", @@ -104,10 +65,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "frontend_application_components_catalog_catalogpagespread_categorymeta", "community": 1, "community_name": "productService.ts", - "norm_label": "categorymeta", - "id": "frontend_application_components_catalog_catalogpagespread_categorymeta" + "norm_label": "categorymeta" }, { "label": "FlipbookCatalogProps", @@ -117,10 +78,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalogprops", "community": 1, "community_name": "productService.ts", - "norm_label": "flipbookcatalogprops", - "id": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalogprops" + "norm_label": "flipbookcatalogprops" }, { "label": "SmartAdvisorProps", @@ -130,10 +91,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "frontend_application_components_smartadvisor_smartadvisorprops", "community": 1, "community_name": "productService.ts", - "norm_label": "smartadvisorprops", - "id": "frontend_application_components_smartadvisor_smartadvisorprops" + "norm_label": "smartadvisorprops" }, { "label": "DosageResult", @@ -143,10 +104,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "frontend_application_lib_data_products_dosageresult", "community": 1, "community_name": "productService.ts", - "norm_label": "dosageresult", - "id": "frontend_application_lib_data_products_dosageresult" + "norm_label": "dosageresult" }, { "label": "FAQ", @@ -156,10 +117,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "frontend_application_lib_data_products_faq", "community": 1, "community_name": "productService.ts", - "norm_label": "faq", - "id": "frontend_application_lib_data_products_faq" + "norm_label": "faq" }, { "label": "IngredientInfo", @@ -169,10 +130,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "frontend_application_lib_data_products_ingredientinfo", "community": 1, "community_name": "productService.ts", - "norm_label": "ingredientinfo", - "id": "frontend_application_lib_data_products_ingredientinfo" + "norm_label": "ingredientinfo" }, { "label": "PetType", @@ -182,10 +143,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "frontend_application_lib_data_products_pettype", "community": 1, "community_name": "productService.ts", - "norm_label": "pettype", - "id": "frontend_application_lib_data_products_pettype" + "norm_label": "pettype" }, { "label": "Product", @@ -195,10 +156,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "frontend_application_lib_data_products_product", "community": 1, "community_name": "productService.ts", - "norm_label": "product", - "id": "frontend_application_lib_data_products_product" + "norm_label": "product" }, { "label": "Specialist", @@ -208,10 +169,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "frontend_application_lib_data_products_specialist", "community": 1, "community_name": "productService.ts", - "norm_label": "specialist", - "id": "frontend_application_lib_data_products_specialist" + "norm_label": "specialist" }, { "label": "BackendProduct", @@ -221,10 +182,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "frontend_application_lib_services_productservice_backendproduct", "community": 1, "community_name": "productService.ts", - "norm_label": "backendproduct", - "id": "frontend_application_lib_services_productservice_backendproduct" + "norm_label": "backendproduct" }, { "label": "ProductService", @@ -234,10 +195,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "frontend_application_lib_services_productservice_productservice", "community": 1, "community_name": "productService.ts", - "norm_label": "productservice", - "id": "frontend_application_lib_services_productservice_productservice" + "norm_label": "productservice" }, { "label": "Ingredient", @@ -247,10 +208,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "frontend_application_lib_types_ingredient", "community": 1, "community_name": "productService.ts", - "norm_label": "ingredient", - "id": "frontend_application_lib_types_ingredient" + "norm_label": "ingredient" }, { "label": "DoctorsController", @@ -260,1778 +221,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "backend_src_doctors_doctors_controller_doctorscontroller", "community": 10, "community_name": "DoctorsService", - "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": "L13", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 10, - "community_name": "DoctorsService", - "norm_label": "doctorsservice", - "id": "backend_src_doctors_doctors_service_doctorsservice" - }, - { - "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": 101, - "community_name": "CreateOrderDto", - "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": 101, - "community_name": "CreateOrderDto", - "norm_label": "orderitemdto", - "id": "backend_src_orders_dto_create_order_dto_orderitemdto" - }, - { - "label": "AdminLoginInput", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L25", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 104, - "community_name": "auth.service.ts", - "norm_label": "adminlogininput", - "id": "backend_src_auth_auth_service_adminlogininput" - }, - { - "label": "LoginInput", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L20", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 104, - "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": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 104, - "community_name": "auth.service.ts", - "norm_label": "registerinput", - "id": "backend_src_auth_auth_service_registerinput" - }, - { - "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": 104, - "community_name": "auth.service.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": 104, - "community_name": "auth.service.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": 104, - "community_name": "auth.service.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": 104, - "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": 104, - "community_name": "auth.service.ts", - "norm_label": "verifyotpdto", - "id": "backend_src_auth_dto_verify_otp_dto_verifyotpdto" - }, - { - "label": "BrandLogoProps", - "file_type": "code", - "source_file": "frontend/application/components/BrandLogo.tsx", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 11, - "community_name": "useSettingsStore", - "norm_label": "brandlogoprops", - "id": "frontend_application_components_brandlogo_brandlogoprops" - }, - { - "label": "TooltipProps", - "file_type": "code", - "source_file": "frontend/application/components/Tooltip.tsx", - "source_location": "L8", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 11, - "community_name": "useSettingsStore", - "norm_label": "tooltipprops", - "id": "frontend_application_components_tooltip_tooltipprops" - }, - { - "label": "ScientificTerm", - "file_type": "code", - "source_file": "frontend/application/lib/store/settingsStore.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 11, - "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": 11, - "community_name": "useSettingsStore", - "norm_label": "settingsstore", - "id": "frontend_application_lib_store_settingsstore_settingsstore" - }, - { - "label": "AppController", - "file_type": "code", - "source_file": "backend/src/app.controller.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 110, - "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": 110, - "community_name": "AppService", - "norm_label": "appservice", - "id": "backend_src_app_service_appservice" - }, - { - "label": "ContactInfoItem", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", - "source_location": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 12, - "community_name": "adminRoutes.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": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 12, - "community_name": "adminRoutes.tsx", - "norm_label": "contactsubmission", - "id": "frontend_admin_panel_src_pages_contactsubmissions_contactsubmission" - }, - { - "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": 12, - "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": 12, - "community_name": "adminRoutes.tsx", - "norm_label": "dashboarddata", - "id": "frontend_admin_panel_src_pages_dashboard_dashboarddata" - }, - { - "label": "Ticket", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", - "source_location": "L34", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 12, - "community_name": "adminRoutes.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": "L24", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 12, - "community_name": "adminRoutes.tsx", - "norm_label": "ticketmessage", - "id": "frontend_admin_panel_src_pages_tickets_ticketmessage" - }, - { - "label": "WholesaleRequest", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 12, - "community_name": "adminRoutes.tsx", - "norm_label": "wholesalerequest", - "id": "frontend_admin_panel_src_pages_wholesaleapplications_wholesalerequest" - }, - { - "label": "AdminRouteConfig", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L43", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 12, - "community_name": "adminRoutes.tsx", - "norm_label": "adminrouteconfig", - "id": "frontend_admin_panel_src_routes_adminroutes_adminrouteconfig" - }, - { - "label": "BestSellerItem", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L35", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 124, - "community_name": "Reports.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": "L30", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 124, - "community_name": "Reports.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": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 124, - "community_name": "Reports.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": "L46", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 124, - "community_name": "Reports.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": "L40", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 124, - "community_name": "Reports.tsx", - "norm_label": "topcouponitem", - "id": "frontend_admin_panel_src_pages_reports_topcouponitem" - }, - { - "label": "BlogQuery", - "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 13, - "community_name": "PrismaService", - "norm_label": "blogquery", - "id": "backend_src_admin_blogs_service_blogquery" - }, - { - "label": "WikiQuery", - "file_type": "code", - "source_file": "backend/src/admin/wiki.service.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 13, - "community_name": "PrismaService", - "norm_label": "wikiquery", - "id": "backend_src_admin_wiki_service_wikiquery" - }, - { - "label": "BannersService", - "file_type": "code", - "source_file": "backend/src/banners/banners.service.ts", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 13, - "community_name": "PrismaService", - "norm_label": "bannersservice", - "id": "backend_src_banners_banners_service_bannersservice" - }, - { - "label": "MeliPayamakPattern", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L25", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 13, - "community_name": "PrismaService", - "norm_label": "melipayamakpattern", - "id": "backend_src_common_services_sms_service_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", - "community": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "community_name": "PrismaService", - "norm_label": "updatecontactinfoitemdto", - "id": "backend_src_contact_contact_service_updatecontactinfoitemdto" - }, - { - "label": "PrismaService", - "file_type": "code", - "source_file": "backend/src/prisma/prisma.service.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 13, - "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", - "community": 13, - "community_name": "PrismaService", - "norm_label": "scientifictermdata", - "id": "backend_src_settings_settings_service_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", - "community": 13, - "community_name": "PrismaService", - "norm_label": "smartadvisorservice", - "id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice" - }, - { - "label": "VideoQuery", - "file_type": "code", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 13, - "community_name": "PrismaService", - "norm_label": "videoquery", - "id": "backend_src_videos_videos_service_videoquery" - }, - { - "label": "ErrorBoundary", - "file_type": "code", - "source_file": "frontend/application/components/ErrorBoundary.tsx", - "source_location": "L15", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 134, - "community_name": "ErrorBoundary", - "norm_label": "errorboundary", - "id": "frontend_application_components_errorboundary_errorboundary" - }, - { - "label": "Props", - "file_type": "code", - "source_file": "frontend/application/components/ErrorBoundary.tsx", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 134, - "community_name": "ErrorBoundary", - "norm_label": "props", - "id": "frontend_application_components_errorboundary_props" - }, - { - "label": "State", - "file_type": "code", - "source_file": "frontend/application/components/ErrorBoundary.tsx", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 134, - "community_name": "ErrorBoundary", - "norm_label": "state", - "id": "frontend_application_components_errorboundary_state" - }, - { - "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": 137, - "community_name": "payment.module.ts", - "norm_label": "admintransactionfilterdto", - "id": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto" - }, - { - "label": "PaymentModule", - "file_type": "code", - "source_file": "backend/src/payment/payment.module.ts", - "source_location": "L14", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 137, - "community_name": "payment.module.ts", - "norm_label": "paymentmodule", - "id": "backend_src_payment_payment_module_paymentmodule" - }, - { - "label": "ClientMetadata", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L13", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 137, - "community_name": "payment.module.ts", - "norm_label": "clientmetadata", - "id": "backend_src_payment_payment_service_clientmetadata" - }, - { - "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": 138, - "community_name": "payment.controller.ts", - "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": 138, - "community_name": "payment.controller.ts", - "norm_label": "initiatewallettopupdto", - "id": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto" - }, - { - "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": 138, - "community_name": "payment.controller.ts", - "norm_label": "zibalcallbackquerydto", - "id": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto" - }, - { - "label": "BlogsController", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L18", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 14, - "community_name": "BlogsController", - "norm_label": "blogscontroller", - "id": "backend_src_blogs_blogs_controller_blogscontroller" - }, - { - "label": "WikiController", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L18", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 141, - "community_name": "WikiController", - "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": 141, - "community_name": "WikiController", - "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": 141, - "community_name": "WikiController", - "norm_label": "wikiservice", - "id": "backend_src_wiki_wiki_service_wikiservice" - }, - { - "label": "ProductReview", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", - "source_location": "L22", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 145, - "community_name": "Spinner.tsx", - "norm_label": "productreview", - "id": "frontend_admin_panel_src_pages_reviews_productreview" - }, - { - "label": "PatternItem", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L54", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 145, - "community_name": "Spinner.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": "L42", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 145, - "community_name": "Spinner.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": "L63", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 145, - "community_name": "Spinner.tsx", - "norm_label": "smslogitem", - "id": "frontend_admin_panel_src_pages_smssettingspage_smslogitem" - }, - { - "label": "SmsLogStats", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L76", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 145, - "community_name": "Spinner.tsx", - "norm_label": "smslogstats", - "id": "frontend_admin_panel_src_pages_smssettingspage_smslogstats" - }, - { - "label": "SslStatus", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", - "source_location": "L23", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 145, - "community_name": "Spinner.tsx", - "norm_label": "sslstatus", - "id": "frontend_admin_panel_src_pages_sslsettingspage_sslstatus" - }, - { - "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": 145, - "community_name": "Spinner.tsx", - "norm_label": "seosettings", - "id": "frontend_admin_panel_src_types_admin_seosettings" - }, - { - "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": 15, - "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": 15, - "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": 15, - "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": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": "productsservice", - "id": "backend_src_products_products_service_productsservice" - }, - { - "label": "ContactInfoItem", - "file_type": "code", - "source_file": "frontend/application/components/ContactFormClient.tsx", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 16, - "community_name": "lib/services/api.ts", - "norm_label": "contactinfoitem", - "id": "frontend_application_components_contactformclient_contactinfoitem" - }, - { - "label": "Testimonial", - "file_type": "code", - "source_file": "frontend/application/components/TestimonialsSection.tsx", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 16, - "community_name": "lib/services/api.ts", - "norm_label": "testimonial", - "id": "frontend_application_components_testimonialssection_testimonial" - }, - { - "label": "ApiErrorPayload", - "file_type": "code", - "source_file": "frontend/application/lib/services/api.ts", - "source_location": "L16", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 16, - "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": 16, - "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": 16, - "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": 16, - "community_name": "lib/services/api.ts", - "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": 16, - "community_name": "lib/services/api.ts", - "norm_label": "user", - "id": "frontend_application_lib_services_authservice_user" - }, - { - "label": "ApiErr", - "file_type": "code", - "source_file": "frontend/application/lib/services/orderService.ts", - "source_location": "L23", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 16, - "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": 16, - "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": 16, - "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": 16, - "community_name": "lib/services/api.ts", - "norm_label": "orderservice", - "id": "frontend_application_lib_services_orderservice_orderservice" - }, - { - "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": 160, - "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": 160, - "community_name": "paginated-response.schema.ts", - "norm_label": "paginationmeta", - "id": "backend_src_common_schemas_paginated_response_schema_paginationmeta" - }, - { - "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": 17, - "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": 17, - "community_name": "CreateVideoDto", - "norm_label": "updatevideodto", - "id": "backend_src_videos_dto_create_video_dto_updatevideodto" - }, - { - "label": "VideosController", - "file_type": "code", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L25", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 17, - "community_name": "CreateVideoDto", - "norm_label": "videoscontroller", - "id": "backend_src_videos_videos_controller_videoscontroller" - }, - { - "label": "VideosService", - "file_type": "code", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L14", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 17, - "community_name": "CreateVideoDto", - "norm_label": "videosservice", - "id": "backend_src_videos_videos_service_videosservice" - }, - { - "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": 177, - "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": 177, - "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": 178, - "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": 178, - "community_name": "update-home.dto.ts", - "norm_label": "updatehomedto", - "id": "backend_src_home_dto_update_home_dto_updatehomedto" - }, - { - "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": 179, - "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": 179, - "community_name": "update-wiki.dto.ts", - "norm_label": "updatewikidto", - "id": "backend_src_wiki_dto_update_wiki_dto_updatewikidto" - }, - { - "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": 18, - "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": 18, - "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": 18, - "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", - "community": 18, - "community_name": "src/services/api.ts", - "norm_label": "adminuser", - "id": "frontend_admin_panel_src_types_admin_adminuser" - }, - { - "label": "ApiResponse", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L41", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 18, - "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": 18, - "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": 18, - "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": 18, - "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": 18, - "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": "L202", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 18, - "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": 18, - "community_name": "src/services/api.ts", - "norm_label": "sendotppayload", - "id": "frontend_admin_panel_src_types_admin_sendotppayload" - }, - { - "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": 18, - "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": "L194", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 18, - "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": 18, - "community_name": "src/services/api.ts", - "norm_label": "verifyotppayload", - "id": "frontend_admin_panel_src_types_admin_verifyotppayload" - }, - { - "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": 185, - "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": 185, - "community_name": "Select.tsx", - "norm_label": "selectprops", - "id": "frontend_admin_panel_src_components_ui_select_selectprops" - }, - { - "label": "B2BModule", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 19, - "community_name": "B2BService", - "norm_label": "b2bmodule", - "id": "backend_src_b2b_b2b_module_b2bmodule" - }, - { - "label": "B2BService", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L14", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 19, - "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": 19, - "community_name": "B2BService", - "norm_label": "b2bwholesaleorderitem", - "id": "backend_src_b2b_b2b_service_b2bwholesaleorderitem" - }, - { - "label": "ScientificTerm", - "file_type": "code", - "source_file": "backend/prisma/scientificTerms.ts", - "source_location": "L1", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 196, - "community_name": "prisma/scientificTerms.ts", - "norm_label": "scientificterm", - "id": "backend_prisma_scientificterms_scientificterm" - }, - { - "label": "CmsController", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L27", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 2, - "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": 2, - "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": 2, - "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": 2, - "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": 2, - "community_name": "CmsController", - "norm_label": "createvettestimonialdto", - "id": "backend_src_cms_dto_cms_dto_createvettestimonialdto" - }, - { - "label": "BannersController", - "file_type": "code", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L21", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "norm_label": "bannerscontroller", - "id": "backend_src_banners_banners_controller_bannerscontroller" - }, - { - "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": 21, - "community_name": "Roles", - "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": 21, - "community_name": "Roles", - "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": "L86", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "norm_label": "settingsservice", - "id": "backend_src_settings_settings_service_settingsservice" - }, - { - "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": 216, - "community_name": "FormField.tsx", - "norm_label": "formfieldprops", - "id": "frontend_admin_panel_src_components_ui_formfield_formfieldprops" - }, - { - "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": 217, - "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": 218, - "community_name": "Textarea.tsx", - "norm_label": "textareaprops", - "id": "frontend_admin_panel_src_components_ui_textarea_textareaprops" - }, - { - "label": "MetricsController", - "file_type": "code", - "source_file": "backend/src/common/metrics.controller.ts", - "source_location": "L8", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 243, - "community_name": "MetricsController", - "norm_label": "metricscontroller", - "id": "backend_src_common_metrics_controller_metricscontroller" - }, - { - "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": 244, - "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": 245, - "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": 246, - "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": 259, - "community_name": "vitest.setup.ts", - "norm_label": "mockintersectionobserver", - "id": "frontend_application_vitest_setup_mockintersectionobserver" - }, - { - "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": 29, - "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": 29, - "community_name": "WholesaleApplyDto", - "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": 29, - "community_name": "WholesaleApplyDto", - "norm_label": "wholesaleservice", - "id": "backend_src_wholesale_wholesale_service_wholesaleservice" - }, - { - "label": "BannersModule", - "file_type": "code", - "source_file": "backend/src/banners/banners.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 3, - "community_name": "app.module.ts", - "norm_label": "bannersmodule", - "id": "backend_src_banners_banners_module_bannersmodule" - }, - { - "label": "CmsModule", - "file_type": "code", - "source_file": "backend/src/cms/cms.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 3, - "community_name": "app.module.ts", - "norm_label": "cmsmodule", - "id": "backend_src_cms_cms_module_cmsmodule" - }, - { - "label": "SmsModule", - "file_type": "code", - "source_file": "backend/src/common/sms.module.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 3, - "community_name": "app.module.ts", - "norm_label": "smsmodule", - "id": "backend_src_common_sms_module_smsmodule" - }, - { - "label": "ContactModule", - "file_type": "code", - "source_file": "backend/src/contact/contact.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 3, - "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": 3, - "community_name": "app.module.ts", - "norm_label": "doctorsmodule", - "id": "backend_src_doctors_doctors_module_doctorsmodule" + "norm_label": "doctorscontroller" }, { "label": "DoctorQuery", @@ -2041,2103 +234,36 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 3, - "community_name": "app.module.ts", - "norm_label": "doctorquery", - "id": "backend_src_doctors_doctors_service_doctorquery" + "id": "backend_src_doctors_doctors_service_doctorquery", + "community": 10, + "community_name": "DoctorsService", + "norm_label": "doctorquery" }, { - "label": "IngredientsModule", + "label": "DoctorsService", "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 3, - "community_name": "app.module.ts", - "norm_label": "ingredientsmodule", - "id": "backend_src_ingredients_ingredients_module_ingredientsmodule" - }, - { - "label": "PrismaModule", - "file_type": "code", - "source_file": "backend/src/prisma/prisma.module.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 3, - "community_name": "app.module.ts", - "norm_label": "prismamodule", - "id": "backend_src_prisma_prisma_module_prismamodule" - }, - { - "label": "ReviewsModule", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 3, - "community_name": "app.module.ts", - "norm_label": "reviewsmodule", - "id": "backend_src_reviews_reviews_module_reviewsmodule" - }, - { - "label": "SettingsModule", - "file_type": "code", - "source_file": "backend/src/settings/settings.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 3, - "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": 3, - "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": 3, - "community_name": "app.module.ts", - "norm_label": "testimonialsmodule", - "id": "backend_src_testimonials_testimonials_module_testimonialsmodule" - }, - { - "label": "VideosModule", - "file_type": "code", - "source_file": "backend/src/videos/videos.module.ts", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 3, - "community_name": "app.module.ts", - "norm_label": "videosmodule", - "id": "backend_src_videos_videos_module_videosmodule" - }, - { - "label": "WholesaleModule", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 3, - "community_name": "app.module.ts", - "norm_label": "wholesalemodule", - "id": "backend_src_wholesale_wholesale_module_wholesalemodule" - }, - { - "label": "AppModule", - "file_type": "code", - "source_file": "backend/src/app.module.ts", - "source_location": "L83", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 30, - "community_name": "main.ts", - "norm_label": "appmodule", - "id": "backend_src_app_module_appmodule" - }, - { - "label": "CustomHttpExceptionFilter", - "file_type": "code", - "source_file": "backend/src/common/filters/http-exception.filter.ts", + "source_file": "backend/src/doctors/doctors.service.ts", "source_location": "L13", "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 30, - "community_name": "main.ts", - "norm_label": "customhttpexceptionfilter", - "id": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter" + "id": "backend_src_doctors_doctors_service_doctorsservice", + "community": 10, + "community_name": "DoctorsService", + "norm_label": "doctorsservice" }, { - "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", - "community": 30, - "community_name": "main.ts", - "norm_label": "prismaexceptionfilter", - "id": "backend_src_common_filters_prisma_exception_filter_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", - "community": 30, - "community_name": "main.ts", - "norm_label": "decimalinterceptor", - "id": "backend_src_common_interceptors_decimal_interceptor_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", - "community": 30, - "community_name": "main.ts", - "norm_label": "apierrorresponse", - "id": "backend_src_common_schemas_error_response_schema_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", - "community": 30, - "community_name": "main.ts", - "norm_label": "errordetailfield", - "id": "backend_src_common_schemas_error_response_schema_errordetailfield" - }, - { - "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": 31, - "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": 31, - "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": 31, - "community_name": "JwtAuthGuard", - "norm_label": "rolesguard", - "id": "backend_src_common_guards_roles_guard_rolesguard" - }, - { - "label": "PaymentService", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L19", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 32, - "community_name": "ZibalService", - "norm_label": "paymentservice", - "id": "backend_src_payment_payment_service_paymentservice" - }, - { - "label": "ZibalService", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L43", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 32, - "community_name": "ZibalService", - "norm_label": "zibalservice", - "id": "backend_src_payment_zibal_service_zibalservice" - }, - { - "label": "CategoriesController", - "file_type": "code", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L28", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 34, - "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": 34, - "community_name": "CategoriesController", - "norm_label": "categoriesservice", - "id": "backend_src_admin_categories_service_categoriesservice" - }, - { - "label": "CategoryQuery", - "file_type": "code", - "source_file": "backend/src/admin/categories.service.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 34, - "community_name": "CategoriesController", - "norm_label": "categoryquery", - "id": "backend_src_admin_categories_service_categoryquery" - }, - { - "label": "B2BController", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L19", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 35, - "community_name": "B2BController", - "norm_label": "b2bcontroller", - "id": "backend_src_b2b_b2b_controller_b2bcontroller" - }, - { - "label": "AuthModalProps", - "file_type": "code", - "source_file": "frontend/application/components/AuthModal.tsx", - "source_location": "L25", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 37, - "community_name": "userStore.ts", - "norm_label": "authmodalprops", - "id": "frontend_application_components_authmodal_authmodalprops" - }, - { - "label": "PrescriptionUploadModalProps", - "file_type": "code", - "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 37, - "community_name": "userStore.ts", - "norm_label": "prescriptionuploadmodalprops", - "id": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodalprops" - }, - { - "label": "CartItem", - "file_type": "code", - "source_file": "frontend/application/lib/store/cartStore.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 37, - "community_name": "userStore.ts", - "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": 37, - "community_name": "userStore.ts", - "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": 37, - "community_name": "userStore.ts", - "norm_label": "order", - "id": "frontend_application_lib_store_cartstore_order" - }, - { - "label": "UIState", - "file_type": "code", - "source_file": "frontend/application/lib/store/uiStore.ts", - "source_location": "L3", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 37, - "community_name": "userStore.ts", - "norm_label": "uistate", - "id": "frontend_application_lib_store_uistore_uistate" - }, - { - "label": "Transaction", - "file_type": "code", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L25", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 37, - "community_name": "userStore.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": 37, - "community_name": "userStore.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": 37, - "community_name": "userStore.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": 37, - "community_name": "userStore.ts", - "norm_label": "userstore", - "id": "frontend_application_lib_store_userstore_userstore" - }, - { - "label": "NavigationTarget", - "file_type": "code", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L109", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 37, - "community_name": "userStore.ts", - "norm_label": "navigationtarget", - "id": "frontend_application_lib_types_navigationtarget" - }, - { - "label": "AuthModule", - "file_type": "code", - "source_file": "backend/src/auth/auth.module.ts", - "source_location": "L25", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 38, - "community_name": "UsersService", - "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": 38, - "community_name": "UsersService", - "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": 38, - "community_name": "UsersService", - "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": 38, - "community_name": "UsersService", - "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": 38, - "community_name": "UsersService", - "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": 38, - "community_name": "UsersService", - "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": 38, - "community_name": "UsersService", - "norm_label": "usersmodule", - "id": "backend_src_users_users_module_usersmodule" - }, - { - "label": "UserAddressInput", - "file_type": "code", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 38, - "community_name": "UsersService", - "norm_label": "useraddressinput", - "id": "backend_src_users_users_service_useraddressinput" - }, - { - "label": "UsersService", - "file_type": "code", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L24", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 38, - "community_name": "UsersService", - "norm_label": "usersservice", - "id": "backend_src_users_users_service_usersservice" - }, - { - "label": "CreateReviewDto", - "file_type": "code", - "source_file": "backend/src/reviews/dto/create-review.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 4, - "community_name": "CreateReviewDto", - "norm_label": "createreviewdto", - "id": "backend_src_reviews_dto_create_review_dto_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", - "community": 4, - "community_name": "CreateReviewDto", - "norm_label": "updatereviewdto", - "id": "backend_src_reviews_dto_update_review_dto_updatereviewdto" - }, - { - "label": "ReviewsController", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L23", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 4, - "community_name": "CreateReviewDto", - "norm_label": "reviewscontroller", - "id": "backend_src_reviews_reviews_controller_reviewscontroller" - }, - { - "label": "ReviewsService", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 4, - "community_name": "CreateReviewDto", - "norm_label": "reviewsservice", - "id": "backend_src_reviews_reviews_service_reviewsservice" - }, - { - "label": "SslController", - "file_type": "code", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L24", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 40, - "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": "L22", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 40, - "community_name": "SslController", - "norm_label": "sslservice", - "id": "backend_src_admin_ssl_service_sslservice" - }, - { - "label": "PodcastPlayerModalProps", - "file_type": "code", - "source_file": "frontend/application/components/PodcastPlayerModal.tsx", - "source_location": "L20", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 41, - "community_name": "PodcastPlayerModal.tsx", - "norm_label": "podcastplayermodalprops", - "id": "frontend_application_components_podcastplayermodal_podcastplayermodalprops" - }, - { - "label": "IngredientsController", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L20", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 42, - "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": 42, - "community_name": "IngredientsService", - "norm_label": "ingredientsservice", - "id": "backend_src_ingredients_ingredients_service_ingredientsservice" - }, - { - "label": "AuthService", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L32", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 43, - "community_name": "RedisService", - "norm_label": "authservice", - "id": "backend_src_auth_auth_service_authservice" - }, - { - "label": "RedisService", - "file_type": "code", - "source_file": "backend/src/redis/redis.service.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 43, - "community_name": "RedisService", - "norm_label": "redisservice", - "id": "backend_src_redis_redis_service_redisservice" - }, - { - "label": "MediaController", - "file_type": "code", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L22", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 44, - "community_name": "MediaController", - "norm_label": "mediacontroller", - "id": "backend_src_admin_media_controller_mediacontroller" - }, - { - "label": "MediaService", - "file_type": "code", - "source_file": "backend/src/admin/media.service.ts", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 44, - "community_name": "MediaController", - "norm_label": "mediaservice", - "id": "backend_src_admin_media_service_mediaservice" - }, - { - "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", - "community": 45, - "community_name": "Pagination.tsx", - "norm_label": "paginationprops", - "id": "frontend_admin_panel_src_components_ui_pagination_paginationprops" - }, - { - "label": "Pet", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Pets.tsx", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 45, - "community_name": "Pagination.tsx", - "norm_label": "pet", - "id": "frontend_admin_panel_src_pages_pets_pet" - }, - { - "label": "GatewayHealth", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L79", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 45, - "community_name": "Pagination.tsx", - "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": "L69", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 45, - "community_name": "Pagination.tsx", - "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": 45, - "community_name": "Pagination.tsx", - "norm_label": "transaction", - "id": "frontend_admin_panel_src_pages_transactions_transaction" - }, - { - "label": "ProductItem", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", - "source_location": "L20", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 45, - "community_name": "Pagination.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": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 45, - "community_name": "Pagination.tsx", - "norm_label": "wikiterm", - "id": "frontend_admin_panel_src_pages_wiki_wikiterm" - }, - { - "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": 46, - "community_name": "SmsService", - "norm_label": "smsservice", - "id": "backend_src_common_services_sms_service_smsservice" - }, - { - "label": "OrdersController", - "file_type": "code", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L54", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 47, - "community_name": "OrdersController", - "norm_label": "orderscontroller", - "id": "backend_src_orders_orders_controller_orderscontroller" - }, - { - "label": "PrescriptionsController", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L27", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 48, - "community_name": "PrescriptionsController", - "norm_label": "prescriptionscontroller", - "id": "backend_src_prescriptions_prescriptions_controller_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", - "community": 49, - "community_name": "SmartAdvisorController", - "norm_label": "smartadvisorcontroller", - "id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller" - }, - { - "label": "AdminUpdateTicketDto", - "file_type": "code", - "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", - "source_location": "L53", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 5, - "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": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 5, - "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": "L36", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 5, - "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": 5, - "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": "L27", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 5, - "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": 5, - "community_name": "tickets.controller.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": "L14", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 5, - "community_name": "tickets.controller.ts", - "norm_label": "ticketsservice", - "id": "backend_src_tickets_tickets_service_ticketsservice" - }, - { - "label": "TestimonialsController", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L20", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 50, - "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": 50, - "community_name": "TestimonialsService", - "norm_label": "testimonialsservice", - "id": "backend_src_testimonials_testimonials_service_testimonialsservice" - }, - { - "label": "ContactController", - "file_type": "code", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 52, - "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": 52, - "community_name": "ContactService", - "norm_label": "contactservice", - "id": "backend_src_contact_contact_service_contactservice" - }, - { - "label": "PaymentController", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L38", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 53, - "community_name": "PaymentController", - "norm_label": "paymentcontroller", - "id": "backend_src_payment_payment_controller_paymentcontroller" - }, - { - "label": "BadgeProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Badge.tsx", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 55, - "community_name": "Media.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": 55, - "community_name": "Media.tsx", - "norm_label": "badgevariant", - "id": "frontend_admin_panel_src_components_ui_badge_badgevariant" - }, - { - "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": 55, - "community_name": "Media.tsx", - "norm_label": "imagepreviewmodalprops", - "id": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodalprops" - }, - { - "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": "Media.tsx", - "norm_label": "toggleswitchprops", - "id": "frontend_admin_panel_src_components_ui_toggleswitch_toggleswitchprops" - }, - { - "label": "Media", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 55, - "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": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 55, - "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": 55, - "community_name": "Media.tsx", - "norm_label": "prescription", - "id": "frontend_admin_panel_src_types_admin_prescription" - }, - { - "label": "PetsController", - "file_type": "code", - "source_file": "backend/src/admin/pets.controller.ts", - "source_location": "L24", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 57, - "community_name": "PetsController", - "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": 57, - "community_name": "PetsController", - "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": 57, - "community_name": "PetsController", - "norm_label": "petsservice", - "id": "backend_src_admin_pets_service_petsservice" - }, - { - "label": "BlogsModule", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.module.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 58, - "community_name": "PaginationDto", - "norm_label": "blogsmodule", - "id": "backend_src_blogs_blogs_module_blogsmodule" - }, - { - "label": "BlogsService", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 58, - "community_name": "PaginationDto", - "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": 58, - "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": 58, - "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": 58, - "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": 58, - "community_name": "PaginationDto", - "norm_label": "ordersmodule", - "id": "backend_src_orders_orders_module_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", - "community": 58, - "community_name": "PaginationDto", - "norm_label": "getvideosquerydto", - "id": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto" - }, - { - "label": "AddressModalProps", - "file_type": "code", - "source_file": "frontend/application/components/AddressModal.tsx", - "source_location": "L11", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 6, - "community_name": "UserDashboard.tsx", - "norm_label": "addressmodalprops", - "id": "frontend_application_components_addressmodal_addressmodalprops" - }, - { - "label": "BackButtonProps", - "file_type": "code", - "source_file": "frontend/application/components/BackButton.tsx", - "source_location": "L8", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 6, - "community_name": "UserDashboard.tsx", - "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": 6, - "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": 6, - "community_name": "UserDashboard.tsx", - "norm_label": "headerbuttonprops", - "id": "frontend_application_components_headerbutton_headerbuttonprops" - }, - { - "label": "LoginModalProps", - "file_type": "code", - "source_file": "frontend/application/components/LoginModal.tsx", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 6, - "community_name": "UserDashboard.tsx", - "norm_label": "loginmodalprops", - "id": "frontend_application_components_loginmodal_loginmodalprops" - }, - { - "label": "OrderDetailsModalProps", - "file_type": "code", - "source_file": "frontend/application/components/OrderDetailsModal.tsx", - "source_location": "L30", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 6, - "community_name": "UserDashboard.tsx", - "norm_label": "orderdetailsmodalprops", - "id": "frontend_application_components_orderdetailsmodal_orderdetailsmodalprops" - }, - { - "label": "SearchableSelectProps", - "file_type": "code", - "source_file": "frontend/application/components/SearchableSelect.tsx", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 6, - "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": 6, - "community_name": "UserDashboard.tsx", - "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": 6, - "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": 6, - "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": 6, - "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": 6, - "community_name": "UserDashboard.tsx", - "norm_label": "address", - "id": "frontend_application_lib_store_userstore_address" - }, - { - "label": "HomeClientProps", - "file_type": "code", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L18", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 61, - "community_name": "HomeClient.tsx", - "norm_label": "homeclientprops", - "id": "frontend_application_app_homeclient_homeclientprops" - }, - { - "label": "BannerPlacementProps", - "file_type": "code", - "source_file": "frontend/application/components/BannerPlacement.tsx", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 61, - "community_name": "HomeClient.tsx", - "norm_label": "bannerplacementprops", - "id": "frontend_application_components_bannerplacement_bannerplacementprops" - }, - { - "label": "B2BInquiry", - "file_type": "code", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L67", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 61, - "community_name": "HomeClient.tsx", - "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": 61, - "community_name": "HomeClient.tsx", - "norm_label": "banner", - "id": "frontend_application_lib_types_banner" - }, - { - "label": "DosageConfig", - "file_type": "code", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L94", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 61, - "community_name": "HomeClient.tsx", - "norm_label": "dosageconfig", - "id": "frontend_application_lib_types_dosageconfig" - }, - { - "label": "HomeApiResponse", - "file_type": "code", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L102", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 61, - "community_name": "HomeClient.tsx", - "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": 61, - "community_name": "HomeClient.tsx", - "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": 61, - "community_name": "HomeClient.tsx", - "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": 61, - "community_name": "HomeClient.tsx", - "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": 61, - "community_name": "HomeClient.tsx", - "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": 61, - "community_name": "HomeClient.tsx", - "norm_label": "testimonial", - "id": "frontend_application_lib_types_testimonial" - }, - { - "label": "BlogsController", - "file_type": "code", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L29", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 62, - "community_name": "BlogsController", - "norm_label": "blogscontroller", - "id": "backend_src_admin_blogs_controller_blogscontroller" - }, - { - "label": "AuthController", - "file_type": "code", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L33", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 63, - "community_name": "AuthController", - "norm_label": "authcontroller", - "id": "backend_src_auth_auth_controller_authcontroller" - }, - { - "label": "UserReqPayload", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 64, - "community_name": "prescriptions.controller.ts", - "norm_label": "userreqpayload", - "id": "backend_src_prescriptions_prescriptions_controller_userreqpayload" - }, - { - "label": "PrescriptionsModule", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.module.ts", - "source_location": "L13", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 64, - "community_name": "prescriptions.controller.ts", - "norm_label": "prescriptionsmodule", - "id": "backend_src_prescriptions_prescriptions_module_prescriptionsmodule" - }, - { - "label": "PrescriptionsService", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.service.ts", - "source_location": "L11", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 64, - "community_name": "prescriptions.controller.ts", - "norm_label": "prescriptionsservice", - "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice" - }, - { - "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": 66, - "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": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 66, - "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": "L31", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 66, - "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": "L250", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 66, - "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": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 66, - "community_name": "Coupons.tsx", - "norm_label": "coupontarget", - "id": "frontend_admin_panel_src_pages_coupons_coupontarget" - }, - { - "label": "Category", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 66, - "community_name": "Coupons.tsx", - "norm_label": "category", - "id": "frontend_admin_panel_src_pages_products_category" - }, - { - "label": "Product", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L19", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 66, - "community_name": "Coupons.tsx", - "norm_label": "product", - "id": "frontend_admin_panel_src_pages_products_product" - }, - { - "label": "FinancialSettings", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L186", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 66, - "community_name": "Coupons.tsx", - "norm_label": "financialsettings", - "id": "frontend_admin_panel_src_types_admin_financialsettings" - }, - { - "label": "WikiController", - "file_type": "code", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L28", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 69, - "community_name": "WikiController", - "norm_label": "wikicontroller", - "id": "backend_src_admin_wiki_controller_wikicontroller" - }, - { - "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", - "community": 7, - "community_name": "MediaSelector.tsx", - "norm_label": "confirmmodalprops", - "id": "frontend_admin_panel_src_components_ui_confirmmodal_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", - "community": 7, - "community_name": "MediaSelector.tsx", - "norm_label": "media", - "id": "frontend_admin_panel_src_components_ui_mediaselector_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", - "community": 7, - "community_name": "MediaSelector.tsx", - "norm_label": "mediaselectorprops", - "id": "frontend_admin_panel_src_components_ui_mediaselector_mediaselectorprops" - }, - { - "label": "BlogPost", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 7, - "community_name": "MediaSelector.tsx", - "norm_label": "blogpost", - "id": "frontend_admin_panel_src_pages_blogs_blogpost" - }, - { - "label": "Category", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Categories.tsx", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 7, - "community_name": "MediaSelector.tsx", - "norm_label": "category", - "id": "frontend_admin_panel_src_pages_categories_category" - }, - { - "label": "HeroBanner", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/CMS.tsx", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 7, - "community_name": "MediaSelector.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": "L14", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 7, - "community_name": "MediaSelector.tsx", - "norm_label": "vettestimonial", - "id": "frontend_admin_panel_src_pages_cms_vettestimonial" - }, - { - "label": "Doctor", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 7, - "community_name": "MediaSelector.tsx", - "norm_label": "doctor", - "id": "frontend_admin_panel_src_pages_doctorsmanager_doctor" - }, - { - "label": "DoctorOption", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Videos.tsx", - "source_location": "L28", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 7, - "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": "L8", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 7, - "community_name": "MediaSelector.tsx", - "norm_label": "video", - "id": "frontend_admin_panel_src_pages_videos_video" - }, - { - "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": 7, - "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": 7, - "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": 7, - "community_name": "MediaSelector.tsx", - "norm_label": "testimonial", - "id": "frontend_admin_panel_src_types_admin_testimonial" - }, - { - "label": "AdminQueryDto", - "file_type": "code", - "source_file": "backend/src/admin/dto/admin-query.dto.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 70, - "community_name": "AdminQueryDto", - "norm_label": "adminquerydto", - "id": "backend_src_admin_dto_admin_query_dto_adminquerydto" - }, - { - "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": 71, - "community_name": "PetsController", - "norm_label": "createhealthlogdto", - "id": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto" - }, - { - "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": 71, - "community_name": "PetsController", - "norm_label": "createpetdto", - "id": "backend_src_pets_dto_create_pet_dto_createpetdto" - }, - { - "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": 71, - "community_name": "PetsController", - "norm_label": "createreminderdto", - "id": "backend_src_pets_dto_create_reminder_dto_createreminderdto" - }, - { - "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": 71, - "community_name": "PetsController", - "norm_label": "updatepetdto", - "id": "backend_src_pets_dto_update_pet_dto_updatepetdto" - }, - { - "label": "PetsController", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L55", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 71, - "community_name": "PetsController", - "norm_label": "petscontroller", - "id": "backend_src_pets_pets_controller_petscontroller" - }, - { - "label": "PetsModule", - "file_type": "code", - "source_file": "backend/src/pets/pets.module.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 71, - "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": 71, - "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": 71, - "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": 71, - "community_name": "PetsController", - "norm_label": "reminderinput", - "id": "backend_src_pets_pets_service_reminderinput" - }, - { - "label": "SeoController", - "file_type": "code", - "source_file": "backend/src/seo/seo.controller.ts", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 72, - "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": 72, - "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": 72, - "community_name": "seo.module.ts", - "norm_label": "seoservice", - "id": "backend_src_seo_seo_service_seoservice" - }, - { - "label": "CouponTargetInput", + "label": "AdminService", "file_type": "code", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L30", + "source_location": "L50", "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 73, - "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": "L16", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 73, - "community_name": "admin.service.ts", - "norm_label": "paginationquery", - "id": "backend_src_admin_admin_service_paginationquery" + "id": "backend_src_admin_admin_service_adminservice", + "community": 101, + "community_name": "AdminService", + "norm_label": "adminservice" }, { "label": "ProductDto", @@ -4147,88 +273,101 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 73, - "community_name": "admin.service.ts", - "norm_label": "productdto", - "id": "backend_src_admin_dto_product_dto_productdto" + "id": "backend_src_admin_dto_product_dto_productdto", + "community": 103, + "community_name": "ProductDto", + "norm_label": "productdto" }, { - "label": "CreateUserDto", + "label": "AuthController", "file_type": "code", - "source_file": "backend/src/admin/dto/user.dto.ts", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_auth_auth_controller_authcontroller", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": "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": 73, - "community_name": "admin.service.ts", - "norm_label": "createuserdto", - "id": "backend_src_admin_dto_user_dto_createuserdto" + "id": "backend_src_auth_dto_admin_login_dto_adminlogindto", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": "adminlogindto" }, { - "label": "UpdateUserDto", + "label": "LoginDto", "file_type": "code", - "source_file": "backend/src/admin/dto/user.dto.ts", - "source_location": "L42", + "source_file": "backend/src/auth/dto/login.dto.ts", + "source_location": "L4", "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 73, - "community_name": "admin.service.ts", - "norm_label": "updateuserdto", - "id": "backend_src_admin_dto_user_dto_updateuserdto" + "id": "backend_src_auth_dto_login_dto_logindto", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": "logindto" }, { - "label": "HomeController", + "label": "RegisterDto", "file_type": "code", - "source_file": "backend/src/home/home.controller.ts", - "source_location": "L16", + "source_file": "backend/src/auth/dto/register.dto.ts", + "source_location": "L10", "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 79, - "community_name": "HomeController", - "norm_label": "homecontroller", - "id": "backend_src_home_home_controller_homecontroller" + "id": "backend_src_auth_dto_register_dto_registerdto", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": "registerdto" }, { - "label": "HomeModule", + "label": "SendOtpDto", "file_type": "code", - "source_file": "backend/src/home/home.module.ts", - "source_location": "L9", + "source_file": "backend/src/auth/dto/send-otp.dto.ts", + "source_location": "L4", "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 79, - "community_name": "HomeController", - "norm_label": "homemodule", - "id": "backend_src_home_home_module_homemodule" + "id": "backend_src_auth_dto_send_otp_dto_sendotpdto", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": "sendotpdto" }, { - "label": "HomeService", + "label": "VerifyOtpDto", "file_type": "code", - "source_file": "backend/src/home/home.service.ts", + "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": 104, + "community_name": "auth.controller.ts", + "norm_label": "verifyotpdto" + }, + { + "label": "BlogQuery", + "file_type": "code", + "source_file": "backend/src/admin/blogs.service.ts", "source_location": "L5", "_callable": true, "_callable_class": true, "_origin": "ast", - "community": 79, - "community_name": "HomeController", - "norm_label": "homeservice", - "id": "backend_src_home_home_service_homeservice" - }, - { - "label": "AdminModule", - "file_type": "code", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L44", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": "adminmodule", - "id": "backend_src_admin_admin_module_adminmodule" + "id": "backend_src_admin_blogs_service_blogquery", + "community": 106, + "community_name": "BlogsService", + "norm_label": "blogquery" }, { "label": "BlogsService", @@ -4238,10 +377,3858 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "backend_src_admin_blogs_service_blogsservice", + "community": 106, + "community_name": "BlogsService", + "norm_label": "blogsservice" + }, + { + "label": "BrandLogoProps", + "file_type": "code", + "source_file": "frontend/application/components/BrandLogo.tsx", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_components_brandlogo_brandlogoprops", + "community": 11, + "community_name": "useSettingsStore", + "norm_label": "brandlogoprops" + }, + { + "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": 11, + "community_name": "useSettingsStore", + "norm_label": "tooltipprops" + }, + { + "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": 11, + "community_name": "useSettingsStore", + "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": 11, + "community_name": "useSettingsStore", + "norm_label": "settingsstore" + }, + { + "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": 110, + "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": 110, + "community_name": "AppService", + "norm_label": "appservice" + }, + { + "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": 111, + "community_name": "SmsLogQueryDto", + "norm_label": "smslogquerydto" + }, + { + "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": 112, + "community_name": "WholesaleApplyDto", + "norm_label": "wholesaleapplydto" + }, + { + "label": "ContactInfoItem", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_contactsubmissions_contactinfoitem", + "community": 12, + "community_name": "adminRoutes.tsx", + "norm_label": "contactinfoitem" + }, + { + "label": "ContactSubmission", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_contactsubmissions_contactsubmission", + "community": 12, + "community_name": "adminRoutes.tsx", + "norm_label": "contactsubmission" + }, + { + "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": 12, + "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": 12, + "community_name": "adminRoutes.tsx", + "norm_label": "dashboarddata" + }, + { + "label": "Ticket", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", + "source_location": "L34", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_tickets_ticket", + "community": 12, + "community_name": "adminRoutes.tsx", + "norm_label": "ticket" + }, + { + "label": "TicketMessage", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_tickets_ticketmessage", + "community": 12, + "community_name": "adminRoutes.tsx", + "norm_label": "ticketmessage" + }, + { + "label": "WholesaleRequest", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_wholesaleapplications_wholesalerequest", + "community": 12, + "community_name": "adminRoutes.tsx", + "norm_label": "wholesalerequest" + }, + { + "label": "AdminRouteConfig", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L43", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_adminrouteconfig", + "community": 12, + "community_name": "adminRoutes.tsx", + "norm_label": "adminrouteconfig" + }, + { + "label": "BestSellerItem", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L35", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_reports_bestselleritem", + "community": 124, + "community_name": "Reports.tsx", + "norm_label": "bestselleritem" + }, + { + "label": "CategoryDistItem", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_reports_categorydistitem", + "community": 124, + "community_name": "Reports.tsx", + "norm_label": "categorydistitem" + }, + { + "label": "CustomTooltipProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_reports_customtooltipprops", + "community": 124, + "community_name": "Reports.tsx", + "norm_label": "customtooltipprops" + }, + { + "label": "ReportData", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L46", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_reports_reportdata", + "community": 124, + "community_name": "Reports.tsx", + "norm_label": "reportdata" + }, + { + "label": "TopCouponItem", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L40", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_reports_topcouponitem", + "community": 124, + "community_name": "Reports.tsx", + "norm_label": "topcouponitem" + }, + { + "label": "AdminLoginInput", + "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_adminlogininput", + "community": 13, + "community_name": "PrismaService", + "norm_label": "adminlogininput" + }, + { + "label": "LoginInput", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_auth_auth_service_logininput", + "community": 13, + "community_name": "PrismaService", + "norm_label": "logininput" + }, + { + "label": "RegisterInput", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_auth_auth_service_registerinput", + "community": 13, + "community_name": "PrismaService", + "norm_label": "registerinput" + }, + { + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "community_name": "PrismaService", + "norm_label": "updatecontactinfoitemdto" + }, + { + "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": 13, + "community_name": "PrismaService", + "norm_label": "clientmetadata" + }, + { + "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": 13, + "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": 13, + "community_name": "PrismaService", + "norm_label": "scientifictermdata" + }, + { + "label": "UserAddressInput", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_users_users_service_useraddressinput", + "community": 13, + "community_name": "PrismaService", + "norm_label": "useraddressinput" + }, + { + "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": 13, + "community_name": "PrismaService", + "norm_label": "videoquery" + }, + { + "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": 134, + "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": 134, + "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": 134, + "community_name": "ErrorBoundary", + "norm_label": "state" + }, + { + "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", + "id": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", + "community": 137, + "community_name": "AdminTransactionFilterDto", + "norm_label": "admintransactionfilterdto" + }, + { + "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": 138, + "community_name": "InitiatePaymentDto", + "norm_label": "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", + "id": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", + "community": 138, + "community_name": "InitiatePaymentDto", + "norm_label": "initiatewallettopupdto" + }, + { + "label": "BlogsController", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_blogs_blogs_controller_blogscontroller", + "community": 14, + "community_name": "BlogsController", + "norm_label": "blogscontroller" + }, + { + "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": 141, + "community_name": "WikiController", + "norm_label": "wikicontroller" + }, + { + "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": 141, + "community_name": "WikiController", + "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": 141, + "community_name": "WikiController", + "norm_label": "wikiservice" + }, + { + "label": "ProductReview", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_reviews_productreview", + "community": 145, + "community_name": "Spinner.tsx", + "norm_label": "productreview" + }, + { + "label": "PatternItem", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L55", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_smssettingspage_patternitem", + "community": 145, + "community_name": "Spinner.tsx", + "norm_label": "patternitem" + }, + { + "label": "SmsConfigState", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L43", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_smssettingspage_smsconfigstate", + "community": 145, + "community_name": "Spinner.tsx", + "norm_label": "smsconfigstate" + }, + { + "label": "SmsLogItem", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L64", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_smssettingspage_smslogitem", + "community": 145, + "community_name": "Spinner.tsx", + "norm_label": "smslogitem" + }, + { + "label": "SmsLogStats", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L77", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_smssettingspage_smslogstats", + "community": 145, + "community_name": "Spinner.tsx", + "norm_label": "smslogstats" + }, + { + "label": "SslStatus", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_sslsettingspage_sslstatus", + "community": 145, + "community_name": "Spinner.tsx", + "norm_label": "sslstatus" + }, + { + "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": 145, + "community_name": "Spinner.tsx", + "norm_label": "seosettings" + }, + { + "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", + "id": "backend_src_products_dto_get_products_dto_getproductsdto", + "community": 15, + "community_name": "ProductsService", + "norm_label": "getproductsdto" + }, + { + "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": 15, + "community_name": "ProductsService", + "norm_label": "productscontroller" + }, + { + "label": "ProductsModule", + "file_type": "code", + "source_file": "backend/src/products/products.module.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_products_products_module_productsmodule", + "community": 15, + "community_name": "ProductsService", + "norm_label": "productsmodule" + }, + { + "label": "ProductsService", + "file_type": "code", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_products_products_service_productsservice", + "community": 15, + "community_name": "ProductsService", + "norm_label": "productsservice" + }, + { + "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": 16, + "community_name": "lib/services/api.ts", + "norm_label": "contactinfoitem" + }, + { + "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": 16, + "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": 16, + "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": 16, + "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": 16, + "community_name": "lib/services/api.ts", + "norm_label": "authresponse" + }, + { + "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": 16, + "community_name": "lib/services/api.ts", + "norm_label": "authservice" + }, + { + "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": 16, + "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": 16, + "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": 16, + "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": 16, + "community_name": "lib/services/api.ts", + "norm_label": "orderitem" + }, + { + "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": 16, + "community_name": "lib/services/api.ts", + "norm_label": "orderservice" + }, + { + "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": 160, + "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": 160, + "community_name": "paginated-response.schema.ts", + "norm_label": "paginationmeta" + }, + { + "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": 17, + "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": 17, + "community_name": "CreateVideoDto", + "norm_label": "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", + "id": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", + "community": 17, + "community_name": "CreateVideoDto", + "norm_label": "getvideosquerydto" + }, + { + "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": 17, + "community_name": "CreateVideoDto", + "norm_label": "videoscontroller" + }, + { + "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": 17, + "community_name": "CreateVideoDto", + "norm_label": "videosmodule" + }, + { + "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": 17, + "community_name": "CreateVideoDto", + "norm_label": "videosservice" + }, + { + "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": 174, + "community_name": "ZibalCallbackQueryDto", + "norm_label": "zibalcallbackquerydto" + }, + { + "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": 177, + "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": 177, + "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": 178, + "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": 178, + "community_name": "update-home.dto.ts", + "norm_label": "updatehomedto" + }, + { + "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": 179, + "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": 179, + "community_name": "update-wiki.dto.ts", + "norm_label": "updatewikidto" + }, + { + "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": 18, + "community_name": "src/services/api.ts", + "norm_label": "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", + "id": "frontend_admin_panel_src_services_api_apierrorpayload", + "community": 18, + "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": 18, + "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": 18, + "community_name": "src/services/api.ts", + "norm_label": "adminuser" + }, + { + "label": "ApiResponse", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L41", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_types_admin_apiresponse", + "community": 18, + "community_name": "src/services/api.ts", + "norm_label": "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", + "id": "frontend_admin_panel_src_types_admin_authresponsedata", + "community": 18, + "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": 18, + "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": 18, + "community_name": "src/services/api.ts", + "norm_label": "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", + "id": "frontend_admin_panel_src_types_admin_partneraccount", + "community": 18, + "community_name": "src/services/api.ts", + "norm_label": "partneraccount" + }, + { + "label": "Product", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L202", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_types_admin_product", + "community": 18, + "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": 18, + "community_name": "src/services/api.ts", + "norm_label": "sendotppayload" + }, + { + "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": 18, + "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": "L194", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_types_admin_systemsettings", + "community": 18, + "community_name": "src/services/api.ts", + "norm_label": "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", + "id": "frontend_admin_panel_src_types_admin_verifyotppayload", + "community": 18, + "community_name": "src/services/api.ts", + "norm_label": "verifyotppayload" + }, + { + "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": 185, + "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": 185, + "community_name": "Select.tsx", + "norm_label": "selectprops" + }, + { + "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", + "id": "backend_src_pets_dto_create_pet_dto_createpetdto", + "community": 19, + "community_name": "pets/pets.controller.ts", + "norm_label": "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", + "id": "backend_src_pets_dto_update_pet_dto_updatepetdto", + "community": 19, + "community_name": "pets/pets.controller.ts", + "norm_label": "updatepetdto" + }, + { + "label": "PetsModule", + "file_type": "code", + "source_file": "backend/src/pets/pets.module.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_pets_pets_module_petsmodule", + "community": 19, + "community_name": "pets/pets.controller.ts", + "norm_label": "petsmodule" + }, + { + "label": "HealthLogInput", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_pets_pets_service_healthloginput", + "community": 19, + "community_name": "pets/pets.controller.ts", + "norm_label": "healthloginput" + }, + { + "label": "PetsService", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_pets_pets_service_petsservice", + "community": 19, + "community_name": "pets/pets.controller.ts", + "norm_label": "petsservice" + }, + { + "label": "ReminderInput", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_pets_pets_service_reminderinput", + "community": 19, + "community_name": "pets/pets.controller.ts", + "norm_label": "reminderinput" + }, + { + "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": 196, + "community_name": "prisma/scientificTerms.ts", + "norm_label": "scientificterm" + }, + { + "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": 2, + "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": 2, + "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": 2, + "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": 2, + "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": 2, + "community_name": "CmsController", + "norm_label": "createvettestimonialdto" + }, + { + "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": 21, + "community_name": "Roles", + "norm_label": "settingscontroller" + }, + { + "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": 216, + "community_name": "FormField.tsx", + "norm_label": "formfieldprops" + }, + { + "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": 217, + "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": 218, + "community_name": "Textarea.tsx", + "norm_label": "textareaprops" + }, + { + "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": 243, + "community_name": "MetricsController", + "norm_label": "metricscontroller" + }, + { + "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": 244, + "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": 245, + "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": 246, + "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": 259, + "community_name": "vitest.setup.ts", + "norm_label": "mockintersectionobserver" + }, + { + "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": 29, + "community_name": "WholesaleService", + "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": 29, + "community_name": "WholesaleService", + "norm_label": "wholesaleservice" + }, + { + "label": "B2BModule", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.module.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_b2b_b2b_module_b2bmodule", + "community": 3, + "community_name": "app.module.ts", + "norm_label": "b2bmodule" + }, + { + "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": 3, + "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": 3, + "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": 3, + "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": 3, + "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": 3, + "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": 3, + "community_name": "app.module.ts", + "norm_label": "ingredientsmodule" + }, + { + "label": "PaymentModule", + "file_type": "code", + "source_file": "backend/src/payment/payment.module.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_payment_payment_module_paymentmodule", + "community": 3, + "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": 3, + "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": 3, + "community_name": "app.module.ts", + "norm_label": "prismamodule" + }, + { + "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": 3, + "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": 3, + "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": 3, + "community_name": "app.module.ts", + "norm_label": "testimonialsmodule" + }, + { + "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": 3, + "community_name": "app.module.ts", + "norm_label": "ticketsmodule" + }, + { + "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": 3, + "community_name": "app.module.ts", + "norm_label": "wholesalemodule" + }, + { + "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": 30, + "community_name": "main.ts", + "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": 30, + "community_name": "main.ts", + "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": 30, + "community_name": "main.ts", + "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": 30, + "community_name": "main.ts", + "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": 30, + "community_name": "main.ts", + "norm_label": "errordetailfield" + }, + { + "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": 31, + "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": 31, + "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": 31, + "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": 31, + "community_name": "JwtAuthGuard", + "norm_label": "userreqpayload" + }, + { + "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": 32, + "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": 32, + "community_name": "ZibalService", + "norm_label": "zibalservice" + }, + { + "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": 34, + "community_name": "CategoriesController", + "norm_label": "categoriescontroller" + }, + { + "label": "CategoriesService", + "file_type": "code", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_admin_categories_service_categoriesservice", + "community": 34, + "community_name": "CategoriesController", + "norm_label": "categoriesservice" + }, + { + "label": "CategoryQuery", + "file_type": "code", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_admin_categories_service_categoryquery", + "community": 34, + "community_name": "CategoriesController", + "norm_label": "categoryquery" + }, + { + "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": 35, + "community_name": "B2BService", + "norm_label": "b2bcontroller" + }, + { + "label": "B2BService", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_b2b_b2b_service_b2bservice", + "community": 35, + "community_name": "B2BService", + "norm_label": "b2bservice" + }, + { + "label": "B2BWholesaleOrderItem", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_b2b_b2b_service_b2bwholesaleorderitem", + "community": 35, + "community_name": "B2BService", + "norm_label": "b2bwholesaleorderitem" + }, + { + "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": 37, + "community_name": "userStore.ts", + "norm_label": "authmodalprops" + }, + { + "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": 37, + "community_name": "userStore.ts", + "norm_label": "prescriptionuploadmodalprops" + }, + { + "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": 37, + "community_name": "userStore.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": 37, + "community_name": "userStore.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": 37, + "community_name": "userStore.ts", + "norm_label": "order" + }, + { + "label": "UIState", + "file_type": "code", + "source_file": "frontend/application/lib/store/uiStore.ts", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_lib_store_uistore_uistate", + "community": 37, + "community_name": "userStore.ts", + "norm_label": "uistate" + }, + { + "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": 37, + "community_name": "userStore.ts", + "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": 37, + "community_name": "userStore.ts", + "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": 37, + "community_name": "userStore.ts", + "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": 37, + "community_name": "userStore.ts", + "norm_label": "userstore" + }, + { + "label": "NavigationTarget", + "file_type": "code", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L109", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_lib_types_navigationtarget", + "community": 37, + "community_name": "userStore.ts", + "norm_label": "navigationtarget" + }, + { + "label": "AuthModule", + "file_type": "code", + "source_file": "backend/src/auth/auth.module.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_auth_auth_module_authmodule", + "community": 38, + "community_name": "UsersService", + "norm_label": "authmodule" + }, + { + "label": "JwtPayload", + "file_type": "code", + "source_file": "backend/src/auth/jwt.strategy.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_auth_jwt_strategy_jwtpayload", + "community": 38, + "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": 38, + "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": 38, + "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": 38, + "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": 38, + "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": 38, + "community_name": "UsersService", + "norm_label": "usersmodule" + }, + { + "label": "UsersService", + "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": 38, + "community_name": "UsersService", + "norm_label": "usersservice" + }, + { + "label": "CreateReviewDto", + "file_type": "code", + "source_file": "backend/src/reviews/dto/create-review.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_reviews_dto_create_review_dto_createreviewdto", + "community": 4, + "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": 4, + "community_name": "reviews.controller.ts", + "norm_label": "updatereviewdto" + }, + { + "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": 4, + "community_name": "reviews.controller.ts", + "norm_label": "reviewscontroller" + }, + { + "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": 4, + "community_name": "reviews.controller.ts", + "norm_label": "reviewsmodule" + }, + { + "label": "ReviewsService", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_reviews_reviews_service_reviewsservice", + "community": 4, + "community_name": "reviews.controller.ts", + "norm_label": "reviewsservice" + }, + { + "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": 40, + "community_name": "SslController", + "norm_label": "sslcontroller" + }, + { + "label": "SslService", + "file_type": "code", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_admin_ssl_service_sslservice", + "community": 40, + "community_name": "SslController", + "norm_label": "sslservice" + }, + { + "label": "PodcastPlayerModalProps", + "file_type": "code", + "source_file": "frontend/application/components/PodcastPlayerModal.tsx", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_components_podcastplayermodal_podcastplayermodalprops", + "community": 41, + "community_name": "PodcastPlayerModal.tsx", + "norm_label": "podcastplayermodalprops" + }, + { + "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": 42, + "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": 42, + "community_name": "IngredientsService", + "norm_label": "ingredientsservice" + }, + { + "label": "AppModule", + "file_type": "code", + "source_file": "backend/src/app.module.ts", + "source_location": "L83", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_app_module_appmodule", + "community": 43, + "community_name": "RedisService", + "norm_label": "appmodule" + }, + { + "label": "AuthService", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L32", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_auth_auth_service_authservice", + "community": 43, + "community_name": "RedisService", + "norm_label": "authservice" + }, + { + "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": 43, + "community_name": "RedisService", + "norm_label": "redisservice" + }, + { + "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": 44, + "community_name": "MediaController", + "norm_label": "mediacontroller" + }, + { + "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": 44, + "community_name": "MediaController", + "norm_label": "mediaservice" + }, + { + "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": 45, + "community_name": "Pagination.tsx", + "norm_label": "paginationprops" + }, + { + "label": "Pet", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Pets.tsx", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_pets_pet", + "community": 45, + "community_name": "Pagination.tsx", + "norm_label": "pet" + }, + { + "label": "GatewayHealth", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L79", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_transactions_gatewayhealth", + "community": 45, + "community_name": "Pagination.tsx", + "norm_label": "gatewayhealth" + }, + { + "label": "Stats", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L69", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_transactions_stats", + "community": 45, + "community_name": "Pagination.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": 45, + "community_name": "Pagination.tsx", + "norm_label": "transaction" + }, + { + "label": "ProductItem", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_wiki_productitem", + "community": 45, + "community_name": "Pagination.tsx", + "norm_label": "productitem" + }, + { + "label": "WikiTerm", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_wiki_wikiterm", + "community": 45, + "community_name": "Pagination.tsx", + "norm_label": "wikiterm" + }, + { + "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": 46, + "community_name": "SmsService", + "norm_label": "smsservice" + }, + { + "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": 47, + "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": 47, + "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": 47, + "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": 47, + "community_name": "OrdersService", + "norm_label": "ordersservice" + }, + { + "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": 48, + "community_name": "PrescriptionsService", + "norm_label": "prescriptionscontroller" + }, + { + "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": 48, + "community_name": "PrescriptionsService", + "norm_label": "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", + "id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", + "community": 49, + "community_name": "SmartAdvisorService", + "norm_label": "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", + "id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", + "community": 49, + "community_name": "SmartAdvisorService", + "norm_label": "smartadvisorservice" + }, + { + "label": "AdminUpdateTicketDto", + "file_type": "code", + "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", + "source_location": "L53", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": "adminupdateticketdto" + }, + { + "label": "CreateTicketDto", + "file_type": "code", + "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_tickets_dto_create_ticket_dto_createticketdto", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": "createticketdto" + }, + { + "label": "ReplyTicketDto", + "file_type": "code", + "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", + "source_location": "L36", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", + "community": 5, + "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": 5, + "community_name": "tickets.controller.ts", + "norm_label": "ticketquerydto" + }, + { + "label": "TicketsController", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_tickets_tickets_controller_ticketscontroller", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": "ticketscontroller" + }, + { + "label": "TicketsService", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_tickets_tickets_service_ticketsservice", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": "ticketsservice" + }, + { + "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": 50, + "community_name": "TestimonialsService", + "norm_label": "testimonialscontroller" + }, + { + "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": 50, + "community_name": "TestimonialsService", + "norm_label": "testimonialsservice" + }, + { + "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": 52, + "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": 52, + "community_name": "ContactService", + "norm_label": "contactservice" + }, + { + "label": "PaymentController", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L38", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_payment_payment_controller_paymentcontroller", + "community": 53, + "community_name": "PaymentController", + "norm_label": "paymentcontroller" + }, + { + "label": "BadgeProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/Badge.tsx", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_components_ui_badge_badgeprops", + "community": 55, + "community_name": "Media.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": 55, + "community_name": "Media.tsx", + "norm_label": "badgevariant" + }, + { + "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": "Media.tsx", + "norm_label": "imagepreviewmodalprops" + }, + { + "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", + "id": "frontend_admin_panel_src_components_ui_toggleswitch_toggleswitchprops", + "community": 55, + "community_name": "Media.tsx", + "norm_label": "toggleswitchprops" + }, + { + "label": "Media", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Media.tsx", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_media_media", + "community": 55, + "community_name": "Media.tsx", + "norm_label": "media" + }, + { + "label": "ProductItem", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_prescriptionsmanager_productitem", + "community": 55, + "community_name": "Media.tsx", + "norm_label": "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", + "id": "frontend_admin_panel_src_types_admin_prescription", + "community": 55, + "community_name": "Media.tsx", + "norm_label": "prescription" + }, + { + "label": "PetsController", + "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": 57, + "community_name": "PetsController", + "norm_label": "petscontroller" + }, + { + "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": 58, + "community_name": "PaginationDto", + "norm_label": "blogsmodule" + }, + { + "label": "BlogsService", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_blogs_blogs_service_blogsservice", + "community": 58, + "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": 58, + "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": 58, + "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": 58, + "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": 58, + "community_name": "PaginationDto", + "norm_label": "ordersmodule" + }, + { + "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": 6, + "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": 6, + "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": 6, + "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": 6, + "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": 6, + "community_name": "UserDashboard.tsx", + "norm_label": "loginmodalprops" + }, + { + "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": 6, + "community_name": "UserDashboard.tsx", + "norm_label": "orderdetailsmodalprops" + }, + { + "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": 6, + "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": 6, + "community_name": "UserDashboard.tsx", + "norm_label": "topupmodalprops" + }, + { + "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": 6, + "community_name": "UserDashboard.tsx", + "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": 6, + "community_name": "UserDashboard.tsx", + "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": 6, + "community_name": "UserDashboard.tsx", + "norm_label": "ticketmessage" + }, + { + "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": 6, + "community_name": "UserDashboard.tsx", + "norm_label": "address" + }, + { + "label": "HomeClientProps", + "file_type": "code", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_app_homeclient_homeclientprops", + "community": 61, + "community_name": "HomeClient.tsx", + "norm_label": "homeclientprops" + }, + { + "label": "BannerPlacementProps", + "file_type": "code", + "source_file": "frontend/application/components/BannerPlacement.tsx", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_components_bannerplacement_bannerplacementprops", + "community": 61, + "community_name": "HomeClient.tsx", + "norm_label": "bannerplacementprops" + }, + { + "label": "B2BInquiry", + "file_type": "code", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L67", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_lib_types_b2binquiry", + "community": 61, + "community_name": "HomeClient.tsx", + "norm_label": "b2binquiry" + }, + { + "label": "Banner", + "file_type": "code", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L1", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_lib_types_banner", + "community": 61, + "community_name": "HomeClient.tsx", + "norm_label": "banner" + }, + { + "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": 61, + "community_name": "HomeClient.tsx", + "norm_label": "dosageconfig" + }, + { + "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": 61, + "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": 61, + "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": 61, + "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": 61, + "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": 61, + "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": 61, + "community_name": "HomeClient.tsx", + "norm_label": "testimonial" + }, + { + "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": 62, + "community_name": "BlogsController", + "norm_label": "blogscontroller" + }, + { + "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": 63, + "community_name": "SettingsService", + "norm_label": "smslogquery" + }, + { + "label": "SettingsService", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L86", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice", + "community": 63, + "community_name": "SettingsService", + "norm_label": "settingsservice" + }, + { + "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": 64, + "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": 64, + "community_name": "BannersService", + "norm_label": "bannersservice" + }, + { + "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": 66, + "community_name": "Coupons.tsx", + "norm_label": "priceinputprops" + }, + { + "label": "Coupon", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_coupons_coupon", + "community": 66, + "community_name": "Coupons.tsx", + "norm_label": "coupon" + }, + { + "label": "CouponFormData", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_coupons_couponformdata", + "community": 66, + "community_name": "Coupons.tsx", + "norm_label": "couponformdata" + }, + { + "label": "CouponModalProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L250", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_coupons_couponmodalprops", + "community": 66, + "community_name": "Coupons.tsx", + "norm_label": "couponmodalprops" + }, + { + "label": "CouponTarget", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_coupons_coupontarget", + "community": 66, + "community_name": "Coupons.tsx", + "norm_label": "coupontarget" + }, + { + "label": "Category", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Products.tsx", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_products_category", + "community": 66, + "community_name": "Coupons.tsx", + "norm_label": "category" + }, + { + "label": "Product", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Products.tsx", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_products_product", + "community": 66, + "community_name": "Coupons.tsx", + "norm_label": "product" + }, + { + "label": "FinancialSettings", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L186", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_types_admin_financialsettings", + "community": 66, + "community_name": "Coupons.tsx", + "norm_label": "financialsettings" + }, + { + "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": 69, + "community_name": "WikiController", + "norm_label": "wikicontroller" + }, + { + "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": 7, + "community_name": "MediaSelector.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": 7, + "community_name": "MediaSelector.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": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "mediaselectorprops" + }, + { + "label": "BlogPost", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_blogs_blogpost", + "community": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "blogpost" + }, + { + "label": "Category", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Categories.tsx", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_categories_category", + "community": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "category" + }, + { + "label": "HeroBanner", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/CMS.tsx", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_cms_herobanner", + "community": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "herobanner" + }, + { + "label": "VetTestimonial", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/CMS.tsx", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_cms_vettestimonial", + "community": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "vettestimonial" + }, + { + "label": "Doctor", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_doctorsmanager_doctor", + "community": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "doctor" + }, + { + "label": "DoctorOption", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Videos.tsx", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_videos_doctoroption", + "community": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "doctoroption" + }, + { + "label": "Video", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Videos.tsx", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_videos_video", + "community": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "video" + }, + { + "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": 7, + "community_name": "MediaSelector.tsx", + "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": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "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", + "id": "frontend_admin_panel_src_types_admin_testimonial", + "community": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "testimonial" + }, + { + "label": "AdminQueryDto", + "file_type": "code", + "source_file": "backend/src/admin/dto/admin-query.dto.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_admin_dto_admin_query_dto_adminquerydto", + "community": 70, + "community_name": "AdminQueryDto", + "norm_label": "adminquerydto" + }, + { + "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": 71, + "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": 71, + "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": 71, + "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": 72, + "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": 72, + "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": 72, + "community_name": "seo.module.ts", + "norm_label": "seoservice" + }, + { + "label": "CouponInput", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L37", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_couponinput", + "community": 73, + "community_name": "admin.service.ts", + "norm_label": "couponinput" + }, + { + "label": "CouponTargetInput", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_coupontargetinput", + "community": 73, + "community_name": "admin.service.ts", + "norm_label": "coupontargetinput" + }, + { + "label": "PaginationQuery", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_paginationquery", + "community": 73, + "community_name": "admin.service.ts", + "norm_label": "paginationquery" + }, + { + "label": "CreateUserDto", + "file_type": "code", + "source_file": "backend/src/admin/dto/user.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_admin_dto_user_dto_createuserdto", + "community": 73, + "community_name": "admin.service.ts", + "norm_label": "createuserdto" + }, + { + "label": "UpdateUserDto", + "file_type": "code", + "source_file": "backend/src/admin/dto/user.dto.ts", + "source_location": "L42", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_admin_dto_user_dto_updateuserdto", + "community": 73, + "community_name": "admin.service.ts", + "norm_label": "updateuserdto" + }, + { + "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": 79, + "community_name": "HomeController", + "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": 79, + "community_name": "HomeController", + "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": 79, + "community_name": "HomeController", + "norm_label": "homeservice" + }, + { + "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": "blogsservice", - "id": "backend_src_admin_blogs_service_blogsservice" + "norm_label": "adminmodule" + }, + { + "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": 8, + "community_name": "admin.module.ts", + "norm_label": "petquery" + }, + { + "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": 8, + "community_name": "admin.module.ts", + "norm_label": "petsservice" }, { "label": "ReportsController", @@ -4251,10 +4238,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "backend_src_admin_reports_controller_reportscontroller", "community": 8, "community_name": "admin.module.ts", - "norm_label": "reportscontroller", - "id": "backend_src_admin_reports_controller_reportscontroller" + "norm_label": "reportscontroller" }, { "label": "ReportsService", @@ -4264,10 +4251,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "backend_src_admin_reports_service_reportsservice", "community": 8, "community_name": "admin.module.ts", - "norm_label": "reportsservice", - "id": "backend_src_admin_reports_service_reportsservice" + "norm_label": "reportsservice" }, { "label": "SslCertInfo", @@ -4277,10 +4264,23 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "backend_src_admin_ssl_service_sslcertinfo", "community": 8, "community_name": "admin.module.ts", - "norm_label": "sslcertinfo", - "id": "backend_src_admin_ssl_service_sslcertinfo" + "norm_label": "sslcertinfo" + }, + { + "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": 8, + "community_name": "admin.module.ts", + "norm_label": "wikiquery" }, { "label": "WikiService", @@ -4290,10 +4290,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "backend_src_admin_wiki_service_wikiservice", "community": 8, "community_name": "admin.module.ts", - "norm_label": "wikiservice", - "id": "backend_src_admin_wiki_service_wikiservice" + "norm_label": "wikiservice" }, { "label": "RedisModule", @@ -4303,10 +4303,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "backend_src_redis_redis_module_redismodule", "community": 8, "community_name": "admin.module.ts", - "norm_label": "redismodule", - "id": "backend_src_redis_redis_module_redismodule" + "norm_label": "redismodule" }, { "label": "GatewayHealthResult", @@ -4316,10 +4316,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "backend_src_payment_interfaces_payment_gateway_interface_gatewayhealthresult", "community": 80, "community_name": "zibal.service.ts", - "norm_label": "gatewayhealthresult", - "id": "backend_src_payment_interfaces_payment_gateway_interface_gatewayhealthresult" + "norm_label": "gatewayhealthresult" }, { "label": "IPaymentGateway", @@ -4329,10 +4329,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", "community": 80, "community_name": "zibal.service.ts", - "norm_label": "ipaymentgateway", - "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway" + "norm_label": "ipaymentgateway" }, { "label": "PaymentInquiryResult", @@ -4342,10 +4342,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "backend_src_payment_interfaces_payment_gateway_interface_paymentinquiryresult", "community": 80, "community_name": "zibal.service.ts", - "norm_label": "paymentinquiryresult", - "id": "backend_src_payment_interfaces_payment_gateway_interface_paymentinquiryresult" + "norm_label": "paymentinquiryresult" }, { "label": "PaymentRequestOptions", @@ -4355,10 +4355,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestoptions", "community": 80, "community_name": "zibal.service.ts", - "norm_label": "paymentrequestoptions", - "id": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestoptions" + "norm_label": "paymentrequestoptions" }, { "label": "PaymentRequestResult", @@ -4368,10 +4368,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestresult", "community": 80, "community_name": "zibal.service.ts", - "norm_label": "paymentrequestresult", - "id": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestresult" + "norm_label": "paymentrequestresult" }, { "label": "PaymentVerifyResult", @@ -4381,10 +4381,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "backend_src_payment_interfaces_payment_gateway_interface_paymentverifyresult", "community": 80, "community_name": "zibal.service.ts", - "norm_label": "paymentverifyresult", - "id": "backend_src_payment_interfaces_payment_gateway_interface_paymentverifyresult" + "norm_label": "paymentverifyresult" }, { "label": "ZibalInquiryResponse", @@ -4394,10 +4394,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "backend_src_payment_zibal_service_zibalinquiryresponse", "community": 80, "community_name": "zibal.service.ts", - "norm_label": "zibalinquiryresponse", - "id": "backend_src_payment_zibal_service_zibalinquiryresponse" + "norm_label": "zibalinquiryresponse" }, { "label": "ZibalRequestResponse", @@ -4407,10 +4407,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "backend_src_payment_zibal_service_zibalrequestresponse", "community": 80, "community_name": "zibal.service.ts", - "norm_label": "zibalrequestresponse", - "id": "backend_src_payment_zibal_service_zibalrequestresponse" + "norm_label": "zibalrequestresponse" }, { "label": "ZibalVerifyResponse", @@ -4420,10 +4420,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "backend_src_payment_zibal_service_zibalverifyresponse", "community": 80, "community_name": "zibal.service.ts", - "norm_label": "zibalverifyresponse", - "id": "backend_src_payment_zibal_service_zibalverifyresponse" + "norm_label": "zibalverifyresponse" }, { "label": "MenuGroup", @@ -4433,10 +4433,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "frontend_admin_panel_src_components_sidebar_menugroup", "community": 82, "community_name": "api", - "norm_label": "menugroup", - "id": "frontend_admin_panel_src_components_sidebar_menugroup" + "norm_label": "menugroup" }, { "label": "SidebarProps", @@ -4446,10 +4446,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "frontend_admin_panel_src_components_sidebar_sidebarprops", "community": 82, "community_name": "api", - "norm_label": "sidebarprops", - "id": "frontend_admin_panel_src_components_sidebar_sidebarprops" + "norm_label": "sidebarprops" }, { "label": "SubMenuItem", @@ -4459,10 +4459,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "frontend_admin_panel_src_components_sidebar_submenuitem", "community": 82, "community_name": "api", - "norm_label": "submenuitem", - "id": "frontend_admin_panel_src_components_sidebar_submenuitem" + "norm_label": "submenuitem" }, { "label": "Order", @@ -4511,10 +4511,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "frontend_admin_panel_src_pages_users_userrecord", "community": 83, "community_name": "Orders.tsx", - "norm_label": "userrecord", - "id": "frontend_admin_panel_src_pages_users_userrecord" + "norm_label": "userrecord" }, { "label": "PetSummary", @@ -4524,10 +4524,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "frontend_admin_panel_src_types_admin_petsummary", "community": 83, "community_name": "Orders.tsx", - "norm_label": "petsummary", - "id": "frontend_admin_panel_src_types_admin_petsummary" + "norm_label": "petsummary" }, { "label": "UserAddress", @@ -4537,10 +4537,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "frontend_admin_panel_src_types_admin_useraddress", "community": 83, "community_name": "Orders.tsx", - "norm_label": "useraddress", - "id": "frontend_admin_panel_src_types_admin_useraddress" + "norm_label": "useraddress" }, { "label": "SkeletonProps", @@ -4550,10 +4550,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "frontend_application_components_skeleton_skeletonprops", "community": 9, "community_name": "PetProfile.tsx", - "norm_label": "skeletonprops", - "id": "frontend_application_components_skeleton_skeletonprops" + "norm_label": "skeletonprops" }, { "label": "HealthLog", @@ -4563,10 +4563,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "frontend_application_lib_store_usepetstore_healthlog", "community": 9, "community_name": "PetProfile.tsx", - "norm_label": "healthlog", - "id": "frontend_application_lib_store_usepetstore_healthlog" + "norm_label": "healthlog" }, { "label": "PetConsumption", @@ -4576,10 +4576,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "frontend_application_lib_store_usepetstore_petconsumption", "community": 9, "community_name": "PetProfile.tsx", - "norm_label": "petconsumption", - "id": "frontend_application_lib_store_usepetstore_petconsumption" + "norm_label": "petconsumption" }, { "label": "PetProfile", @@ -4589,10 +4589,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "frontend_application_lib_store_usepetstore_petprofile", "community": 9, "community_name": "PetProfile.tsx", - "norm_label": "petprofile", - "id": "frontend_application_lib_store_usepetstore_petprofile" + "norm_label": "petprofile" }, { "label": "PetStore", @@ -4602,10 +4602,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "frontend_application_lib_store_usepetstore_petstore", "community": 9, "community_name": "PetProfile.tsx", - "norm_label": "petstore", - "id": "frontend_application_lib_store_usepetstore_petstore" + "norm_label": "petstore" }, { "label": "Reminder", @@ -4615,10 +4615,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "frontend_application_lib_store_usepetstore_reminder", "community": 9, "community_name": "PetProfile.tsx", - "norm_label": "reminder", - "id": "frontend_application_lib_store_usepetstore_reminder" + "norm_label": "reminder" }, { "label": "ProductDetailModalProps", @@ -4628,10 +4628,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "frontend_application_components_catalog_productdetailmodal_productdetailmodalprops", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "productdetailmodalprops", - "id": "frontend_application_components_catalog_productdetailmodal_productdetailmodalprops" + "norm_label": "productdetailmodalprops" }, { "label": "PodcastInlinePlayerProps", @@ -4641,10 +4641,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "frontend_application_components_podcastinlineplayer_podcastinlineplayerprops", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "podcastinlineplayerprops", - "id": "frontend_application_components_podcastinlineplayer_podcastinlineplayerprops" + "norm_label": "podcastinlineplayerprops" }, { "label": "CalculatorState", @@ -4654,10 +4654,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "frontend_application_components_productpage_calculatorstate", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "calculatorstate", - "id": "frontend_application_components_productpage_calculatorstate" + "norm_label": "calculatorstate" }, { "label": "ProductReviewsProps", @@ -4667,10 +4667,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "frontend_application_components_productreviews_productreviewsprops", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "productreviewsprops", - "id": "frontend_application_components_productreviews_productreviewsprops" + "norm_label": "productreviewsprops" }, { "label": "ReviewItem", @@ -4680,10 +4680,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "frontend_application_components_productreviews_reviewitem", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "reviewitem", - "id": "frontend_application_components_productreviews_reviewitem" + "norm_label": "reviewitem" }, { "label": "SafeImageProps", @@ -4693,10 +4693,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "frontend_application_components_safeimage_safeimageprops", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "safeimageprops", - "id": "frontend_application_components_safeimage_safeimageprops" + "norm_label": "safeimageprops" }, { "label": "DisplayVideoItem", @@ -4706,10 +4706,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "frontend_application_components_vetgallery_displayvideoitem", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "displayvideoitem", - "id": "frontend_application_components_vetgallery_displayvideoitem" + "norm_label": "displayvideoitem" }, { "label": "TestimonialItem", @@ -4719,10 +4719,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "frontend_application_components_vetgallery_testimonialitem", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "testimonialitem", - "id": "frontend_application_components_vetgallery_testimonialitem" + "norm_label": "testimonialitem" }, { "label": "VideoModalPlayerProps", @@ -4732,10 +4732,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "frontend_application_components_videomodalplayer_videomodalplayerprops", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "videomodalplayerprops", - "id": "frontend_application_components_videomodalplayer_videomodalplayerprops" + "norm_label": "videomodalplayerprops" }, { "label": "ScientificTerm", @@ -4745,10 +4745,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "frontend_application_lib_data_scientificterms_scientificterm", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "scientificterm", - "id": "frontend_application_lib_data_scientificterms_scientificterm" + "norm_label": "scientificterm" }, { "label": "Video", @@ -4758,59 +4758,23 @@ "_callable": true, "_callable_class": true, "_origin": "ast", + "id": "frontend_application_lib_services_videoservice_video", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "video", - "id": "frontend_application_lib_services_videoservice_video" + "norm_label": "video" }, { - "label": "OrdersService", + "label": "AdminController", "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L14", + "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": 98, - "community_name": "OrdersService", - "norm_label": "ordersservice", - "id": "backend_src_orders_orders_service_ordersservice" - }, - { - "label": ".adjustWallet()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L100", - "_callable": true, - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "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": 0, - "community_name": "AdminService", - "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": "L190", - "_callable": true, - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": ".createcoupon()", - "id": "backend_src_admin_admin_controller_admincontroller_createcoupon" + "community_name": "AdminController", + "norm_label": "admincontroller" }, { "label": ".createDoctor()", @@ -4819,106 +4783,22 @@ "source_location": "L228", "_callable": true, "_origin": "ast", + "id": "backend_src_admin_admin_controller_admincontroller_createdoctor", "community": 0, - "community_name": "AdminService", - "norm_label": ".createdoctor()", - "id": "backend_src_admin_admin_controller_admincontroller_createdoctor" + "community_name": "ApiOperation", + "norm_label": ".createdoctor()" }, { - "label": ".createProduct()", + "label": ".getSettings()", "file_type": "code", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L131", + "source_location": "L268", "_callable": true, "_origin": "ast", + "id": "backend_src_admin_admin_controller_admincontroller_getsettings", "community": 0, - "community_name": "AdminService", - "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": 0, - "community_name": "AdminService", - "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": "L214", - "_callable": true, - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "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": "L261", - "_callable": true, - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "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": "L148", - "_callable": true, - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "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": "L83", - "_callable": true, - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": ".deleteuser()", - "id": "backend_src_admin_admin_controller_admincontroller_deleteuser" - }, - { - "label": ".getDoctors()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L221", - "_callable": true, - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": ".getdoctors()", - "id": "backend_src_admin_admin_controller_admincontroller_getdoctors" - }, - { - "label": ".getUserDetails()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L62", - "_callable": true, - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": ".getuserdetails()", - "id": "backend_src_admin_admin_controller_admincontroller_getuserdetails" + "community_name": "ApiOperation", + "norm_label": ".getsettings()" }, { "label": ".toggleCoupon()", @@ -4927,10 +4807,10 @@ "source_location": "L204", "_callable": true, "_origin": "ast", + "id": "backend_src_admin_admin_controller_admincontroller_togglecoupon", "community": 0, - "community_name": "AdminService", - "norm_label": ".togglecoupon()", - "id": "backend_src_admin_admin_controller_admincontroller_togglecoupon" + "community_name": "ApiOperation", + "norm_label": ".togglecoupon()" }, { "label": ".updateCoupon()", @@ -4939,10 +4819,10 @@ "source_location": "L197", "_callable": true, "_origin": "ast", + "id": "backend_src_admin_admin_controller_admincontroller_updatecoupon", "community": 0, - "community_name": "AdminService", - "norm_label": ".updatecoupon()", - "id": "backend_src_admin_admin_controller_admincontroller_updatecoupon" + "community_name": "ApiOperation", + "norm_label": ".updatecoupon()" }, { "label": ".updateDoctor()", @@ -4951,10 +4831,10 @@ "source_location": "L244", "_callable": true, "_origin": "ast", + "id": "backend_src_admin_admin_controller_admincontroller_updatedoctor", "community": 0, - "community_name": "AdminService", - "norm_label": ".updatedoctor()", - "id": "backend_src_admin_admin_controller_admincontroller_updatedoctor" + "community_name": "ApiOperation", + "norm_label": ".updatedoctor()" }, { "label": ".updateOrderStatus()", @@ -4963,22 +4843,10 @@ "source_location": "L165", "_callable": true, "_origin": "ast", + "id": "backend_src_admin_admin_controller_admincontroller_updateorderstatus", "community": 0, - "community_name": "AdminService", - "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": "L138", - "_callable": true, - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": ".updateproduct()", - "id": "backend_src_admin_admin_controller_admincontroller_updateproduct" + "community_name": "ApiOperation", + "norm_label": ".updateorderstatus()" }, { "label": ".updateSettings()", @@ -4987,10 +4855,10 @@ "source_location": "L275", "_callable": true, "_origin": "ast", + "id": "backend_src_admin_admin_controller_admincontroller_updatesettings", "community": 0, - "community_name": "AdminService", - "norm_label": ".updatesettings()", - "id": "backend_src_admin_admin_controller_admincontroller_updatesettings" + "community_name": "ApiOperation", + "norm_label": ".updatesettings()" }, { "label": ".updateUser()", @@ -4999,10 +4867,10 @@ "source_location": "L69", "_callable": true, "_origin": "ast", + "id": "backend_src_admin_admin_controller_admincontroller_updateuser", "community": 0, - "community_name": "AdminService", - "norm_label": ".updateuser()", - "id": "backend_src_admin_admin_controller_admincontroller_updateuser" + "community_name": "ApiOperation", + "norm_label": ".updateuser()" }, { "label": ".updateUserRole()", @@ -5011,34 +4879,10 @@ "source_location": "L93", "_callable": true, "_origin": "ast", + "id": "backend_src_admin_admin_controller_admincontroller_updateuserrole", "community": 0, - "community_name": "AdminService", - "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": "L790", - "_callable": true, - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "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": "L592", - "_callable": true, - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": ".createcoupon()", - "id": "backend_src_admin_admin_service_adminservice_createcoupon" + "community_name": "ApiOperation", + "norm_label": ".updateuserrole()" }, { "label": ".createDoctor()", @@ -5047,106 +4891,10 @@ "source_location": "L763", "_callable": true, "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_createdoctor", "community": 0, - "community_name": "AdminService", - "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": "L356", - "_callable": true, - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "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": "L164", - "_callable": true, - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "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": "L656", - "_callable": true, - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "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": "L786", - "_callable": true, - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": ".deletedoctor()", - "id": "backend_src_admin_admin_service_adminservice_deletedoctor" - }, - { - "label": ".deleteProduct()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L483", - "_callable": true, - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": ".deleteproduct()", - "id": "backend_src_admin_admin_service_adminservice_deleteproduct" - }, - { - "label": ".deleteUser()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L257", - "_callable": true, - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": ".deleteuser()", - "id": "backend_src_admin_admin_service_adminservice_deleteuser" - }, - { - "label": ".getDoctors()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L757", - "_callable": true, - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": ".getdoctors()", - "id": "backend_src_admin_admin_service_adminservice_getdoctors" - }, - { - "label": ".getPets()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L707", - "_callable": true, - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": ".getpets()", - "id": "backend_src_admin_admin_service_adminservice_getpets" + "community_name": "ApiOperation", + "norm_label": ".createdoctor()" }, { "label": ".getSettings()", @@ -5155,22 +4903,10 @@ "source_location": "L662", "_callable": true, "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_getsettings", "community": 0, - "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": "L150", - "_callable": true, - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": ".getuserdetails()", - "id": "backend_src_admin_admin_service_adminservice_getuserdetails" + "community_name": "ApiOperation", + "norm_label": ".getsettings()" }, { "label": ".toggleCoupon()", @@ -5179,10 +4915,10 @@ "source_location": "L649", "_callable": true, "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_togglecoupon", "community": 0, - "community_name": "AdminService", - "norm_label": ".togglecoupon()", - "id": "backend_src_admin_admin_service_adminservice_togglecoupon" + "community_name": "ApiOperation", + "norm_label": ".togglecoupon()" }, { "label": ".updateCoupon()", @@ -5191,10 +4927,10 @@ "source_location": "L619", "_callable": true, "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_updatecoupon", "community": 0, - "community_name": "AdminService", - "norm_label": ".updatecoupon()", - "id": "backend_src_admin_admin_service_adminservice_updatecoupon" + "community_name": "ApiOperation", + "norm_label": ".updatecoupon()" }, { "label": ".updateDoctor()", @@ -5203,10 +4939,10 @@ "source_location": "L773", "_callable": true, "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_updatedoctor", "community": 0, - "community_name": "AdminService", - "norm_label": ".updatedoctor()", - "id": "backend_src_admin_admin_service_adminservice_updatedoctor" + "community_name": "ApiOperation", + "norm_label": ".updatedoctor()" }, { "label": ".updateOrderStatus()", @@ -5215,22 +4951,10 @@ "source_location": "L542", "_callable": true, "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_updateorderstatus", "community": 0, - "community_name": "AdminService", - "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": "L415", - "_callable": true, - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": ".updateproduct()", - "id": "backend_src_admin_admin_service_adminservice_updateproduct" + "community_name": "ApiOperation", + "norm_label": ".updateorderstatus()" }, { "label": ".updateSettings()", @@ -5239,10 +4963,10 @@ "source_location": "L670", "_callable": true, "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_updatesettings", "community": 0, - "community_name": "AdminService", - "norm_label": ".updatesettings()", - "id": "backend_src_admin_admin_service_adminservice_updatesettings" + "community_name": "ApiOperation", + "norm_label": ".updatesettings()" }, { "label": ".updateUser()", @@ -5251,10 +4975,10 @@ "source_location": "L201", "_callable": true, "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_updateuser", "community": 0, - "community_name": "AdminService", - "norm_label": ".updateuser()", - "id": "backend_src_admin_admin_service_adminservice_updateuser" + "community_name": "ApiOperation", + "norm_label": ".updateuser()" }, { "label": ".updateUserRole()", @@ -5263,10 +4987,10 @@ "source_location": "L250", "_callable": true, "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_updateuserrole", "community": 0, - "community_name": "AdminService", - "norm_label": ".updateuserrole()", - "id": "backend_src_admin_admin_service_adminservice_updateuserrole" + "community_name": "ApiOperation", + "norm_label": ".updateuserrole()" }, { "label": "Blog()", @@ -5275,10 +4999,10 @@ "source_location": "L43", "_callable": true, "_origin": "ast", + "id": "frontend_application_app_blog_page_blog", "community": 1, "community_name": "productService.ts", - "norm_label": "blog()", - "id": "frontend_application_app_blog_page_blog" + "norm_label": "blog()" }, { "label": "getBlogs()", @@ -5287,10 +5011,10 @@ "source_location": "L20", "_callable": true, "_origin": "ast", + "id": "frontend_application_app_blog_page_getblogs", "community": 1, "community_name": "productService.ts", - "norm_label": "getblogs()", - "id": "frontend_application_app_blog_page_getblogs" + "norm_label": "getblogs()" }, { "label": "CatalogClient()", @@ -5299,10 +5023,10 @@ "source_location": "L8", "_callable": true, "_origin": "ast", + "id": "frontend_application_app_catalog_catalogclient_catalogclient", "community": 1, "community_name": "productService.ts", - "norm_label": "catalogclient()", - "id": "frontend_application_app_catalog_catalogclient_catalogclient" + "norm_label": "catalogclient()" }, { "label": "CatalogPage()", @@ -5311,10 +5035,10 @@ "source_location": "L20", "_callable": true, "_origin": "ast", + "id": "frontend_application_app_catalog_page_catalogpage", "community": 1, "community_name": "productService.ts", - "norm_label": "catalogpage()", - "id": "frontend_application_app_catalog_page_catalogpage" + "norm_label": "catalogpage()" }, { "label": "SearchPage()", @@ -5323,10 +5047,10 @@ "source_location": "L9", "_callable": true, "_origin": "ast", + "id": "frontend_application_app_search_page_searchpage", "community": 1, "community_name": "productService.ts", - "norm_label": "searchpage()", - "id": "frontend_application_app_search_page_searchpage" + "norm_label": "searchpage()" }, { "label": "sitemap()", @@ -5335,10 +5059,10 @@ "source_location": "L5", "_callable": true, "_origin": "ast", + "id": "frontend_application_app_sitemap_sitemap", "community": 1, "community_name": "productService.ts", - "norm_label": "sitemap()", - "id": "frontend_application_app_sitemap_sitemap" + "norm_label": "sitemap()" }, { "label": "WikiPage()", @@ -5347,10 +5071,10 @@ "source_location": "L21", "_callable": true, "_origin": "ast", + "id": "frontend_application_app_wiki_page_wikipage", "community": 1, "community_name": "productService.ts", - "norm_label": "wikipage()", - "id": "frontend_application_app_wiki_page_wikipage" + "norm_label": "wikipage()" }, { "label": "BlogPage()", @@ -5359,10 +5083,10 @@ "source_location": "L23", "_callable": true, "_origin": "ast", + "id": "frontend_application_components_blogpage_blogpage", "community": 1, "community_name": "productService.ts", - "norm_label": "blogpage()", - "id": "frontend_application_components_blogpage_blogpage" + "norm_label": "blogpage()" }, { "label": "CatalogPageSpread()", @@ -5371,10 +5095,10 @@ "source_location": "L67", "_callable": true, "_origin": "ast", + "id": "frontend_application_components_catalog_catalogpagespread_catalogpagespread", "community": 1, "community_name": "productService.ts", - "norm_label": "catalogpagespread()", - "id": "frontend_application_components_catalog_catalogpagespread_catalogpagespread" + "norm_label": "catalogpagespread()" }, { "label": "getFormBadge()", @@ -5383,10 +5107,10 @@ "source_location": "L49", "_callable": true, "_origin": "ast", + "id": "frontend_application_components_catalog_catalogpagespread_getformbadge", "community": 1, "community_name": "productService.ts", - "norm_label": "getformbadge()", - "id": "frontend_application_components_catalog_catalogpagespread_getformbadge" + "norm_label": "getformbadge()" }, { "label": "getSpeciesBadge()", @@ -5395,10 +5119,10 @@ "source_location": "L61", "_callable": true, "_origin": "ast", + "id": "frontend_application_components_catalog_catalogpagespread_getspeciesbadge", "community": 1, "community_name": "productService.ts", - "norm_label": "getspeciesbadge()", - "id": "frontend_application_components_catalog_catalogpagespread_getspeciesbadge" + "norm_label": "getspeciesbadge()" }, { "label": "FlipbookCatalog()", @@ -5407,10 +5131,10 @@ "source_location": "L36", "_callable": true, "_origin": "ast", + "id": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalog", "community": 1, "community_name": "productService.ts", - "norm_label": "flipbookcatalog()", - "id": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalog" + "norm_label": "flipbookcatalog()" }, { "label": "normalizeSearchText()", @@ -5419,10 +5143,10 @@ "source_location": "L27", "_callable": true, "_origin": "ast", + "id": "frontend_application_components_catalog_flipbookcatalog_normalizesearchtext", "community": 1, "community_name": "productService.ts", - "norm_label": "normalizesearchtext()", - "id": "frontend_application_components_catalog_flipbookcatalog_normalizesearchtext" + "norm_label": "normalizesearchtext()" }, { "label": "formatIngredientDisplayName()", @@ -5431,10 +5155,10 @@ "source_location": "L50", "_callable": true, "_origin": "ast", + "id": "frontend_application_components_ingredientwiki_formatingredientdisplayname", "community": 1, "community_name": "productService.ts", - "norm_label": "formatingredientdisplayname()", - "id": "frontend_application_components_ingredientwiki_formatingredientdisplayname" + "norm_label": "formatingredientdisplayname()" }, { "label": "IngredientWiki()", @@ -5443,10 +5167,10 @@ "source_location": "L63", "_callable": true, "_origin": "ast", + "id": "frontend_application_components_ingredientwiki_ingredientwiki", "community": 1, "community_name": "productService.ts", - "norm_label": "ingredientwiki()", - "id": "frontend_application_components_ingredientwiki_ingredientwiki" + "norm_label": "ingredientwiki()" }, { "label": "SearchResultsPage()", @@ -5455,10 +5179,10 @@ "source_location": "L13", "_callable": true, "_origin": "ast", + "id": "frontend_application_components_searchresultspage_searchresultspage", "community": 1, "community_name": "productService.ts", - "norm_label": "searchresultspage()", - "id": "frontend_application_components_searchresultspage_searchresultspage" + "norm_label": "searchresultspage()" }, { "label": ".constructor()", @@ -5467,10 +5191,10 @@ "source_location": "L74", "_callable": true, "_origin": "ast", + "id": "frontend_application_lib_services_productservice_productservice_constructor", "community": 1, "community_name": "productService.ts", - "norm_label": ".constructor()", - "id": "frontend_application_lib_services_productservice_productservice_constructor" + "norm_label": ".constructor()" }, { "label": ".getActiveFilters()", @@ -5479,10 +5203,10 @@ "source_location": "L298", "_callable": true, "_origin": "ast", + "id": "frontend_application_lib_services_productservice_productservice_getactivefilters", "community": 1, "community_name": "productService.ts", - "norm_label": ".getactivefilters()", - "id": "frontend_application_lib_services_productservice_productservice_getactivefilters" + "norm_label": ".getactivefilters()" }, { "label": ".getFeaturedProducts()", @@ -5491,10 +5215,10 @@ "source_location": "L268", "_callable": true, "_origin": "ast", + "id": "frontend_application_lib_services_productservice_productservice_getfeaturedproducts", "community": 1, "community_name": "productService.ts", - "norm_label": ".getfeaturedproducts()", - "id": "frontend_application_lib_services_productservice_productservice_getfeaturedproducts" + "norm_label": ".getfeaturedproducts()" }, { "label": ".getInstance()", @@ -5503,10 +5227,10 @@ "source_location": "L76", "_callable": true, "_origin": "ast", + "id": "frontend_application_lib_services_productservice_productservice_getinstance", "community": 1, "community_name": "productService.ts", - "norm_label": ".getinstance()", - "id": "frontend_application_lib_services_productservice_productservice_getinstance" + "norm_label": ".getinstance()" }, { "label": ".getNavigationFilters()", @@ -5515,10 +5239,10 @@ "source_location": "L312", "_callable": true, "_origin": "ast", + "id": "frontend_application_lib_services_productservice_productservice_getnavigationfilters", "community": 1, "community_name": "productService.ts", - "norm_label": ".getnavigationfilters()", - "id": "frontend_application_lib_services_productservice_productservice_getnavigationfilters" + "norm_label": ".getnavigationfilters()" }, { "label": ".getProductById()", @@ -5527,10 +5251,10 @@ "source_location": "L248", "_callable": true, "_origin": "ast", + "id": "frontend_application_lib_services_productservice_productservice_getproductbyid", "community": 1, "community_name": "productService.ts", - "norm_label": ".getproductbyid()", - "id": "frontend_application_lib_services_productservice_productservice_getproductbyid" + "norm_label": ".getproductbyid()" }, { "label": ".getProductBySlug()", @@ -5539,10 +5263,10 @@ "source_location": "L258", "_callable": true, "_origin": "ast", + "id": "frontend_application_lib_services_productservice_productservice_getproductbyslug", "community": 1, "community_name": "productService.ts", - "norm_label": ".getproductbyslug()", - "id": "frontend_application_lib_services_productservice_productservice_getproductbyslug" + "norm_label": ".getproductbyslug()" }, { "label": ".getProducts()", @@ -5551,10 +5275,10 @@ "source_location": "L216", "_callable": true, "_origin": "ast", + "id": "frontend_application_lib_services_productservice_productservice_getproducts", "community": 1, "community_name": "productService.ts", - "norm_label": ".getproducts()", - "id": "frontend_application_lib_services_productservice_productservice_getproducts" + "norm_label": ".getproducts()" }, { "label": ".mapBackendToFrontend()", @@ -5563,10 +5287,10 @@ "source_location": "L83", "_callable": true, "_origin": "ast", + "id": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend", "community": 1, "community_name": "productService.ts", - "norm_label": ".mapbackendtofrontend()", - "id": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend" + "norm_label": ".mapbackendtofrontend()" }, { "label": ".constructor()", @@ -5575,10 +5299,10 @@ "source_location": "L20", "_callable": true, "_origin": "ast", + "id": "backend_src_doctors_doctors_controller_doctorscontroller_constructor", "community": 10, "community_name": "DoctorsService", - "norm_label": ".constructor()", - "id": "backend_src_doctors_doctors_controller_doctorscontroller_constructor" + "norm_label": ".constructor()" }, { "label": ".create()", @@ -5587,10 +5311,10 @@ "source_location": "L38", "_callable": true, "_origin": "ast", + "id": "backend_src_doctors_doctors_controller_doctorscontroller_create", "community": 10, "community_name": "DoctorsService", - "norm_label": ".create()", - "id": "backend_src_doctors_doctors_controller_doctorscontroller_create" + "norm_label": ".create()" }, { "label": ".findAll()", @@ -5599,10 +5323,10 @@ "source_location": "L24", "_callable": true, "_origin": "ast", + "id": "backend_src_doctors_doctors_controller_doctorscontroller_findall", "community": 10, "community_name": "DoctorsService", - "norm_label": ".findall()", - "id": "backend_src_doctors_doctors_controller_doctorscontroller_findall" + "norm_label": ".findall()" }, { "label": ".findOne()", @@ -5611,10 +5335,10 @@ "source_location": "L30", "_callable": true, "_origin": "ast", + "id": "backend_src_doctors_doctors_controller_doctorscontroller_findone", "community": 10, "community_name": "DoctorsService", - "norm_label": ".findone()", - "id": "backend_src_doctors_doctors_controller_doctorscontroller_findone" + "norm_label": ".findone()" }, { "label": ".remove()", @@ -5623,10 +5347,10 @@ "source_location": "L57", "_callable": true, "_origin": "ast", + "id": "backend_src_doctors_doctors_controller_doctorscontroller_remove", "community": 10, "community_name": "DoctorsService", - "norm_label": ".remove()", - "id": "backend_src_doctors_doctors_controller_doctorscontroller_remove" + "norm_label": ".remove()" }, { "label": ".update()", @@ -5635,10 +5359,10 @@ "source_location": "L46", "_callable": true, "_origin": "ast", + "id": "backend_src_doctors_doctors_controller_doctorscontroller_update", "community": 10, "community_name": "DoctorsService", - "norm_label": ".update()", - "id": "backend_src_doctors_doctors_controller_doctorscontroller_update" + "norm_label": ".update()" }, { "label": ".constructor()", @@ -5647,10 +5371,10 @@ "source_location": "L14", "_callable": true, "_origin": "ast", + "id": "backend_src_doctors_doctors_service_doctorsservice_constructor", "community": 10, "community_name": "DoctorsService", - "norm_label": ".constructor()", - "id": "backend_src_doctors_doctors_service_doctorsservice_constructor" + "norm_label": ".constructor()" }, { "label": ".create()", @@ -5659,10 +5383,10 @@ "source_location": "L80", "_callable": true, "_origin": "ast", + "id": "backend_src_doctors_doctors_service_doctorsservice_create", "community": 10, "community_name": "DoctorsService", - "norm_label": ".create()", - "id": "backend_src_doctors_doctors_service_doctorsservice_create" + "norm_label": ".create()" }, { "label": ".findAll()", @@ -5671,10 +5395,10 @@ "source_location": "L16", "_callable": true, "_origin": "ast", + "id": "backend_src_doctors_doctors_service_doctorsservice_findall", "community": 10, "community_name": "DoctorsService", - "norm_label": ".findall()", - "id": "backend_src_doctors_doctors_service_doctorsservice_findall" + "norm_label": ".findall()" }, { "label": ".findOne()", @@ -5683,10 +5407,10 @@ "source_location": "L63", "_callable": true, "_origin": "ast", + "id": "backend_src_doctors_doctors_service_doctorsservice_findone", "community": 10, "community_name": "DoctorsService", - "norm_label": ".findone()", - "id": "backend_src_doctors_doctors_service_doctorsservice_findone" + "norm_label": ".findone()" }, { "label": ".remove()", @@ -5695,10 +5419,10 @@ "source_location": "L95", "_callable": true, "_origin": "ast", + "id": "backend_src_doctors_doctors_service_doctorsservice_remove", "community": 10, "community_name": "DoctorsService", - "norm_label": ".remove()", - "id": "backend_src_doctors_doctors_service_doctorsservice_remove" + "norm_label": ".remove()" }, { "label": ".update()", @@ -5707,6646 +5431,154 @@ "source_location": "L86", "_callable": true, "_origin": "ast", + "id": "backend_src_doctors_doctors_service_doctorsservice_update", "community": 10, "community_name": "DoctorsService", - "norm_label": ".update()", - "id": "backend_src_doctors_doctors_service_doctorsservice_update" + "norm_label": ".update()" }, { - "label": "TrustSealsPage()", + "label": ".adjustWallet()", "file_type": "code", - "source_file": "frontend/application/app/trust-seals/page.tsx", - "source_location": "L11", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L100", "_callable": true, "_origin": "ast", - "community": 11, - "community_name": "useSettingsStore", - "norm_label": "trustsealspage()", - "id": "frontend_application_app_trust_seals_page_trustsealspage" - }, - { - "label": "BrandLogo()", - "file_type": "code", - "source_file": "frontend/application/components/BrandLogo.tsx", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "community": 11, - "community_name": "useSettingsStore", - "norm_label": "brandlogo()", - "id": "frontend_application_components_brandlogo_brandlogo" - }, - { - "label": "EnamadBadge()", - "file_type": "code", - "source_file": "frontend/application/components/EnamadBadge.tsx", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "community": 11, - "community_name": "useSettingsStore", - "norm_label": "enamadbadge()", - "id": "frontend_application_components_enamadbadge_enamadbadge" - }, - { - "label": "Footer()", - "file_type": "code", - "source_file": "frontend/application/components/Footer.tsx", - "source_location": "L11", - "_callable": true, - "_origin": "ast", - "community": 11, - "community_name": "useSettingsStore", - "norm_label": "footer()", - "id": "frontend_application_components_footer_footer" - }, - { - "label": "Hero()", - "file_type": "code", - "source_file": "frontend/application/components/Hero.tsx", - "source_location": "L40", - "_callable": true, - "_origin": "ast", - "community": 11, - "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": 11, - "community_name": "useSettingsStore", - "norm_label": "statcounter()", - "id": "frontend_application_components_hero_statcounter" - }, - { - "label": "MaintenancePage()", - "file_type": "code", - "source_file": "frontend/application/components/MaintenancePage.tsx", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "community": 11, - "community_name": "useSettingsStore", - "norm_label": "maintenancepage()", - "id": "frontend_application_components_maintenancepage_maintenancepage" - }, - { - "label": "TickerBanner()", - "file_type": "code", - "source_file": "frontend/application/components/TickerBanner.tsx", - "source_location": "L6", - "_callable": true, - "_origin": "ast", - "community": 11, - "community_name": "useSettingsStore", - "norm_label": "tickerbanner()", - "id": "frontend_application_components_tickerbanner_tickerbanner" - }, - { - "label": "Tooltip()", - "file_type": "code", - "source_file": "frontend/application/components/Tooltip.tsx", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "community": 11, - "community_name": "useSettingsStore", - "norm_label": "tooltip()", - "id": "frontend_application_components_tooltip_tooltip" + "id": "backend_src_admin_admin_controller_admincontroller_adjustwallet", + "community": 101, + "community_name": "AdminService", + "norm_label": ".adjustwallet()" }, { "label": ".constructor()", "file_type": "code", - "source_file": "backend/src/app.controller.ts", - "source_location": "L6", - "_callable": true, - "_origin": "ast", - "community": 110, - "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": 110, - "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": 110, - "community_name": "AppService", - "norm_label": ".gethello()", - "id": "backend_src_app_service_appservice_gethello" - }, - { - "label": "App()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/App.tsx", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "community": 12, - "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": 12, - "community_name": "adminRoutes.tsx", - "norm_label": "suspensefallback()", - "id": "frontend_admin_panel_src_app_suspensefallback" - }, - { - "label": "ContactSubmissions()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "community": 12, - "community_name": "adminRoutes.tsx", - "norm_label": "contactsubmissions()", - "id": "frontend_admin_panel_src_pages_contactsubmissions_contactsubmissions" - }, - { - "label": "Dashboard()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Dashboard.tsx", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "community": 12, - "community_name": "adminRoutes.tsx", - "norm_label": "dashboard()", - "id": "frontend_admin_panel_src_pages_dashboard_dashboard" - }, - { - "label": "Tickets()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", - "source_location": "L58", - "_callable": true, - "_origin": "ast", - "community": 12, - "community_name": "adminRoutes.tsx", - "norm_label": "tickets()", - "id": "frontend_admin_panel_src_pages_tickets_tickets" - }, - { - "label": "WholesaleApplications()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", - "source_location": "L16", - "_callable": true, - "_origin": "ast", - "community": 12, - "community_name": "adminRoutes.tsx", - "norm_label": "wholesaleapplications()", - "id": "frontend_admin_panel_src_pages_wholesaleapplications_wholesaleapplications" - }, - { - "label": "CustomTooltip()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L18", - "_callable": true, - "_origin": "ast", - "community": 124, - "community_name": "Reports.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": "L61", - "_callable": true, - "_origin": "ast", - "community": 124, - "community_name": "Reports.tsx", - "norm_label": "reports()", - "id": "frontend_admin_panel_src_pages_reports_reports" - }, - { - "label": "cmd_next_task()", - "file_type": "code", - "source_file": ".ai_agency/orchestrate.py", - "source_location": "L105", - "_callable": true, - "_origin": "ast", - "community": 127, - "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": 127, - "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": 127, - "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": 127, - "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": 127, - "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": 127, - "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": 127, - "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": 127, - "community_name": "orchestrate.py", - "norm_label": "save_json()", - "id": "ai_agency_orchestrate_save_json" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/banners/banners.service.ts", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "community": 13, - "community_name": "PrismaService", - "norm_label": ".constructor()", - "id": "backend_src_banners_banners_service_bannersservice_constructor" - }, - { - "label": ".ensureTablesExist()", - "file_type": "code", - "source_file": "backend/src/prisma/prisma.service.ts", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "community": 13, - "community_name": "PrismaService", - "norm_label": ".ensuretablesexist()", - "id": "backend_src_prisma_prisma_service_prismaservice_ensuretablesexist" - }, - { - "label": ".onModuleDestroy()", - "file_type": "code", - "source_file": "backend/src/prisma/prisma.service.ts", - "source_location": "L91", - "_callable": true, - "_origin": "ast", - "community": 13, - "community_name": "PrismaService", - "norm_label": ".onmoduledestroy()", - "id": "backend_src_prisma_prisma_service_prismaservice_onmoduledestroy" - }, - { - "label": ".onModuleInit()", - "file_type": "code", - "source_file": "backend/src/prisma/prisma.service.ts", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "community": 13, - "community_name": "PrismaService", - "norm_label": ".onmoduleinit()", - "id": "backend_src_prisma_prisma_service_prismaservice_onmoduleinit" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "community": 13, - "community_name": "PrismaService", - "norm_label": ".constructor()", - "id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_constructor" - }, - { - "label": ".componentDidCatch()", - "file_type": "code", - "source_file": "frontend/application/components/ErrorBoundary.tsx", + "source_file": "backend/src/admin/admin.controller.ts", "source_location": "L30", "_callable": true, "_origin": "ast", - "community": 134, - "community_name": "ErrorBoundary", - "norm_label": ".componentdidcatch()", - "id": "frontend_application_components_errorboundary_errorboundary_componentdidcatch" + "id": "backend_src_admin_admin_controller_admincontroller_constructor", + "community": 101, + "community_name": "AdminService", + "norm_label": ".constructor()" }, { - "label": ".constructor()", + "label": ".createCoupon()", "file_type": "code", - "source_file": "frontend/application/components/ErrorBoundary.tsx", - "source_location": "L18", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L190", "_callable": true, "_origin": "ast", - "community": 134, - "community_name": "ErrorBoundary", - "norm_label": ".constructor()", - "id": "frontend_application_components_errorboundary_errorboundary_constructor" + "id": "backend_src_admin_admin_controller_admincontroller_createcoupon", + "community": 101, + "community_name": "AdminService", + "norm_label": ".createcoupon()" }, { - "label": ".getDerivedStateFromError()", + "label": ".createUser()", "file_type": "code", - "source_file": "frontend/application/components/ErrorBoundary.tsx", - "source_location": "L26", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L51", "_callable": true, "_origin": "ast", - "community": 134, - "community_name": "ErrorBoundary", - "norm_label": ".getderivedstatefromerror()", - "id": "frontend_application_components_errorboundary_errorboundary_getderivedstatefromerror" + "id": "backend_src_admin_admin_controller_admincontroller_createuser", + "community": 101, + "community_name": "AdminService", + "norm_label": ".createuser()" }, { - "label": ".handleRetry()", + "label": ".adjustUserWallet()", "file_type": "code", - "source_file": "frontend/application/components/ErrorBoundary.tsx", - "source_location": "L34", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L790", "_callable": true, "_origin": "ast", - "community": 134, - "community_name": "ErrorBoundary", - "norm_label": ".handleretry()", - "id": "frontend_application_components_errorboundary_errorboundary_handleretry" + "id": "backend_src_admin_admin_service_adminservice_adjustuserwallet", + "community": 101, + "community_name": "AdminService", + "norm_label": ".adjustuserwallet()" }, { - "label": ".render()", + "label": ".createCoupon()", "file_type": "code", - "source_file": "frontend/application/components/ErrorBoundary.tsx", - "source_location": "L39", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L592", "_callable": true, "_origin": "ast", - "community": 134, - "community_name": "ErrorBoundary", - "norm_label": ".render()", - "id": "frontend_application_components_errorboundary_errorboundary_render" + "id": "backend_src_admin_admin_service_adminservice_createcoupon", + "community": 101, + "community_name": "AdminService", + "norm_label": ".createcoupon()" }, { - "label": "generateOpenApi()", + "label": ".createUser()", "file_type": "code", - "source_file": "backend/scripts/generate-openapi.js", - "source_location": "L42", - "_callable": true, - "_origin": "ast", - "community": 136, - "community_name": "generate-openapi.js", - "norm_label": "generateopenapi()", - "id": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi_generateopenapi" - }, - { - "label": ".getAdminTransactions()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L669", - "_callable": true, - "_origin": "ast", - "community": 137, - "community_name": "payment.module.ts", - "norm_label": ".getadmintransactions()", - "id": "backend_src_payment_payment_service_paymentservice_getadmintransactions" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L19", - "_callable": true, - "_origin": "ast", - "community": 14, - "community_name": "BlogsController", - "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": "L24", - "_callable": true, - "_origin": "ast", - "community": 14, - "community_name": "BlogsController", - "norm_label": ".findall()", - "id": "backend_src_blogs_blogs_controller_blogscontroller_findall" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L32", - "_callable": true, - "_origin": "ast", - "community": 14, - "community_name": "BlogsController", - "norm_label": ".findone()", - "id": "backend_src_blogs_blogs_controller_blogscontroller_findone" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L19", - "_callable": true, - "_origin": "ast", - "community": 141, - "community_name": "WikiController", - "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": 141, - "community_name": "WikiController", - "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": 141, - "community_name": "WikiController", - "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": 141, - "community_name": "WikiController", - "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": 141, - "community_name": "WikiController", - "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": 141, - "community_name": "WikiController", - "norm_label": ".findonebykey()", - "id": "backend_src_wiki_wiki_service_wikiservice_findonebykey" - }, - { - "label": "Spinner()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Spinner.tsx", - "source_location": "L2", - "_callable": true, - "_origin": "ast", - "community": 145, - "community_name": "Spinner.tsx", - "norm_label": "spinner()", - "id": "frontend_admin_panel_src_components_ui_spinner_spinner" - }, - { - "label": "Reviews()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", - "source_location": "L54", - "_callable": true, - "_origin": "ast", - "community": 145, - "community_name": "Spinner.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": "L48", - "_callable": true, - "_origin": "ast", - "community": 145, - "community_name": "Spinner.tsx", - "norm_label": "topersiandigits()", - "id": "frontend_admin_panel_src_pages_reviews_topersiandigits" - }, - { - "label": "SeoSettingsPage()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "community": 145, - "community_name": "Spinner.tsx", - "norm_label": "seosettingspage()", - "id": "frontend_admin_panel_src_pages_seosettingspage_seosettingspage" - }, - { - "label": "Settings()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Settings.tsx", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "community": 145, - "community_name": "Spinner.tsx", - "norm_label": "settings()", - "id": "frontend_admin_panel_src_pages_settings_settings" - }, - { - "label": "SmsSettingsPage()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L83", - "_callable": true, - "_origin": "ast", - "community": 145, - "community_name": "Spinner.tsx", - "norm_label": "smssettingspage()", - "id": "frontend_admin_panel_src_pages_smssettingspage_smssettingspage" - }, - { - "label": "SslSettingsPage()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", - "source_location": "L38", - "_callable": true, - "_origin": "ast", - "community": 145, - "community_name": "Spinner.tsx", - "norm_label": "sslsettingspage()", - "id": "frontend_admin_panel_src_pages_sslsettingspage_sslsettingspage" - }, - { - "label": "ErrorBoundary()", - "file_type": "code", - "source_file": "frontend/application/app/error.tsx", - "source_location": "L5", - "_callable": true, - "_origin": "ast", - "community": 146, - "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": 146, - "community_name": "ErrorPages.tsx", - "norm_label": "notfound()", - "id": "frontend_application_app_not_found_notfound" - }, - { - "label": "NotFoundPage()", - "file_type": "code", - "source_file": "frontend/application/components/ErrorPages.tsx", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "community": 146, - "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": 146, - "community_name": "ErrorPages.tsx", - "norm_label": "servererrorpage()", - "id": "frontend_application_components_errorpages_servererrorpage" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L27", - "_callable": true, - "_origin": "ast", - "community": 15, - "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", - "community": 15, - "community_name": "ProductsService", - "norm_label": ".findall()", - "id": "backend_src_products_products_controller_productscontroller_findall" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L72", - "_callable": true, - "_origin": "ast", - "community": 15, - "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": 15, - "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": 15, - "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": 15, - "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": 15, - "community_name": "ProductsService", - "norm_label": ".updatedosageconfig()", - "id": "backend_src_products_products_controller_productscontroller_updatedosageconfig" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": ".constructor()", - "id": "backend_src_products_products_service_productsservice_constructor" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "community": 15, - "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": "L128", - "_callable": true, - "_origin": "ast", - "community": 15, - "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": "L177", - "_callable": true, - "_origin": "ast", - "community": 15, - "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": "L247", - "_callable": true, - "_origin": "ast", - "community": 15, - "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": "L212", - "_callable": true, - "_origin": "ast", - "community": 15, - "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": "L258", - "_callable": true, - "_origin": "ast", - "community": 15, - "community_name": "ProductsService", - "norm_label": ".updatedosageconfig()", - "id": "backend_src_products_products_service_productsservice_updatedosageconfig" - }, - { - "label": "checkAndOpen()", - "file_type": "code", - "source_file": "scripts/open-browsers.js", - "source_location": "L26", - "_callable": true, - "_origin": "ast", - "community": 156, - "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": 156, - "community_name": "open-browsers.js", - "norm_label": "openurl()", - "id": "scripts_open_browsers_openurl" - }, - { - "label": "waitForBackend()", - "file_type": "code", - "source_file": "scripts/start-dev.js", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "community": 157, - "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": "L10", - "_callable": true, - "_origin": "ast", - "community": 157, - "community_name": "start-dev.js", - "norm_label": "check()", - "id": "scripts_start_dev_waitforbackend_check" - }, - { - "label": "ContactPage()", - "file_type": "code", - "source_file": "frontend/application/app/contact/page.tsx", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "community": 16, - "community_name": "lib/services/api.ts", - "norm_label": "contactpage()", - "id": "frontend_application_app_contact_page_contactpage" - }, - { - "label": "ContactFormClient()", - "file_type": "code", - "source_file": "frontend/application/components/ContactFormClient.tsx", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "community": 16, - "community_name": "lib/services/api.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": 16, - "community_name": "lib/services/api.ts", - "norm_label": "fetchcontactinfo()", - "id": "frontend_application_components_contactformclient_contactformclient_fetchcontactinfo" - }, - { - "label": "TestimonialsSection()", - "file_type": "code", - "source_file": "frontend/application/components/TestimonialsSection.tsx", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "community": 16, - "community_name": "lib/services/api.ts", - "norm_label": "testimonialssection()", - "id": "frontend_application_components_testimonialssection_testimonialssection" - }, - { - "label": "loadTestimonials()", - "file_type": "code", - "source_file": "frontend/application/components/TestimonialsSection.tsx", - "source_location": "L26", - "_callable": true, - "_origin": "ast", - "community": 16, - "community_name": "lib/services/api.ts", - "norm_label": "loadtestimonials()", - "id": "frontend_application_components_testimonialssection_testimonialssection_loadtestimonials" - }, - { - "label": "getBaseURL()", - "file_type": "code", - "source_file": "frontend/application/lib/services/api.ts", - "source_location": "L5", - "_callable": true, - "_origin": "ast", - "community": 16, - "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": 16, - "community_name": "lib/services/api.ts", - "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": 16, - "community_name": "lib/services/api.ts", - "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": 16, - "community_name": "lib/services/api.ts", - "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": 16, - "community_name": "lib/services/api.ts", - "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": 16, - "community_name": "lib/services/api.ts", - "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": 16, - "community_name": "lib/services/api.ts", - "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": 16, - "community_name": "lib/services/api.ts", - "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": 16, - "community_name": "lib/services/api.ts", - "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": 16, - "community_name": "lib/services/api.ts", - "norm_label": ".verifyotp()", - "id": "frontend_application_lib_services_authservice_authservice_verifyotp" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "frontend/application/lib/services/orderService.ts", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "community": 16, - "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": 16, - "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": 16, - "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": 16, - "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": 16, - "community_name": "lib/services/api.ts", - "norm_label": ".getuserorders()", - "id": "frontend_application_lib_services_orderservice_orderservice_getuserorders" - }, - { - "label": "createPaginatedSchema()", - "file_type": "code", - "source_file": "backend/src/common/schemas/paginated-response.schema.ts", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "community": 160, - "community_name": "paginated-response.schema.ts", - "norm_label": "createpaginatedschema()", - "id": "backend_src_common_schemas_paginated_response_schema_createpaginatedschema" - }, - { - "label": "BlogPostPage()", - "file_type": "code", - "source_file": "frontend/application/app/blog/[slug]/page.tsx", - "source_location": "L57", - "_callable": true, - "_origin": "ast", - "community": 168, - "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": "L32", - "_callable": true, - "_origin": "ast", - "community": 168, - "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": "L9", - "_callable": true, - "_origin": "ast", - "community": 168, - "community_name": "blog/[slug]/page.tsx", - "norm_label": "getblog()", - "id": "frontend_application_app_blog_slug_page_getblog" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L26", - "_callable": true, - "_origin": "ast", - "community": 17, - "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": 17, - "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": 17, - "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": 17, - "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": 17, - "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": 17, - "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": 17, - "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": 17, - "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": 17, - "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": 17, - "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": 17, - "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": 17, - "community_name": "CreateVideoDto", - "norm_label": ".update()", - "id": "backend_src_videos_videos_service_videosservice_update" - }, - { - "label": "main()", - "file_type": "code", - "source_file": "backend/prisma/seed-ui-texts.ts", - "source_location": "L135", - "_callable": true, - "_origin": "ast", - "community": 175, - "community_name": "seed-ui-texts.ts", - "norm_label": "main()", - "id": "backend_prisma_seed_ui_texts_main" - }, - { - "label": "main()", - "file_type": "code", - "source_file": "backend/prisma/seed-wiki.ts", - "source_location": "L370", - "_callable": true, - "_origin": "ast", - "community": 176, - "community_name": "seed-wiki.ts", - "norm_label": "main()", - "id": "backend_prisma_seed_wiki_main" - }, - { - "label": "ProtectedRoute()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "community": 18, - "community_name": "src/services/api.ts", - "norm_label": "protectedroute()", - "id": "frontend_admin_panel_src_components_protectedroute_protectedroute" - }, - { - "label": "Topbar()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Topbar.tsx", - "source_location": "L45", - "_callable": true, - "_origin": "ast", - "community": 18, - "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": "L8", - "_callable": true, - "_origin": "ast", - "community": 18, - "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": 18, - "community_name": "src/services/api.ts", - "norm_label": "login()", - "id": "frontend_admin_panel_src_pages_login_login" - }, - { - "label": "SmartAdvisorManager()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "community": 18, - "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": "L8", - "_callable": true, - "_origin": "ast", - "community": 18, - "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": 18, - "community_name": "src/services/api.ts", - "norm_label": "processqueue()", - "id": "frontend_admin_panel_src_services_api_processqueue" - }, - { - "label": "generateMetadata()", - "file_type": "code", - "source_file": "frontend/application/app/wiki/[slug]/page.tsx", - "source_location": "L18", - "_callable": true, - "_origin": "ast", - "community": 186, - "community_name": "wiki/[slug]/page.tsx", - "norm_label": "generatemetadata()", - "id": "frontend_application_app_wiki_slug_page_generatemetadata" - }, - { - "label": "getWikiTerm()", - "file_type": "code", - "source_file": "frontend/application/app/wiki/[slug]/page.tsx", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "community": 186, - "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": "L29", - "_callable": true, - "_origin": "ast", - "community": 186, - "community_name": "wiki/[slug]/page.tsx", - "norm_label": "wikitermpage()", - "id": "frontend_application_app_wiki_slug_page_wikitermpage" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "community": 19, - "community_name": "B2BService", - "norm_label": ".constructor()", - "id": "backend_src_b2b_b2b_service_b2bservice_constructor" - }, - { - "label": "main()", - "file_type": "code", - "source_file": "backend/prisma/seed-blogs.ts", - "source_location": "L5", - "_callable": true, - "_origin": "ast", - "community": 197, - "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", - "community": 198, - "community_name": "seed-custom.ts", - "norm_label": "main()", - "id": "backend_prisma_seed_custom_main" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L28", - "_callable": true, - "_origin": "ast", - "community": 2, - "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": 2, - "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": 2, - "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": 2, - "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": 2, - "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": 2, - "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": 2, - "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": 2, - "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": 2, - "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": 2, - "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": 2, - "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": 2, - "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": 2, - "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": 2, - "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": 2, - "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": 2, - "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": 2, - "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": 2, - "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": 2, - "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": 2, - "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": 2, - "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": 2, - "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": 2, - "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": 2, - "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": 2, - "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": 2, - "community_name": "CmsController", - "norm_label": ".updatevettestimonial()", - "id": "backend_src_cms_cms_service_cmsservice_updatevettestimonial" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "norm_label": ".constructor()", - "id": "backend_src_banners_banners_controller_bannerscontroller_constructor" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L35", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "norm_label": ".create()", - "id": "backend_src_banners_banners_controller_bannerscontroller_create" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L26", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "norm_label": ".findall()", - "id": "backend_src_banners_banners_controller_bannerscontroller_findall" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L62", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "norm_label": ".remove()", - "id": "backend_src_banners_banners_controller_bannerscontroller_remove" - }, - { - "label": ".reorder()", - "file_type": "code", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L44", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "norm_label": ".reorder()", - "id": "backend_src_banners_banners_controller_bannerscontroller_reorder" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L53", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "norm_label": ".update()", - "id": "backend_src_banners_banners_controller_bannerscontroller_update" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/banners/banners.service.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "norm_label": ".create()", - "id": "backend_src_banners_banners_service_bannersservice_create" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/banners/banners.service.ts", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": 21, - "community_name": "Roles", - "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": 21, - "community_name": "Roles", - "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": 21, - "community_name": "Roles", - "norm_label": ".update()", - "id": "backend_src_banners_banners_service_bannersservice_update" - }, - { - "label": "Roles()", - "file_type": "code", - "source_file": "backend/src/common/decorators/roles.decorator.ts", - "source_location": "L4", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "norm_label": "roles()", - "id": "backend_src_common_decorators_roles_decorator_roles" - }, - { - "label": ".clearAllSmsLogs()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L255", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "norm_label": ".clearallsmslogs()", - "id": "backend_src_common_services_sms_service_smsservice_clearallsmslogs" - }, - { - "label": ".deleteSmsLog()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L248", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "norm_label": ".deletesmslog()", - "id": "backend_src_common_services_sms_service_smsservice_deletesmslog" - }, - { - "label": ".getSmsLogs()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L191", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "norm_label": ".getsmslogs()", - "id": "backend_src_common_services_sms_service_smsservice_getsmslogs" - }, - { - "label": ".addPattern()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L225", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L270", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": 21, - "community_name": "Roles", - "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": "L119", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L261", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L240", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L82", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L145", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L216", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L98", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L126", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "norm_label": ".getseosettings()", - "id": "backend_src_settings_settings_controller_settingscontroller_getseosettings" - }, - { - "label": ".getSmsLogs()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L252", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L183", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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_file": "backend/src/admin/admin.service.ts", "source_location": "L164", "_callable": true, "_origin": "ast", - "community": 21, - "community_name": "Roles", - "norm_label": ".getsystemsettings()", - "id": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings" + "id": "backend_src_admin_admin_service_adminservice_createuser", + "community": 101, + "community_name": "AdminService", + "norm_label": ".createuser()" }, { - "label": ".getUiTexts()", + "label": ".getPets()", "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L37", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L707", "_callable": true, "_origin": "ast", - "community": 21, - "community_name": "Roles", - "norm_label": ".getuitexts()", - "id": "backend_src_settings_settings_controller_settingscontroller_getuitexts" + "id": "backend_src_admin_admin_service_adminservice_getpets", + "community": 101, + "community_name": "AdminService", + "norm_label": ".getpets()" }, { - "label": ".patchUiText()", + "label": ".createProduct()", "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L61", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L76", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L46", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L201", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L92", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L154", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L135", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L192", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L173", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L107", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L387", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L403", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L89", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L296", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L399", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L391", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L302", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L200", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L383", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L271", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "norm_label": ".getscientificterms()", - "id": "backend_src_settings_settings_service_settingsservice_getscientificterms" - }, - { - "label": ".getSmsLogs()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L395", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L366", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L119", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L94", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L98", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L379", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L191", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L327", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L225", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L370", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L164", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "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": "L275", - "_callable": true, - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "norm_label": ".upsertscientificterm()", - "id": "backend_src_settings_settings_service_settingsservice_upsertscientificterm" - }, - { - "label": "FormField()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/FormField.tsx", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "community": 216, - "community_name": "FormField.tsx", - "norm_label": "formfield()", - "id": "frontend_admin_panel_src_components_ui_formfield_formfield" - }, - { - "label": "AboutPage()", - "file_type": "code", - "source_file": "frontend/application/app/about/page.tsx", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "community": 220, - "community_name": "about/page.tsx", - "norm_label": "aboutpage()", - "id": "frontend_application_app_about_page_aboutpage" - }, - { - "label": "PrivacyPage()", - "file_type": "code", - "source_file": "frontend/application/app/privacy/page.tsx", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "community": 221, - "community_name": "privacy/page.tsx", - "norm_label": "privacypage()", - "id": "frontend_application_app_privacy_page_privacypage" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/common/metrics.controller.ts", - "source_location": "L11", - "_callable": true, - "_origin": "ast", - "community": 243, - "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": 243, - "community_name": "MetricsController", - "norm_label": ".getmetrics()", - "id": "backend_src_common_metrics_controller_metricscontroller_getmetrics" - }, - { - "label": "robots()", - "file_type": "code", - "source_file": "frontend/application/app/robots.ts", - "source_location": "L3", - "_callable": true, - "_origin": "ast", - "community": 256, - "community_name": "robots.ts", - "norm_label": "robots()", - "id": "frontend_application_app_robots_robots" - }, - { - "label": ".applyForWholesale()", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L29", - "_callable": true, - "_origin": "ast", - "community": 29, - "community_name": "WholesaleApplyDto", - "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": 29, - "community_name": "WholesaleApplyDto", - "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": 29, - "community_name": "WholesaleApplyDto", - "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": 29, - "community_name": "WholesaleApplyDto", - "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": 29, - "community_name": "WholesaleApplyDto", - "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": 29, - "community_name": "WholesaleApplyDto", - "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": 29, - "community_name": "WholesaleApplyDto", - "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": 29, - "community_name": "WholesaleApplyDto", - "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": 29, - "community_name": "WholesaleApplyDto", - "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": 29, - "community_name": "WholesaleApplyDto", - "norm_label": ".rejectwholesalerequest()", - "id": "backend_src_wholesale_wholesale_service_wholesaleservice_rejectwholesalerequest" - }, - { - "label": "NetworkBanner()", - "file_type": "code", - "source_file": "frontend/application/components/NetworkBanner.tsx", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "community": 291, - "community_name": "NetworkBanner.tsx", - "norm_label": "networkbanner()", - "id": "frontend_application_components_networkbanner_networkbanner" - }, - { - "label": "useNetworkStatus()", - "file_type": "code", - "source_file": "frontend/application/lib/hooks/useNetworkStatus.ts", - "source_location": "L3", - "_callable": true, - "_origin": "ast", - "community": 291, - "community_name": "NetworkBanner.tsx", - "norm_label": "usenetworkstatus()", - "id": "frontend_application_lib_hooks_usenetworkstatus_usenetworkstatus" - }, - { - "label": "generateOpenApi()", - "file_type": "code", - "source_file": "backend/scripts/generate-openapi.ts", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "community": 30, - "community_name": "main.ts", - "norm_label": "generateopenapi()", - "id": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi_generateopenapi" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/app.module.ts", - "source_location": "L84", - "_callable": true, - "_origin": "ast", - "community": 30, - "community_name": "main.ts", - "norm_label": ".constructor()", - "id": "backend_src_app_module_appmodule_constructor" - }, - { - "label": ".catch()", - "file_type": "code", - "source_file": "backend/src/common/filters/http-exception.filter.ts", - "source_location": "L16", - "_callable": true, - "_origin": "ast", - "community": 30, - "community_name": "main.ts", - "norm_label": ".catch()", - "id": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_catch" - }, - { - "label": ".deriveErrorCode()", - "file_type": "code", - "source_file": "backend/src/common/filters/http-exception.filter.ts", - "source_location": "L114", - "_callable": true, - "_origin": "ast", - "community": 30, - "community_name": "main.ts", - "norm_label": ".deriveerrorcode()", - "id": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_deriveerrorcode" - }, - { - "label": ".translateGenericMessage()", - "file_type": "code", - "source_file": "backend/src/common/filters/http-exception.filter.ts", - "source_location": "L91", - "_callable": true, - "_origin": "ast", - "community": 30, - "community_name": "main.ts", - "norm_label": ".translategenericmessage()", - "id": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_translategenericmessage" - }, - { - "label": ".catch()", - "file_type": "code", - "source_file": "backend/src/common/filters/prisma-exception.filter.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "community": 30, - "community_name": "main.ts", - "norm_label": ".catch()", - "id": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter_catch" - }, - { - "label": ".intercept()", - "file_type": "code", - "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "community": 30, - "community_name": "main.ts", - "norm_label": ".intercept()", - "id": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_intercept" - }, - { - "label": ".transform()", - "file_type": "code", - "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "community": 30, - "community_name": "main.ts", - "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": "L17", - "_callable": true, - "_origin": "ast", - "community": 30, - "community_name": "main.ts", - "norm_label": "bootstrap()", - "id": "backend_src_main_bootstrap" - }, - { - "label": ".handleRequest()", - "file_type": "code", - "source_file": "backend/src/auth/jwt-auth.guard.ts", - "source_location": "L6", - "_callable": true, - "_origin": "ast", - "community": 31, - "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": 31, - "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": 31, - "community_name": "JwtAuthGuard", - "norm_label": ".constructor()", - "id": "backend_src_common_guards_roles_guard_rolesguard_constructor" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L39", - "_callable": true, - "_origin": "ast", - "community": 32, - "community_name": "ZibalService", - "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": "L827", - "_callable": true, - "_origin": "ast", - "community": 32, - "community_name": "ZibalService", - "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": "L933", - "_callable": true, - "_origin": "ast", - "community": 32, - "community_name": "ZibalService", - "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": "L875", - "_callable": true, - "_origin": "ast", - "community": 32, - "community_name": "ZibalService", - "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": "L956", - "_callable": true, - "_origin": "ast", - "community": 32, - "community_name": "ZibalService", - "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": 32, - "community_name": "ZibalService", - "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": "L780", - "_callable": true, - "_origin": "ast", - "community": 32, - "community_name": "ZibalService", - "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": "L621", - "_callable": true, - "_origin": "ast", - "community": 32, - "community_name": "ZibalService", - "norm_label": ".gettransaction()", - "id": "backend_src_payment_payment_service_paymentservice_gettransaction" - }, - { - "label": ".initiateOrderPayment()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "community": 32, - "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": "L138", - "_callable": true, - "_origin": "ast", - "community": 32, - "community_name": "ZibalService", - "norm_label": ".initiatewallettopup()", - "id": "backend_src_payment_payment_service_paymentservice_initiatewallettopup" - }, - { - "label": ".reconcilePendingTransactions()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L539", - "_callable": true, - "_origin": "ast", - "community": 32, - "community_name": "ZibalService", - "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": "L225", - "_callable": true, - "_origin": "ast", - "community": 32, - "community_name": "ZibalService", - "norm_label": ".verifyandprocess()", - "id": "backend_src_payment_payment_service_paymentservice_verifyandprocess" - }, - { - "label": ".callWithRetry()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L56", - "_callable": true, - "_origin": "ast", - "community": 32, - "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": "L292", - "_callable": true, - "_origin": "ast", - "community": 32, - "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": 32, - "community_name": "ZibalService", - "norm_label": ".constructor()", - "id": "backend_src_payment_zibal_service_zibalservice_constructor" - }, - { - "label": ".getBackendUrl()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L128", - "_callable": true, - "_origin": "ast", - "community": 32, - "community_name": "ZibalService", - "norm_label": ".getbackendurl()", - "id": "backend_src_payment_zibal_service_zibalservice_getbackendurl" - }, - { - "label": ".getFrontendUrl()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L109", - "_callable": true, - "_origin": "ast", - "community": 32, - "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": 32, - "community_name": "ZibalService", - "norm_label": ".getgatewayname()", - "id": "backend_src_payment_zibal_service_zibalservice_getgatewayname" - }, - { - "label": ".getMerchant()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L91", - "_callable": true, - "_origin": "ast", - "community": 32, - "community_name": "ZibalService", - "norm_label": ".getmerchant()", - "id": "backend_src_payment_zibal_service_zibalservice_getmerchant" - }, - { - "label": ".getResultMessage()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L349", - "_callable": true, - "_origin": "ast", - "community": 32, - "community_name": "ZibalService", - "norm_label": ".getresultmessage()", - "id": "backend_src_payment_zibal_service_zibalservice_getresultmessage" - }, - { - "label": ".getStartUrl()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L205", - "_callable": true, - "_origin": "ast", - "community": 32, - "community_name": "ZibalService", - "norm_label": ".getstarturl()", - "id": "backend_src_payment_zibal_service_zibalservice_getstarturl" - }, - { - "label": ".getStatusMessage()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L372", - "_callable": true, - "_origin": "ast", - "community": 32, - "community_name": "ZibalService", - "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": "L252", - "_callable": true, - "_origin": "ast", - "community": 32, - "community_name": "ZibalService", - "norm_label": ".inquirypayment()", - "id": "backend_src_payment_zibal_service_zibalservice_inquirypayment" - }, - { - "label": ".requestPayment()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L154", - "_callable": true, - "_origin": "ast", - "community": 32, - "community_name": "ZibalService", - "norm_label": ".requestpayment()", - "id": "backend_src_payment_zibal_service_zibalservice_requestpayment" - }, - { - "label": ".verifyPayment()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L212", - "_callable": true, - "_origin": "ast", - "community": 32, - "community_name": "ZibalService", - "norm_label": ".verifypayment()", - "id": "backend_src_payment_zibal_service_zibalservice_verifypayment" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L29", - "_callable": true, - "_origin": "ast", - "community": 34, - "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": 34, - "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": 34, - "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": 34, - "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": 34, - "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": 34, - "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": 34, - "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": 34, - "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": 34, - "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": 34, - "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": 34, - "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": 34, - "community_name": "CategoriesController", - "norm_label": ".updatecategory()", - "id": "backend_src_admin_categories_service_categoriesservice_updatecategory" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "community": 35, - "community_name": "B2BController", - "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": "L24", - "_callable": true, - "_origin": "ast", - "community": 35, - "community_name": "B2BController", - "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": "L73", - "_callable": true, - "_origin": "ast", - "community": 35, - "community_name": "B2BController", - "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": "L44", - "_callable": true, - "_origin": "ast", - "community": 35, - "community_name": "B2BController", - "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": "L86", - "_callable": true, - "_origin": "ast", - "community": 35, - "community_name": "B2BController", - "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": "L64", - "_callable": true, - "_origin": "ast", - "community": 35, - "community_name": "B2BController", - "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": "L53", - "_callable": true, - "_origin": "ast", - "community": 35, - "community_name": "B2BController", - "norm_label": ".updateinquirystatus()", - "id": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus" - }, - { - "label": ".createInquiry()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "community": 35, - "community_name": "B2BController", - "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": 35, - "community_name": "B2BController", - "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": 35, - "community_name": "B2BController", - "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": 35, - "community_name": "B2BController", - "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": 35, - "community_name": "B2BController", - "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": 35, - "community_name": "B2BController", - "norm_label": ".updateinquirystatus()", - "id": "backend_src_b2b_b2b_service_b2bservice_updateinquirystatus" - }, - { - "label": "SuccessPage()", - "file_type": "code", - "source_file": "frontend/application/app/checkout/success/[id]/page.tsx", - "source_location": "L3", - "_callable": true, - "_origin": "ast", - "community": 37, - "community_name": "userStore.ts", - "norm_label": "successpage()", - "id": "frontend_application_app_checkout_success_id_page_successpage" - }, - { - "label": "ClientLayout()", - "file_type": "code", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "community": 37, - "community_name": "userStore.ts", - "norm_label": "clientlayout()", - "id": "frontend_application_app_clientlayout_clientlayout" - }, - { - "label": "generateMetadata()", - "file_type": "code", - "source_file": "frontend/application/app/layout.tsx", - "source_location": "L5", - "_callable": true, - "_origin": "ast", - "community": 37, - "community_name": "userStore.ts", - "norm_label": "generatemetadata()", - "id": "frontend_application_app_layout_generatemetadata" - }, - { - "label": "RootLayout()", - "file_type": "code", - "source_file": "frontend/application/app/layout.tsx", - "source_location": "L112", - "_callable": true, - "_origin": "ast", - "community": 37, - "community_name": "userStore.ts", - "norm_label": "rootlayout()", - "id": "frontend_application_app_layout_rootlayout" - }, - { - "label": "TrackPage()", - "file_type": "code", - "source_file": "frontend/application/app/track/page.tsx", - "source_location": "L3", - "_callable": true, - "_origin": "ast", - "community": 37, - "community_name": "userStore.ts", - "norm_label": "trackpage()", - "id": "frontend_application_app_track_page_trackpage" - }, - { - "label": "ArchiveProductCard()", - "file_type": "code", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L74", - "_callable": true, - "_origin": "ast", - "community": 37, - "community_name": "userStore.ts", - "norm_label": "archiveproductcard()", - "id": "frontend_application_components_archivepage_archiveproductcard" - }, - { - "label": "AuthModal()", - "file_type": "code", - "source_file": "frontend/application/components/AuthModal.tsx", - "source_location": "L38", - "_callable": true, - "_origin": "ast", - "community": 37, - "community_name": "userStore.ts", - "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": 37, - "community_name": "userStore.ts", - "norm_label": "extractotpfromtext()", - "id": "frontend_application_components_authmodal_extractotpfromtext" - }, - { - "label": "B2BPortal()", - "file_type": "code", - "source_file": "frontend/application/components/B2BPortal.tsx", - "source_location": "L23", - "_callable": true, - "_origin": "ast", - "community": 37, - "community_name": "userStore.ts", - "norm_label": "b2bportal()", - "id": "frontend_application_components_b2bportal_b2bportal" - }, - { - "label": "CartDrawer()", - "file_type": "code", - "source_file": "frontend/application/components/CartDrawer.tsx", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "community": 37, - "community_name": "userStore.ts", - "norm_label": "cartdrawer()", - "id": "frontend_application_components_cartdrawer_cartdrawer" - }, - { - "label": "CheckoutPage()", - "file_type": "code", - "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L33", - "_callable": true, - "_origin": "ast", - "community": 37, - "community_name": "userStore.ts", - "norm_label": "checkoutpage()", - "id": "frontend_application_components_checkoutpage_checkoutpage" - }, - { - "label": "ProductCard()", - "file_type": "code", - "source_file": "frontend/application/components/FeaturedProducts.tsx", - "source_location": "L16", - "_callable": true, - "_origin": "ast", - "community": 37, - "community_name": "userStore.ts", - "norm_label": "productcard()", - "id": "frontend_application_components_featuredproducts_productcard" - }, - { - "label": "Header()", - "file_type": "code", - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L28", - "_callable": true, - "_origin": "ast", - "community": 37, - "community_name": "userStore.ts", - "norm_label": "header()", - "id": "frontend_application_components_header_header" - }, - { - "label": "handleClickOutside()", - "file_type": "code", - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L114", - "_callable": true, - "_origin": "ast", - "community": 37, - "community_name": "userStore.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", - "community": 37, - "community_name": "userStore.ts", - "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": 37, - "community_name": "userStore.ts", - "norm_label": "ordertracking()", - "id": "frontend_application_components_ordertracking_ordertracking" - }, - { - "label": "PrescriptionUploadModal()", - "file_type": "code", - "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "community": 37, - "community_name": "userStore.ts", - "norm_label": "prescriptionuploadmodal()", - "id": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodal" - }, - { - "label": "SmartAdvisor()", - "file_type": "code", - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L52", - "_callable": true, - "_origin": "ast", - "community": 37, - "community_name": "userStore.ts", - "norm_label": "smartadvisor()", - "id": "frontend_application_components_smartadvisor_smartadvisor" - }, - { - "label": "UserDashboard()", - "file_type": "code", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "community": 37, - "community_name": "userStore.ts", - "norm_label": "userdashboard()", - "id": "frontend_application_components_userdashboard_userdashboard" - }, - { - "label": "toEnglishDigits()", - "file_type": "code", - "source_file": "frontend/application/lib/utils.ts", - "source_location": "L6", - "_callable": true, - "_origin": "ast", - "community": 37, - "community_name": "userStore.ts", - "norm_label": "toenglishdigits()", - "id": "frontend_application_lib_utils_toenglishdigits" - }, - { - "label": "getJwtRefreshSecret()", - "file_type": "code", - "source_file": "backend/src/auth/auth.constants.ts", - "source_location": "L12", - "_callable": true, - "_origin": "ast", - "community": 38, - "community_name": "UsersService", - "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": 38, - "community_name": "UsersService", - "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": 38, - "community_name": "UsersService", - "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": 38, - "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_file": "backend/src/admin/admin.controller.ts", "source_location": "L131", "_callable": true, "_origin": "ast", - "community": 38, - "community_name": "UsersService", - "norm_label": ".addaddress()", - "id": "backend_src_users_users_controller_userscontroller_addaddress" + "id": "backend_src_admin_admin_controller_admincontroller_createproduct", + "community": 103, + "community_name": "ProductDto", + "norm_label": ".createproduct()" }, { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L44", - "_callable": true, - "_origin": "ast", - "community": 38, - "community_name": "UsersService", - "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": 38, - "community_name": "UsersService", - "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": 38, - "community_name": "UsersService", - "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": 38, - "community_name": "UsersService", - "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": 38, - "community_name": "UsersService", - "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": 38, - "community_name": "UsersService", - "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": 38, - "community_name": "UsersService", - "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": "L200", - "_callable": true, - "_origin": "ast", - "community": 38, - "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": 38, - "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": "L248", - "_callable": true, - "_origin": "ast", - "community": 38, - "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": 38, - "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": "L289", - "_callable": true, - "_origin": "ast", - "community": 38, - "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": "L254", - "_callable": true, - "_origin": "ast", - "community": 38, - "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": "L265", - "_callable": true, - "_origin": "ast", - "community": 38, - "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": 38, - "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": "L222", - "_callable": true, - "_origin": "ast", - "community": 38, - "community_name": "UsersService", - "norm_label": ".updateaddress()", - "id": "backend_src_users_users_service_usersservice_updateaddress" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "community": 4, - "community_name": "CreateReviewDto", - "norm_label": ".constructor()", - "id": "backend_src_reviews_reviews_controller_reviewscontroller_constructor" - }, - { - "label": ".createReview()", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "community": 4, - "community_name": "CreateReviewDto", - "norm_label": ".createreview()", - "id": "backend_src_reviews_reviews_controller_reviewscontroller_createreview" - }, - { - "label": ".deleteReview()", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L104", - "_callable": true, - "_origin": "ast", - "community": 4, - "community_name": "CreateReviewDto", - "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", - "_callable": true, - "_origin": "ast", - "community": 4, - "community_name": "CreateReviewDto", - "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", - "_callable": true, - "_origin": "ast", - "community": 4, - "community_name": "CreateReviewDto", - "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", - "_callable": true, - "_origin": "ast", - "community": 4, - "community_name": "CreateReviewDto", - "norm_label": ".updatereviewstatus()", - "id": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "community": 4, - "community_name": "CreateReviewDto", - "norm_label": ".constructor()", - "id": "backend_src_reviews_reviews_service_reviewsservice_constructor" - }, - { - "label": ".createReview()", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "community": 4, - "community_name": "CreateReviewDto", - "norm_label": ".createreview()", - "id": "backend_src_reviews_reviews_service_reviewsservice_createreview" - }, - { - "label": ".deleteReview()", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L212", - "_callable": true, - "_origin": "ast", - "community": 4, - "community_name": "CreateReviewDto", - "norm_label": ".deletereview()", - "id": "backend_src_reviews_reviews_service_reviewsservice_deletereview" - }, - { - "label": ".getAdminReviews()", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L121", - "_callable": true, - "_origin": "ast", - "community": 4, - "community_name": "CreateReviewDto", - "norm_label": ".getadminreviews()", - "id": "backend_src_reviews_reviews_service_reviewsservice_getadminreviews" - }, - { - "label": ".getProductReviews()", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L69", - "_callable": true, - "_origin": "ast", - "community": 4, - "community_name": "CreateReviewDto", - "norm_label": ".getproductreviews()", - "id": "backend_src_reviews_reviews_service_reviewsservice_getproductreviews" - }, - { - "label": ".updateReviewStatus()", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L185", - "_callable": true, - "_origin": "ast", - "community": 4, - "community_name": "CreateReviewDto", - "norm_label": ".updatereviewstatus()", - "id": "backend_src_reviews_reviews_service_reviewsservice_updatereviewstatus" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "community": 40, - "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": 40, - "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": "L94", - "_callable": true, - "_origin": "ast", - "community": 40, - "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": 40, - "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": "L46", - "_callable": true, - "_origin": "ast", - "community": 40, - "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": "L26", - "_callable": true, - "_origin": "ast", - "community": 40, - "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": "L36", - "_callable": true, - "_origin": "ast", - "community": 40, - "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": "L40", - "_callable": true, - "_origin": "ast", - "community": 40, - "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": "L58", - "_callable": true, - "_origin": "ast", - "community": 40, - "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": "L162", - "_callable": true, - "_origin": "ast", - "community": 40, - "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": "L44", - "_callable": true, - "_origin": "ast", - "community": 40, - "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": "L106", - "_callable": true, - "_origin": "ast", - "community": 40, - "community_name": "SslController", - "norm_label": ".updatecertificates()", - "id": "backend_src_admin_ssl_service_sslservice_updatecertificates" - }, - { - "label": "PodcastPlayerModal()", - "file_type": "code", - "source_file": "frontend/application/components/PodcastPlayerModal.tsx", - "source_location": "L38", - "_callable": true, - "_origin": "ast", - "community": 41, - "community_name": "PodcastPlayerModal.tsx", - "norm_label": "podcastplayermodal()", - "id": "frontend_application_components_podcastplayermodal_podcastplayermodal" - }, - { - "label": "handleClickOutside()", - "file_type": "code", - "source_file": "frontend/application/components/PodcastPlayerModal.tsx", - "source_location": "L55", - "_callable": true, - "_origin": "ast", - "community": 41, - "community_name": "PodcastPlayerModal.tsx", - "norm_label": "handleclickoutside()", - "id": "frontend_application_components_podcastplayermodal_podcastplayermodal_handleclickoutside" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "community": 42, - "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": 42, - "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": 42, - "community_name": "IngredientsService", - "norm_label": ".findall()", - "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findall" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "community": 42, - "community_name": "IngredientsService", - "norm_label": ".findone()", - "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findone" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L58", - "_callable": true, - "_origin": "ast", - "community": 42, - "community_name": "IngredientsService", - "norm_label": ".remove()", - "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "community": 42, - "community_name": "IngredientsService", - "norm_label": ".update()", - "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.service.ts", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "community": 42, - "community_name": "IngredientsService", - "norm_label": ".constructor()", - "id": "backend_src_ingredients_ingredients_service_ingredientsservice_constructor" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.service.ts", - "source_location": "L30", - "_callable": true, - "_origin": "ast", - "community": 42, - "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": 42, - "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": 42, - "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": 42, - "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": 42, - "community_name": "IngredientsService", - "norm_label": ".update()", - "id": "backend_src_ingredients_ingredients_service_ingredientsservice_update" - }, - { - "label": ".getDashboardStats()", + "label": ".updateProduct()", "file_type": "code", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L34", + "source_location": "L138", "_callable": true, "_origin": "ast", - "community": 43, - "community_name": "RedisService", - "norm_label": ".getdashboardstats()", - "id": "backend_src_admin_admin_controller_admincontroller_getdashboardstats" + "id": "backend_src_admin_admin_controller_admincontroller_updateproduct", + "community": 103, + "community_name": "ProductDto", + "norm_label": ".updateproduct()" }, { - "label": ".constructor()", + "label": ".createProduct()", "file_type": "code", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L51", + "source_location": "L356", "_callable": true, "_origin": "ast", - "community": 43, - "community_name": "RedisService", - "norm_label": ".constructor()", - "id": "backend_src_admin_admin_service_adminservice_constructor" + "id": "backend_src_admin_admin_service_adminservice_createproduct", + "community": 103, + "community_name": "ProductDto", + "norm_label": ".createproduct()" }, { - "label": ".getDashboardStats()", + "label": ".updateProduct()", "file_type": "code", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L56", + "source_location": "L415", "_callable": true, "_origin": "ast", - "community": 43, - "community_name": "RedisService", - "norm_label": ".getdashboardstats()", - "id": "backend_src_admin_admin_service_adminservice_getdashboardstats" - }, - { - "label": ".configure()", - "file_type": "code", - "source_file": "backend/src/app.module.ts", - "source_location": "L86", - "_callable": true, - "_origin": "ast", - "community": 43, - "community_name": "RedisService", - "norm_label": ".configure()", - "id": "backend_src_app_module_appmodule_configure" - }, - { - "label": ".adminLogin()", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L254", - "_callable": true, - "_origin": "ast", - "community": 43, - "community_name": "RedisService", - "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": "L33", - "_callable": true, - "_origin": "ast", - "community": 43, - "community_name": "RedisService", - "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": "L213", - "_callable": true, - "_origin": "ast", - "community": 43, - "community_name": "RedisService", - "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": "L310", - "_callable": true, - "_origin": "ast", - "community": 43, - "community_name": "RedisService", - "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": "L160", - "_callable": true, - "_origin": "ast", - "community": 43, - "community_name": "RedisService", - "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": "L40", - "_callable": true, - "_origin": "ast", - "community": 43, - "community_name": "RedisService", - "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": "L119", - "_callable": true, - "_origin": "ast", - "community": 43, - "community_name": "RedisService", - "norm_label": ".verifyotp()", - "id": "backend_src_auth_auth_service_authservice_verifyotp" - }, - { - "label": ".incrementRequestCount()", - "file_type": "code", - "source_file": "backend/src/common/metrics.controller.ts", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "community": 43, - "community_name": "RedisService", - "norm_label": ".incrementrequestcount()", - "id": "backend_src_common_metrics_controller_metricscontroller_incrementrequestcount" - }, - { - "label": "normalizeMobile()", - "file_type": "code", - "source_file": "backend/src/common/utils/phone.utils.ts", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "community": 43, - "community_name": "RedisService", - "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": 43, - "community_name": "RedisService", - "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": 43, - "community_name": "RedisService", - "norm_label": ".get()", - "id": "backend_src_redis_redis_service_redisservice_get" - }, - { - "label": ".incr()", - "file_type": "code", - "source_file": "backend/src/redis/redis.service.ts", - "source_location": "L35", - "_callable": true, - "_origin": "ast", - "community": 43, - "community_name": "RedisService", - "norm_label": ".incr()", - "id": "backend_src_redis_redis_service_redisservice_incr" - }, - { - "label": ".onModuleDestroy()", - "file_type": "code", - "source_file": "backend/src/redis/redis.service.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "community": 43, - "community_name": "RedisService", - "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": 43, - "community_name": "RedisService", - "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": 43, - "community_name": "RedisService", - "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": 43, - "community_name": "RedisService", - "norm_label": ".ttl()", - "id": "backend_src_redis_redis_service_redisservice_ttl" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L23", - "_callable": true, - "_origin": "ast", - "community": 44, - "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": 44, - "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": 44, - "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": 44, - "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": 44, - "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": 44, - "community_name": "MediaController", - "norm_label": ".uploadfile()", - "id": "backend_src_admin_media_controller_mediacontroller_uploadfile" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/media.service.ts", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "community": 44, - "community_name": "MediaController", - "norm_label": ".constructor()", - "id": "backend_src_admin_media_service_mediaservice_constructor" - }, - { - "label": ".deleteManyMedia()", - "file_type": "code", - "source_file": "backend/src/admin/media.service.ts", - "source_location": "L65", - "_callable": true, - "_origin": "ast", - "community": 44, - "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": 44, - "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": 44, - "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": 44, - "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": 44, - "community_name": "MediaController", - "norm_label": ".uploadfile()", - "id": "backend_src_admin_media_service_mediaservice_uploadfile" - }, - { - "label": "Pagination()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Pagination.tsx", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "community": 45, - "community_name": "Pagination.tsx", - "norm_label": "pagination()", - "id": "frontend_admin_panel_src_components_ui_pagination_pagination" - }, - { - "label": "Pets()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Pets.tsx", - "source_location": "L54", - "_callable": true, - "_origin": "ast", - "community": 45, - "community_name": "Pagination.tsx", - "norm_label": "pets()", - "id": "frontend_admin_panel_src_pages_pets_pets" - }, - { - "label": "Transactions()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L89", - "_callable": true, - "_origin": "ast", - "community": 45, - "community_name": "Pagination.tsx", - "norm_label": "transactions()", - "id": "frontend_admin_panel_src_pages_transactions_transactions" - }, - { - "label": "Wiki()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", - "source_location": "L26", - "_callable": true, - "_origin": "ast", - "community": 45, - "community_name": "Pagination.tsx", - "norm_label": "wiki()", - "id": "frontend_admin_panel_src_pages_wiki_wiki" - }, - { - "label": ".addPattern()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L407", - "_callable": true, - "_origin": "ast", - "community": 46, - "community_name": "SmsService", - "norm_label": ".addpattern()", - "id": "backend_src_common_services_sms_service_smsservice_addpattern" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L54", - "_callable": true, - "_origin": "ast", - "community": 46, - "community_name": "SmsService", - "norm_label": ".constructor()", - "id": "backend_src_common_services_sms_service_smsservice_constructor" - }, - { - "label": ".editPattern()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L486", - "_callable": true, - "_origin": "ast", - "community": 46, - "community_name": "SmsService", - "norm_label": ".editpattern()", - "id": "backend_src_common_services_sms_service_smsservice_editpattern" - }, - { - "label": ".getPatterns()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L300", - "_callable": true, - "_origin": "ast", - "community": 46, - "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": 46, - "community_name": "SmsService", - "norm_label": ".getsmsconfig()", - "id": "backend_src_common_services_sms_service_smsservice_getsmsconfig" - }, - { - "label": ".parsePatternsXml()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L262", - "_callable": true, - "_origin": "ast", - "community": 46, - "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": 46, - "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": 46, - "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": "L541", - "_callable": true, - "_origin": "ast", - "community": 46, - "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": "L911", - "_callable": true, - "_origin": "ast", - "community": 46, - "community_name": "SmsService", - "norm_label": ".sendb2bnotification()", - "id": "backend_src_common_services_sms_service_smsservice_sendb2bnotification" - }, - { - "label": ".sendOtp()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L862", - "_callable": true, - "_origin": "ast", - "community": 46, - "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": "L609", - "_callable": true, - "_origin": "ast", - "community": 46, - "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": "L927", - "_callable": true, - "_origin": "ast", - "community": 46, - "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": "L894", - "_callable": true, - "_origin": "ast", - "community": 46, - "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": "L945", - "_callable": true, - "_origin": "ast", - "community": 46, - "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": "L737", - "_callable": true, - "_origin": "ast", - "community": 46, - "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": "L569", - "_callable": true, - "_origin": "ast", - "community": 46, - "community_name": "SmsService", - "norm_label": ".updatelocalpattern()", - "id": "backend_src_common_services_sms_service_smsservice_updatelocalpattern" - }, - { - "label": ".checkAndSendRefillReminders()", - "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L395", - "_callable": true, - "_origin": "ast", - "community": 46, - "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.controller.ts", - "source_location": "L55", - "_callable": true, - "_origin": "ast", - "community": 47, - "community_name": "OrdersController", - "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": 47, - "community_name": "OrdersController", - "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": 47, - "community_name": "OrdersController", - "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": "L202", - "_callable": true, - "_origin": "ast", - "community": 47, - "community_name": "OrdersController", - "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": "L194", - "_callable": true, - "_origin": "ast", - "community": 47, - "community_name": "OrdersController", - "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": 47, - "community_name": "OrdersController", - "norm_label": ".validatecoupon()", - "id": "backend_src_orders_orders_controller_orderscontroller_validatecoupon" - }, - { - "label": ".findAllByUser()", - "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L348", - "_callable": true, - "_origin": "ast", - "community": 47, - "community_name": "OrdersController", - "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": "L381", - "_callable": true, - "_origin": "ast", - "community": 47, - "community_name": "OrdersController", - "norm_label": ".findone()", - "id": "backend_src_orders_orders_service_ordersservice_findone" - }, - { - "label": ".validateCoupon()", - "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L27", - "_callable": true, - "_origin": "ast", - "community": 47, - "community_name": "OrdersController", - "norm_label": ".validatecoupon()", - "id": "backend_src_orders_orders_service_ordersservice_validatecoupon" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L28", - "_callable": true, - "_origin": "ast", - "community": 48, - "community_name": "PrescriptionsController", - "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": 48, - "community_name": "PrescriptionsController", - "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": 48, - "community_name": "PrescriptionsController", - "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": 48, - "community_name": "PrescriptionsController", - "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": 48, - "community_name": "PrescriptionsController", - "norm_label": ".review()", - "id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.service.ts", - "source_location": "L19", - "_callable": true, - "_origin": "ast", - "community": 48, - "community_name": "PrescriptionsController", - "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": 48, - "community_name": "PrescriptionsController", - "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": 48, - "community_name": "PrescriptionsController", - "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": 48, - "community_name": "PrescriptionsController", - "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": 49, - "community_name": "SmartAdvisorController", - "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": 49, - "community_name": "SmartAdvisorController", - "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": 49, - "community_name": "SmartAdvisorController", - "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": 49, - "community_name": "SmartAdvisorController", - "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": 49, - "community_name": "SmartAdvisorController", - "norm_label": ".update()", - "id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "community": 49, - "community_name": "SmartAdvisorController", - "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": 49, - "community_name": "SmartAdvisorController", - "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": 49, - "community_name": "SmartAdvisorController", - "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": 49, - "community_name": "SmartAdvisorController", - "norm_label": ".update()", - "id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_update" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L28", - "_callable": true, - "_origin": "ast", - "community": 5, - "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": "L34", - "_callable": true, - "_origin": "ast", - "community": 5, - "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": "L81", - "_callable": true, - "_origin": "ast", - "community": 5, - "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": "L45", - "_callable": true, - "_origin": "ast", - "community": 5, - "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": "L53", - "_callable": true, - "_origin": "ast", - "community": 5, - "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": "L65", - "_callable": true, - "_origin": "ast", - "community": 5, - "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": "L90", - "_callable": true, - "_origin": "ast", - "community": 5, - "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": "L17", - "_callable": true, - "_origin": "ast", - "community": 5, - "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": "L27", - "_callable": true, - "_origin": "ast", - "community": 5, - "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": "L19", - "_callable": true, - "_origin": "ast", - "community": 5, - "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": "L189", - "_callable": true, - "_origin": "ast", - "community": 5, - "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": "L94", - "_callable": true, - "_origin": "ast", - "community": 5, - "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": "L73", - "_callable": true, - "_origin": "ast", - "community": 5, - "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": "L132", - "_callable": true, - "_origin": "ast", - "community": 5, - "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": "L261", - "_callable": true, - "_origin": "ast", - "community": 5, - "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/testimonials/testimonials.controller.ts", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "community": 50, - "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": "L34", - "_callable": true, - "_origin": "ast", - "community": 50, - "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": 50, - "community_name": "TestimonialsService", - "norm_label": ".findall()", - "id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findall" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L52", - "_callable": true, - "_origin": "ast", - "community": 50, - "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": "L43", - "_callable": true, - "_origin": "ast", - "community": 50, - "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": 50, - "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": "L15", - "_callable": true, - "_origin": "ast", - "community": 50, - "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": 50, - "community_name": "TestimonialsService", - "norm_label": ".findall()", - "id": "backend_src_testimonials_testimonials_service_testimonialsservice_findall" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.service.ts", - "source_location": "L32", - "_callable": true, - "_origin": "ast", - "community": 50, - "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": "L21", - "_callable": true, - "_origin": "ast", - "community": 50, - "community_name": "TestimonialsService", - "norm_label": ".update()", - "id": "backend_src_testimonials_testimonials_service_testimonialsservice_update" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L18", - "_callable": true, - "_origin": "ast", - "community": 52, - "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": "L42", - "_callable": true, - "_origin": "ast", - "community": 52, - "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": "L35", - "_callable": true, - "_origin": "ast", - "community": 52, - "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": "L21", - "_callable": true, - "_origin": "ast", - "community": 52, - "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": "L71", - "_callable": true, - "_origin": "ast", - "community": 52, - "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": "L57", - "_callable": true, - "_origin": "ast", - "community": 52, - "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": 52, - "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": 52, - "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": 52, - "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": 52, - "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": 52, - "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": 52, - "community_name": "ContactService", - "norm_label": ".updatesubmissionstatus()", - "id": "backend_src_contact_contact_service_contactservice_updatesubmissionstatus" - }, - { - "label": ".getAdminStats()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L213", - "_callable": true, - "_origin": "ast", - "community": 53, - "community_name": "PaymentController", - "norm_label": ".getadminstats()", - "id": "backend_src_payment_payment_controller_paymentcontroller_getadminstats" - }, - { - "label": ".getAdminTransactions()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L204", - "_callable": true, - "_origin": "ast", - "community": 53, - "community_name": "PaymentController", - "norm_label": ".getadmintransactions()", - "id": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions" - }, - { - "label": ".getHealth()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L264", - "_callable": true, - "_origin": "ast", - "community": 53, - "community_name": "PaymentController", - "norm_label": ".gethealth()", - "id": "backend_src_payment_payment_controller_paymentcontroller_gethealth" - }, - { - "label": ".getTransactionStatus()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L193", - "_callable": true, - "_origin": "ast", - "community": 53, - "community_name": "PaymentController", - "norm_label": ".gettransactionstatus()", - "id": "backend_src_payment_payment_controller_paymentcontroller_gettransactionstatus" - }, - { - "label": ".handleZibalCallback()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L93", - "_callable": true, - "_origin": "ast", - "community": 53, - "community_name": "PaymentController", - "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": "L163", - "_callable": true, - "_origin": "ast", - "community": 53, - "community_name": "PaymentController", - "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": "L54", - "_callable": true, - "_origin": "ast", - "community": 53, - "community_name": "PaymentController", - "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": "L75", - "_callable": true, - "_origin": "ast", - "community": 53, - "community_name": "PaymentController", - "norm_label": ".initiatewallettopup()", - "id": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup" - }, - { - "label": ".liveInquiry()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L231", - "_callable": true, - "_origin": "ast", - "community": 53, - "community_name": "PaymentController", - "norm_label": ".liveinquiry()", - "id": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry" - }, - { - "label": ".manualReject()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L252", - "_callable": true, - "_origin": "ast", - "community": 53, - "community_name": "PaymentController", - "norm_label": ".manualreject()", - "id": "backend_src_payment_payment_controller_paymentcontroller_manualreject" - }, - { - "label": ".manualVerify()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L240", - "_callable": true, - "_origin": "ast", - "community": 53, - "community_name": "PaymentController", - "norm_label": ".manualverify()", - "id": "backend_src_payment_payment_controller_paymentcontroller_manualverify" - }, - { - "label": ".reconcilePending()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L222", - "_callable": true, - "_origin": "ast", - "community": 53, - "community_name": "PaymentController", - "norm_label": ".reconcilepending()", - "id": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending" - }, - { - "label": ".verifyPaymentDirect()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L144", - "_callable": true, - "_origin": "ast", - "community": 53, - "community_name": "PaymentController", - "norm_label": ".verifypaymentdirect()", - "id": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect" - }, - { - "label": "Badge()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Badge.tsx", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "community": 55, - "community_name": "Media.tsx", - "norm_label": "badge()", - "id": "frontend_admin_panel_src_components_ui_badge_badge" - }, - { - "label": "ImagePreviewModal()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/ImagePreviewModal.tsx", - "source_location": "L11", - "_callable": true, - "_origin": "ast", - "community": 55, - "community_name": "Media.tsx", - "norm_label": "imagepreviewmodal()", - "id": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodal" - }, - { - "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": "Media.tsx", - "norm_label": "toggleswitch()", - "id": "frontend_admin_panel_src_components_ui_toggleswitch_toggleswitch" - }, - { - "label": "getFileType()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", - "source_location": "L23", - "_callable": true, - "_origin": "ast", - "community": 55, - "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": "L32", - "_callable": true, - "_origin": "ast", - "community": 55, - "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": "L18", - "_callable": true, - "_origin": "ast", - "community": 55, - "community_name": "Media.tsx", - "norm_label": "prescriptionsmanager()", - "id": "frontend_admin_panel_src_pages_prescriptionsmanager_prescriptionsmanager" - }, - { - "label": "UITexts()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L122", - "_callable": true, - "_origin": "ast", - "community": 55, - "community_name": "Media.tsx", - "norm_label": "uitexts()", - "id": "frontend_admin_panel_src_pages_uitexts_uitexts" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/pets.controller.ts", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "community": 57, - "community_name": "PetsController", - "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": 57, - "community_name": "PetsController", - "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": 57, - "community_name": "PetsController", - "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": 57, - "community_name": "PetsController", - "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": 57, - "community_name": "PetsController", - "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": 57, - "community_name": "PetsController", - "norm_label": ".getpets()", - "id": "backend_src_admin_pets_service_petsservice_getpets" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "community": 58, - "community_name": "PaginationDto", - "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": "L10", - "_callable": true, - "_origin": "ast", - "community": 58, - "community_name": "PaginationDto", - "norm_label": ".findall()", - "id": "backend_src_blogs_blogs_service_blogsservice_findall" - }, - { - "label": ".findOneBySlug()", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L55", - "_callable": true, - "_origin": "ast", - "community": 58, - "community_name": "PaginationDto", - "norm_label": ".findonebyslug()", - "id": "backend_src_blogs_blogs_service_blogsservice_findonebyslug" - }, - { - "label": ".findAllByUser()", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L109", - "_callable": true, - "_origin": "ast", - "community": 58, - "community_name": "PaginationDto", - "norm_label": ".findallbyuser()", - "id": "backend_src_pets_pets_service_petsservice_findallbyuser" - }, - { - "label": "Checkout()", - "file_type": "code", - "source_file": "frontend/application/app/checkout/page.tsx", - "source_location": "L3", - "_callable": true, - "_origin": "ast", - "community": 6, - "community_name": "UserDashboard.tsx", - "norm_label": "checkout()", - "id": "frontend_application_app_checkout_page_checkout" - }, - { - "label": "DashboardPage()", - "file_type": "code", - "source_file": "frontend/application/app/dashboard/page.tsx", - "source_location": "L3", - "_callable": true, - "_origin": "ast", - "community": 6, - "community_name": "UserDashboard.tsx", - "norm_label": "dashboardpage()", - "id": "frontend_application_app_dashboard_page_dashboardpage" - }, - { - "label": "PaymentVerifyPage()", - "file_type": "code", - "source_file": "frontend/application/app/payment/verify/page.tsx", - "source_location": "L319", - "_callable": true, - "_origin": "ast", - "community": 6, - "community_name": "UserDashboard.tsx", - "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": 6, - "community_name": "UserDashboard.tsx", - "norm_label": "verifycontent()", - "id": "frontend_application_app_payment_verify_page_verifycontent" - }, - { - "label": "AddressModal()", - "file_type": "code", - "source_file": "frontend/application/components/AddressModal.tsx", - "source_location": "L18", - "_callable": true, - "_origin": "ast", - "community": 6, - "community_name": "UserDashboard.tsx", - "norm_label": "addressmodal()", - "id": "frontend_application_components_addressmodal_addressmodal" - }, - { - "label": "BackButton()", - "file_type": "code", - "source_file": "frontend/application/components/BackButton.tsx", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "community": 6, - "community_name": "UserDashboard.tsx", - "norm_label": "backbutton()", - "id": "frontend_application_components_backbutton_backbutton" - }, - { - "label": "DeleteConfirmModal()", - "file_type": "code", - "source_file": "frontend/application/components/DeleteConfirmModal.tsx", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "community": 6, - "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": 6, - "community_name": "UserDashboard.tsx", - "norm_label": "headerbutton()", - "id": "frontend_application_components_headerbutton_headerbutton" - }, - { - "label": "LoginModal()", - "file_type": "code", - "source_file": "frontend/application/components/LoginModal.tsx", - "source_location": "L18", - "_callable": true, - "_origin": "ast", - "community": 6, - "community_name": "UserDashboard.tsx", - "norm_label": "loginmodal()", - "id": "frontend_application_components_loginmodal_loginmodal" - }, - { - "label": "OrderDetailsModal()", - "file_type": "code", - "source_file": "frontend/application/components/OrderDetailsModal.tsx", - "source_location": "L37", - "_callable": true, - "_origin": "ast", - "community": 6, - "community_name": "UserDashboard.tsx", - "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": 6, - "community_name": "UserDashboard.tsx", - "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": 6, - "community_name": "UserDashboard.tsx", - "norm_label": "getstatuslabel()", - "id": "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatuslabel" - }, - { - "label": "PetProfile()", - "file_type": "code", - "source_file": "frontend/application/components/PetProfile.tsx", - "source_location": "L40", - "_callable": true, - "_origin": "ast", - "community": 6, - "community_name": "UserDashboard.tsx", - "norm_label": "petprofile()", - "id": "frontend_application_components_petprofile_petprofile" - }, - { - "label": "SearchableSelect()", - "file_type": "code", - "source_file": "frontend/application/components/SearchableSelect.tsx", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "community": 6, - "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": "L23", - "_callable": true, - "_origin": "ast", - "community": 6, - "community_name": "UserDashboard.tsx", - "norm_label": "topupmodal()", - "id": "frontend_application_components_topupmodal_topupmodal" - }, - { - "label": "cn()", - "file_type": "code", - "source_file": "frontend/application/lib/utils.ts", - "source_location": "L11", - "_callable": true, - "_origin": "ast", - "community": 6, - "community_name": "UserDashboard.tsx", - "norm_label": "cn()", - "id": "frontend_application_lib_utils_cn" - }, - { - "label": "toPersian()", - "file_type": "code", - "source_file": "frontend/application/lib/utils.ts", - "source_location": "L1", - "_callable": true, - "_origin": "ast", - "community": 6, - "community_name": "UserDashboard.tsx", - "norm_label": "topersian()", - "id": "frontend_application_lib_utils_topersian" - }, - { - "label": "HomeClient()", - "file_type": "code", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "community": 61, - "community_name": "HomeClient.tsx", - "norm_label": "homeclient()", - "id": "frontend_application_app_homeclient_homeclient" - }, - { - "label": "getHomeData()", - "file_type": "code", - "source_file": "frontend/application/app/page.tsx", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "community": 61, - "community_name": "HomeClient.tsx", - "norm_label": "gethomedata()", - "id": "frontend_application_app_page_gethomedata" - }, - { - "label": "Home()", - "file_type": "code", - "source_file": "frontend/application/app/page.tsx", - "source_location": "L55", - "_callable": true, - "_origin": "ast", - "community": 61, - "community_name": "HomeClient.tsx", - "norm_label": "home()", - "id": "frontend_application_app_page_home" - }, - { - "label": "Shop()", - "file_type": "code", - "source_file": "frontend/application/app/shop/page.tsx", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "community": 61, - "community_name": "HomeClient.tsx", - "norm_label": "shop()", - "id": "frontend_application_app_shop_page_shop" - }, - { - "label": "ArchivePage()", - "file_type": "code", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L227", - "_callable": true, - "_origin": "ast", - "community": 61, - "community_name": "HomeClient.tsx", - "norm_label": "archivepage()", - "id": "frontend_application_components_archivepage_archivepage" - }, - { - "label": "BannerPlacement()", - "file_type": "code", - "source_file": "frontend/application/components/BannerPlacement.tsx", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "community": 61, - "community_name": "HomeClient.tsx", - "norm_label": "bannerplacement()", - "id": "frontend_application_components_bannerplacement_bannerplacement" - }, - { - "label": ".getBanners()", - "file_type": "code", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L327", - "_callable": true, - "_origin": "ast", - "community": 61, - "community_name": "HomeClient.tsx", - "norm_label": ".getbanners()", - "id": "frontend_application_lib_services_productservice_productservice_getbanners" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L30", - "_callable": true, - "_origin": "ast", - "community": 62, - "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.controller.ts", - "source_location": "L43", - "_callable": true, - "_origin": "ast", - "community": 62, - "community_name": "BlogsController", - "norm_label": ".createblog()", - "id": "backend_src_admin_blogs_controller_blogscontroller_createblog" - }, - { - "label": ".deleteBlog()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L63", - "_callable": true, - "_origin": "ast", - "community": 62, - "community_name": "BlogsController", - "norm_label": ".deleteblog()", - "id": "backend_src_admin_blogs_controller_blogscontroller_deleteblog" - }, - { - "label": ".getBlogs()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L37", - "_callable": true, - "_origin": "ast", - "community": 62, - "community_name": "BlogsController", - "norm_label": ".getblogs()", - "id": "backend_src_admin_blogs_controller_blogscontroller_getblogs" - }, - { - "label": ".updateBlog()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L53", - "_callable": true, - "_origin": "ast", - "community": 62, - "community_name": "BlogsController", - "norm_label": ".updateblog()", - "id": "backend_src_admin_blogs_controller_blogscontroller_updateblog" + "id": "backend_src_admin_admin_service_adminservice_updateproduct", + "community": 103, + "community_name": "ProductDto", + "norm_label": ".updateproduct()" }, { "label": ".adminLogin()", @@ -12355,10 +5587,10 @@ "source_location": "L89", "_callable": true, "_origin": "ast", - "community": 63, - "community_name": "AuthController", - "norm_label": ".adminlogin()", - "id": "backend_src_auth_auth_controller_authcontroller_adminlogin" + "id": "backend_src_auth_auth_controller_authcontroller_adminlogin", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": ".adminlogin()" }, { "label": ".constructor()", @@ -12367,10 +5599,10 @@ "source_location": "L34", "_callable": true, "_origin": "ast", - "community": 63, - "community_name": "AuthController", - "norm_label": ".constructor()", - "id": "backend_src_auth_auth_controller_authcontroller_constructor" + "id": "backend_src_auth_auth_controller_authcontroller_constructor", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": ".constructor()" }, { "label": ".login()", @@ -12379,10 +5611,10 @@ "source_location": "L80", "_callable": true, "_origin": "ast", - "community": 63, - "community_name": "AuthController", - "norm_label": ".login()", - "id": "backend_src_auth_auth_controller_authcontroller_login" + "id": "backend_src_auth_auth_controller_authcontroller_login", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": ".login()" }, { "label": ".logout()", @@ -12391,10 +5623,10 @@ "source_location": "L107", "_callable": true, "_origin": "ast", - "community": 63, - "community_name": "AuthController", - "norm_label": ".logout()", - "id": "backend_src_auth_auth_controller_authcontroller_logout" + "id": "backend_src_auth_auth_controller_authcontroller_logout", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": ".logout()" }, { "label": ".refresh()", @@ -12403,10 +5635,10 @@ "source_location": "L99", "_callable": true, "_origin": "ast", - "community": 63, - "community_name": "AuthController", - "norm_label": ".refresh()", - "id": "backend_src_auth_auth_controller_authcontroller_refresh" + "id": "backend_src_auth_auth_controller_authcontroller_refresh", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": ".refresh()" }, { "label": ".register()", @@ -12415,10 +5647,10 @@ "source_location": "L71", "_callable": true, "_origin": "ast", - "community": 63, - "community_name": "AuthController", - "norm_label": ".register()", - "id": "backend_src_auth_auth_controller_authcontroller_register" + "id": "backend_src_auth_auth_controller_authcontroller_register", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": ".register()" }, { "label": ".sendOtp()", @@ -12427,10 +5659,10 @@ "source_location": "L49", "_callable": true, "_origin": "ast", - "community": 63, - "community_name": "AuthController", - "norm_label": ".sendotp()", - "id": "backend_src_auth_auth_controller_authcontroller_sendotp" + "id": "backend_src_auth_auth_controller_authcontroller_sendotp", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": ".sendotp()" }, { "label": ".verifyOtp()", @@ -12439,754 +5671,10 @@ "source_location": "L60", "_callable": true, "_origin": "ast", - "community": 63, - "community_name": "AuthController", - "norm_label": ".verifyotp()", - "id": "backend_src_auth_auth_controller_authcontroller_verifyotp" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.service.ts", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "community": 64, - "community_name": "prescriptions.controller.ts", - "norm_label": ".constructor()", - "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_constructor" - }, - { - "label": "formatPriceWithCommas()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", - "source_location": "L26", - "_callable": true, - "_origin": "ast", - "community": 66, - "community_name": "Coupons.tsx", - "norm_label": "formatpricewithcommas()", - "id": "frontend_admin_panel_src_components_ui_priceinput_formatpricewithcommas" - }, - { - "label": "PriceInput()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", - "source_location": "L33", - "_callable": true, - "_origin": "ast", - "community": 66, - "community_name": "Coupons.tsx", - "norm_label": "priceinput()", - "id": "frontend_admin_panel_src_components_ui_priceinput_priceinput" - }, - { - "label": "toEnglishDigits()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", - "source_location": "L18", - "_callable": true, - "_origin": "ast", - "community": 66, - "community_name": "Coupons.tsx", - "norm_label": "toenglishdigits()", - "id": "frontend_admin_panel_src_components_ui_priceinput_toenglishdigits" - }, - { - "label": "CouponModal()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L259", - "_callable": true, - "_origin": "ast", - "community": 66, - "community_name": "Coupons.tsx", - "norm_label": "couponmodal()", - "id": "frontend_admin_panel_src_pages_coupons_couponmodal" - }, - { - "label": "Coupons()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L43", - "_callable": true, - "_origin": "ast", - "community": 66, - "community_name": "Coupons.tsx", - "norm_label": "coupons()", - "id": "frontend_admin_panel_src_pages_coupons_coupons" - }, - { - "label": "FinancialSettingsPage()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "community": 66, - "community_name": "Coupons.tsx", - "norm_label": "financialsettingspage()", - "id": "frontend_admin_panel_src_pages_financialsettingspage_financialsettingspage" - }, - { - "label": "Products()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L62", - "_callable": true, - "_origin": "ast", - "community": 66, - "community_name": "Coupons.tsx", - "norm_label": "products()", - "id": "frontend_admin_panel_src_pages_products_products" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L29", - "_callable": true, - "_origin": "ast", - "community": 69, - "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": 69, - "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": 69, - "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": 69, - "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": 69, - "community_name": "WikiController", - "norm_label": ".updateterm()", - "id": "backend_src_admin_wiki_controller_wikicontroller_updateterm" - }, - { - "label": "ConfirmModal()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/ConfirmModal.tsx", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "community": 7, - "community_name": "MediaSelector.tsx", - "norm_label": "confirmmodal()", - "id": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal" - }, - { - "label": "getFileType()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", - "source_location": "L27", - "_callable": true, - "_origin": "ast", - "community": 7, - "community_name": "MediaSelector.tsx", - "norm_label": "getfiletype()", - "id": "frontend_admin_panel_src_components_ui_mediaselector_getfiletype" - }, - { - "label": "MediaSelector()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "community": 7, - "community_name": "MediaSelector.tsx", - "norm_label": "mediaselector()", - "id": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector" - }, - { - "label": "BannersManager()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "community": 7, - "community_name": "MediaSelector.tsx", - "norm_label": "bannersmanager()", - "id": "frontend_admin_panel_src_pages_bannersmanager_bannersmanager" - }, - { - "label": "Blogs()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", - "source_location": "L27", - "_callable": true, - "_origin": "ast", - "community": 7, - "community_name": "MediaSelector.tsx", - "norm_label": "blogs()", - "id": "frontend_admin_panel_src_pages_blogs_blogs" - }, - { - "label": "Categories()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Categories.tsx", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "community": 7, - "community_name": "MediaSelector.tsx", - "norm_label": "categories()", - "id": "frontend_admin_panel_src_pages_categories_categories" - }, - { - "label": "CMS()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/CMS.tsx", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "community": 7, - "community_name": "MediaSelector.tsx", - "norm_label": "cms()", - "id": "frontend_admin_panel_src_pages_cms_cms" - }, - { - "label": "DoctorsManager()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", - "source_location": "L28", - "_callable": true, - "_origin": "ast", - "community": 7, - "community_name": "MediaSelector.tsx", - "norm_label": "doctorsmanager()", - "id": "frontend_admin_panel_src_pages_doctorsmanager_doctorsmanager" - }, - { - "label": "IngredientsManager()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "community": 7, - "community_name": "MediaSelector.tsx", - "norm_label": "ingredientsmanager()", - "id": "frontend_admin_panel_src_pages_ingredientsmanager_ingredientsmanager" - }, - { - "label": "TestimonialsManager()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "community": 7, - "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": "L34", - "_callable": true, - "_origin": "ast", - "community": 7, - "community_name": "MediaSelector.tsx", - "norm_label": "videos()", - "id": "frontend_admin_panel_src_pages_videos_videos" - }, - { - "label": ".getCoupons()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L183", - "_callable": true, - "_origin": "ast", - "community": 70, - "community_name": "AdminQueryDto", - "norm_label": ".getcoupons()", - "id": "backend_src_admin_admin_controller_admincontroller_getcoupons" - }, - { - "label": ".getOrders()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L158", - "_callable": true, - "_origin": "ast", - "community": 70, - "community_name": "AdminQueryDto", - "norm_label": ".getorders()", - "id": "backend_src_admin_admin_controller_admincontroller_getorders" - }, - { - "label": ".getProducts()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L124", - "_callable": true, - "_origin": "ast", - "community": 70, - "community_name": "AdminQueryDto", - "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": "L268", - "_callable": true, - "_origin": "ast", - "community": 70, - "community_name": "AdminQueryDto", - "norm_label": ".getsettings()", - "id": "backend_src_admin_admin_controller_admincontroller_getsettings" - }, - { - "label": ".getUsers()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L44", - "_callable": true, - "_origin": "ast", - "community": 70, - "community_name": "AdminQueryDto", - "norm_label": ".getusers()", - "id": "backend_src_admin_admin_controller_admincontroller_getusers" - }, - { - "label": ".getCoupons()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L561", - "_callable": true, - "_origin": "ast", - "community": 70, - "community_name": "AdminQueryDto", - "norm_label": ".getcoupons()", - "id": "backend_src_admin_admin_service_adminservice_getcoupons" - }, - { - "label": ".getOrders()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L489", - "_callable": true, - "_origin": "ast", - "community": 70, - "community_name": "AdminQueryDto", - "norm_label": ".getorders()", - "id": "backend_src_admin_admin_service_adminservice_getorders" - }, - { - "label": ".getProducts()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L280", - "_callable": true, - "_origin": "ast", - "community": 70, - "community_name": "AdminQueryDto", - "norm_label": ".getproducts()", - "id": "backend_src_admin_admin_service_adminservice_getproducts" - }, - { - "label": ".getUsers()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L100", - "_callable": true, - "_origin": "ast", - "community": 70, - "community_name": "AdminQueryDto", - "norm_label": ".getusers()", - "id": "backend_src_admin_admin_service_adminservice_getusers" - }, - { - "label": ".addHealthLog()", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L285", - "_callable": true, - "_origin": "ast", - "community": 71, - "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": 71, - "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": 71, - "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": 71, - "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": 71, - "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": 71, - "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": 71, - "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": 71, - "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": 71, - "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": "L111", - "_callable": true, - "_origin": "ast", - "community": 71, - "community_name": "PetsController", - "norm_label": ".uploadpetimage()", - "id": "backend_src_pets_pets_controller_petscontroller_uploadpetimage" - }, - { - "label": ".addHealthLog()", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L260", - "_callable": true, - "_origin": "ast", - "community": 71, - "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": 71, - "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": 71, - "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": 71, - "community_name": "PetsController", - "norm_label": ".create()", - "id": "backend_src_pets_pets_service_petsservice_create" - }, - { - "label": ".findAllAdmin()", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "community": 71, - "community_name": "PetsController", - "norm_label": ".findalladmin()", - "id": "backend_src_pets_pets_service_petsservice_findalladmin" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L150", - "_callable": true, - "_origin": "ast", - "community": 71, - "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": 71, - "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": 71, - "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": 71, - "community_name": "PetsController", - "norm_label": ".update()", - "id": "backend_src_pets_pets_service_petsservice_update" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/seo/seo.controller.ts", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "community": 72, - "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": 72, - "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": 72, - "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": 72, - "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": 72, - "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": 72, - "community_name": "seo.module.ts", - "norm_label": ".getsitemapurls()", - "id": "backend_src_seo_seo_service_seoservice_getsitemapurls" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/home/home.controller.ts", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "community": 79, - "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": 79, - "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": 79, - "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": 79, - "community_name": "HomeController", - "norm_label": ".gethomedata()", - "id": "backend_src_home_home_service_homeservice_gethomedata" + "id": "backend_src_auth_auth_controller_authcontroller_verifyotp", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": ".verifyotp()" }, { "label": ".constructor()", @@ -13195,10 +5683,10 @@ "source_location": "L13", "_callable": true, "_origin": "ast", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": ".constructor()", - "id": "backend_src_admin_blogs_service_blogsservice_constructor" + "id": "backend_src_admin_blogs_service_blogsservice_constructor", + "community": 106, + "community_name": "BlogsService", + "norm_label": ".constructor()" }, { "label": ".createBlog()", @@ -13207,10 +5695,10 @@ "source_location": "L46", "_callable": true, "_origin": "ast", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": ".createblog()", - "id": "backend_src_admin_blogs_service_blogsservice_createblog" + "id": "backend_src_admin_blogs_service_blogsservice_createblog", + "community": 106, + "community_name": "BlogsService", + "norm_label": ".createblog()" }, { "label": ".deleteBlog()", @@ -13219,10 +5707,10 @@ "source_location": "L61", "_callable": true, "_origin": "ast", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": ".deleteblog()", - "id": "backend_src_admin_blogs_service_blogsservice_deleteblog" + "id": "backend_src_admin_blogs_service_blogsservice_deleteblog", + "community": 106, + "community_name": "BlogsService", + "norm_label": ".deleteblog()" }, { "label": ".getBlogs()", @@ -13231,10 +5719,10 @@ "source_location": "L15", "_callable": true, "_origin": "ast", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": ".getblogs()", - "id": "backend_src_admin_blogs_service_blogsservice_getblogs" + "id": "backend_src_admin_blogs_service_blogsservice_getblogs", + "community": 106, + "community_name": "BlogsService", + "norm_label": ".getblogs()" }, { "label": ".updateBlog()", @@ -13243,10 +5731,7522 @@ "source_location": "L55", "_callable": true, "_origin": "ast", + "id": "backend_src_admin_blogs_service_blogsservice_updateblog", + "community": 106, + "community_name": "BlogsService", + "norm_label": ".updateblog()" + }, + { + "label": "TrustSealsPage()", + "file_type": "code", + "source_file": "frontend/application/app/trust-seals/page.tsx", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_trust_seals_page_trustsealspage", + "community": 11, + "community_name": "useSettingsStore", + "norm_label": "trustsealspage()" + }, + { + "label": "BrandLogo()", + "file_type": "code", + "source_file": "frontend/application/components/BrandLogo.tsx", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_brandlogo_brandlogo", + "community": 11, + "community_name": "useSettingsStore", + "norm_label": "brandlogo()" + }, + { + "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": 11, + "community_name": "useSettingsStore", + "norm_label": "enamadbadge()" + }, + { + "label": "Footer()", + "file_type": "code", + "source_file": "frontend/application/components/Footer.tsx", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_footer_footer", + "community": 11, + "community_name": "useSettingsStore", + "norm_label": "footer()" + }, + { + "label": "Hero()", + "file_type": "code", + "source_file": "frontend/application/components/Hero.tsx", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_hero_hero", + "community": 11, + "community_name": "useSettingsStore", + "norm_label": "hero()" + }, + { + "label": "StatCounter()", + "file_type": "code", + "source_file": "frontend/application/components/Hero.tsx", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_hero_statcounter", + "community": 11, + "community_name": "useSettingsStore", + "norm_label": "statcounter()" + }, + { + "label": "MaintenancePage()", + "file_type": "code", + "source_file": "frontend/application/components/MaintenancePage.tsx", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_maintenancepage_maintenancepage", + "community": 11, + "community_name": "useSettingsStore", + "norm_label": "maintenancepage()" + }, + { + "label": "TickerBanner()", + "file_type": "code", + "source_file": "frontend/application/components/TickerBanner.tsx", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_tickerbanner_tickerbanner", + "community": 11, + "community_name": "useSettingsStore", + "norm_label": "tickerbanner()" + }, + { + "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": 11, + "community_name": "useSettingsStore", + "norm_label": "tooltip()" + }, + { + "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": 110, + "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": 110, + "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": 110, + "community_name": "AppService", + "norm_label": ".gethello()" + }, + { + "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": 12, + "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": 12, + "community_name": "adminRoutes.tsx", + "norm_label": "suspensefallback()" + }, + { + "label": "ContactSubmissions()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_contactsubmissions_contactsubmissions", + "community": 12, + "community_name": "adminRoutes.tsx", + "norm_label": "contactsubmissions()" + }, + { + "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": 12, + "community_name": "adminRoutes.tsx", + "norm_label": "dashboard()" + }, + { + "label": "Tickets()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", + "source_location": "L58", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_tickets_tickets", + "community": 12, + "community_name": "adminRoutes.tsx", + "norm_label": "tickets()" + }, + { + "label": "WholesaleApplications()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_wholesaleapplications_wholesaleapplications", + "community": 12, + "community_name": "adminRoutes.tsx", + "norm_label": "wholesaleapplications()" + }, + { + "label": "CustomTooltip()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_reports_customtooltip", + "community": 124, + "community_name": "Reports.tsx", + "norm_label": "customtooltip()" + }, + { + "label": "Reports()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_reports_reports", + "community": 124, + "community_name": "Reports.tsx", + "norm_label": "reports()" + }, + { + "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": 127, + "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": 127, + "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": 127, + "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": 127, + "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": 127, + "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": 127, + "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": 127, + "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": 127, + "community_name": "orchestrate.py", + "norm_label": "save_json()" + }, + { + "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": 13, + "community_name": "PrismaService", + "norm_label": ".ensuretablesexist()" + }, + { + "label": ".onModuleDestroy()", + "file_type": "code", + "source_file": "backend/src/prisma/prisma.service.ts", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "id": "backend_src_prisma_prisma_service_prismaservice_onmoduledestroy", + "community": 13, + "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": 13, + "community_name": "PrismaService", + "norm_label": ".onmoduleinit()" + }, + { + "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": 134, + "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": 134, + "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": 134, + "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": 134, + "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": 134, + "community_name": "ErrorBoundary", + "norm_label": ".render()" + }, + { + "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": 136, + "community_name": "generate-openapi.js", + "norm_label": "generateopenapi()" + }, + { + "label": ".getAdminTransactions()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L669", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_service_paymentservice_getadmintransactions", + "community": 137, + "community_name": "AdminTransactionFilterDto", + "norm_label": ".getadmintransactions()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "backend_src_blogs_blogs_controller_blogscontroller_constructor", + "community": 14, + "community_name": "BlogsController", + "norm_label": ".constructor()" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "backend_src_blogs_blogs_controller_blogscontroller_findall", + "community": 14, + "community_name": "BlogsController", + "norm_label": ".findall()" + }, + { + "label": ".findOne()", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "backend_src_blogs_blogs_controller_blogscontroller_findone", + "community": 14, + "community_name": "BlogsController", + "norm_label": ".findone()" + }, + { + "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": 141, + "community_name": "WikiController", + "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": 141, + "community_name": "WikiController", + "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": 141, + "community_name": "WikiController", + "norm_label": ".findone()" + }, + { + "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": 141, + "community_name": "WikiController", + "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": 141, + "community_name": "WikiController", + "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": 141, + "community_name": "WikiController", + "norm_label": ".findonebykey()" + }, + { + "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": 145, + "community_name": "Spinner.tsx", + "norm_label": "spinner()" + }, + { + "label": "Reviews()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_reviews_reviews", + "community": 145, + "community_name": "Spinner.tsx", + "norm_label": "reviews()" + }, + { + "label": "toPersianDigits()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_reviews_topersiandigits", + "community": 145, + "community_name": "Spinner.tsx", + "norm_label": "topersiandigits()" + }, + { + "label": "SeoSettingsPage()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_seosettingspage_seosettingspage", + "community": 145, + "community_name": "Spinner.tsx", + "norm_label": "seosettingspage()" + }, + { + "label": "Settings()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Settings.tsx", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_settings_settings", + "community": 145, + "community_name": "Spinner.tsx", + "norm_label": "settings()" + }, + { + "label": "SmsSettingsPage()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L84", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_smssettingspage_smssettingspage", + "community": 145, + "community_name": "Spinner.tsx", + "norm_label": "smssettingspage()" + }, + { + "label": "SslSettingsPage()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_sslsettingspage_sslsettingspage", + "community": 145, + "community_name": "Spinner.tsx", + "norm_label": "sslsettingspage()" + }, + { + "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": 146, + "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": 146, + "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": 146, + "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": 146, + "community_name": "ErrorPages.tsx", + "norm_label": "servererrorpage()" + }, + { + "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": 15, + "community_name": "ProductsService", + "norm_label": ".constructor()" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "id": "backend_src_products_products_controller_productscontroller_findall", + "community": 15, + "community_name": "ProductsService", + "norm_label": ".findall()" + }, + { + "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": 15, + "community_name": "ProductsService", + "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": 15, + "community_name": "ProductsService", + "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": 15, + "community_name": "ProductsService", + "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": 15, + "community_name": "ProductsService", + "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": 15, + "community_name": "ProductsService", + "norm_label": ".updatedosageconfig()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "backend_src_products_products_service_productsservice_constructor", + "community": 15, + "community_name": "ProductsService", + "norm_label": ".constructor()" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "backend_src_products_products_service_productsservice_findall", + "community": 15, + "community_name": "ProductsService", + "norm_label": ".findall()" + }, + { + "label": ".findOne()", + "file_type": "code", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L128", + "_callable": true, + "_origin": "ast", + "id": "backend_src_products_products_service_productsservice_findone", + "community": 15, + "community_name": "ProductsService", + "norm_label": ".findone()" + }, + { + "label": ".getActiveFilters()", + "file_type": "code", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L177", + "_callable": true, + "_origin": "ast", + "id": "backend_src_products_products_service_productsservice_getactivefilters", + "community": 15, + "community_name": "ProductsService", + "norm_label": ".getactivefilters()" + }, + { + "label": ".getDosageConfig()", + "file_type": "code", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L247", + "_callable": true, + "_origin": "ast", + "id": "backend_src_products_products_service_productsservice_getdosageconfig", + "community": 15, + "community_name": "ProductsService", + "norm_label": ".getdosageconfig()" + }, + { + "label": ".getNavigationFilters()", + "file_type": "code", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L212", + "_callable": true, + "_origin": "ast", + "id": "backend_src_products_products_service_productsservice_getnavigationfilters", + "community": 15, + "community_name": "ProductsService", + "norm_label": ".getnavigationfilters()" + }, + { + "label": ".updateDosageConfig()", + "file_type": "code", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L258", + "_callable": true, + "_origin": "ast", + "id": "backend_src_products_products_service_productsservice_updatedosageconfig", + "community": 15, + "community_name": "ProductsService", + "norm_label": ".updatedosageconfig()" + }, + { + "label": "checkAndOpen()", + "file_type": "code", + "source_file": "scripts/open-browsers.js", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "scripts_open_browsers_checkandopen", + "community": 156, + "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": 156, + "community_name": "open-browsers.js", + "norm_label": "openurl()" + }, + { + "label": "waitForBackend()", + "file_type": "code", + "source_file": "scripts/start-dev.js", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "id": "scripts_start_dev_waitforbackend", + "community": 157, + "community_name": "start-dev.js", + "norm_label": "waitforbackend()" + }, + { + "label": "check()", + "file_type": "code", + "source_file": "scripts/start-dev.js", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "scripts_start_dev_waitforbackend_check", + "community": 157, + "community_name": "start-dev.js", + "norm_label": "check()" + }, + { + "label": "ContactPage()", + "file_type": "code", + "source_file": "frontend/application/app/contact/page.tsx", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_contact_page_contactpage", + "community": 16, + "community_name": "lib/services/api.ts", + "norm_label": "contactpage()" + }, + { + "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": 16, + "community_name": "lib/services/api.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": 16, + "community_name": "lib/services/api.ts", + "norm_label": "fetchcontactinfo()" + }, + { + "label": "TestimonialsSection()", + "file_type": "code", + "source_file": "frontend/application/components/TestimonialsSection.tsx", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_testimonialssection_testimonialssection", + "community": 16, + "community_name": "lib/services/api.ts", + "norm_label": "testimonialssection()" + }, + { + "label": "loadTestimonials()", + "file_type": "code", + "source_file": "frontend/application/components/TestimonialsSection.tsx", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_testimonialssection_testimonialssection_loadtestimonials", + "community": 16, + "community_name": "lib/services/api.ts", + "norm_label": "loadtestimonials()" + }, + { + "label": "getBaseURL()", + "file_type": "code", + "source_file": "frontend/application/lib/services/api.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_lib_services_api_getbaseurl", + "community": 16, + "community_name": "lib/services/api.ts", + "norm_label": "getbaseurl()" + }, + { + "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": 16, + "community_name": "lib/services/api.ts", + "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": 16, + "community_name": "lib/services/api.ts", + "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": 16, + "community_name": "lib/services/api.ts", + "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": 16, + "community_name": "lib/services/api.ts", + "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": 16, + "community_name": "lib/services/api.ts", + "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": 16, + "community_name": "lib/services/api.ts", + "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": 16, + "community_name": "lib/services/api.ts", + "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": 16, + "community_name": "lib/services/api.ts", + "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": 16, + "community_name": "lib/services/api.ts", + "norm_label": ".verifyotp()" + }, + { + "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": 16, + "community_name": "lib/services/api.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": 16, + "community_name": "lib/services/api.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": 16, + "community_name": "lib/services/api.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": 16, + "community_name": "lib/services/api.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": 16, + "community_name": "lib/services/api.ts", + "norm_label": ".getuserorders()" + }, + { + "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": 160, + "community_name": "paginated-response.schema.ts", + "norm_label": "createpaginatedschema()" + }, + { + "label": "BlogPostPage()", + "file_type": "code", + "source_file": "frontend/application/app/blog/[slug]/page.tsx", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_blog_slug_page_blogpostpage", + "community": 168, + "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": "L32", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_blog_slug_page_generatemetadata", + "community": 168, + "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": "L9", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_blog_slug_page_getblog", + "community": 168, + "community_name": "blog/[slug]/page.tsx", + "norm_label": "getblog()" + }, + { + "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": 17, + "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": 17, + "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": 17, + "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": 17, + "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": 17, + "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": 17, + "community_name": "CreateVideoDto", + "norm_label": ".update()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "backend_src_videos_videos_service_videosservice_constructor", + "community": 17, + "community_name": "CreateVideoDto", + "norm_label": ".constructor()" + }, + { + "label": ".create()", + "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": 17, + "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": 17, + "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": 17, + "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": 17, + "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": 17, + "community_name": "CreateVideoDto", + "norm_label": ".update()" + }, + { + "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": 175, + "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": 176, + "community_name": "seed-wiki.ts", + "norm_label": "main()" + }, + { + "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": 18, + "community_name": "src/services/api.ts", + "norm_label": "protectedroute()" + }, + { + "label": "Topbar()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/Topbar.tsx", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_components_topbar_topbar", + "community": 18, + "community_name": "src/services/api.ts", + "norm_label": "topbar()" + }, + { + "label": "B2BManager()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_b2bmanager_b2bmanager", + "community": 18, + "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": 18, + "community_name": "src/services/api.ts", + "norm_label": "login()" + }, + { + "label": "SmartAdvisorManager()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_smartadvisormanager_smartadvisormanager", + "community": 18, + "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": "L8", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_systemsettingspage_systemsettingspage", + "community": 18, + "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": 18, + "community_name": "src/services/api.ts", + "norm_label": "processqueue()" + }, + { + "label": "generateMetadata()", + "file_type": "code", + "source_file": "frontend/application/app/wiki/[slug]/page.tsx", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_wiki_slug_page_generatemetadata", + "community": 186, + "community_name": "wiki/[slug]/page.tsx", + "norm_label": "generatemetadata()" + }, + { + "label": "getWikiTerm()", + "file_type": "code", + "source_file": "frontend/application/app/wiki/[slug]/page.tsx", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_wiki_slug_page_getwikiterm", + "community": 186, + "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": "L29", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_wiki_slug_page_wikitermpage", + "community": 186, + "community_name": "wiki/[slug]/page.tsx", + "norm_label": "wikitermpage()" + }, + { + "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": 19, + "community_name": "pets/pets.controller.ts", + "norm_label": ".constructor()" + }, + { + "label": ".addHealthLog()", + "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": 19, + "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": 19, + "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": 19, + "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": 19, + "community_name": "pets/pets.controller.ts", + "norm_label": ".create()" + }, + { + "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": 19, + "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": 19, + "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": 19, + "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": 19, + "community_name": "pets/pets.controller.ts", + "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": 197, + "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": 198, + "community_name": "seed-custom.ts", + "norm_label": "main()" + }, + { + "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": 2, + "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": 2, + "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": 2, + "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": 2, + "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": 2, + "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": 2, + "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": 2, + "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": 2, + "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": 2, + "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": 2, + "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": 2, + "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": 2, + "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": 2, + "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": 2, + "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": 2, + "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": 2, + "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": 2, + "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": 2, + "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": 2, + "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": 2, + "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": 2, + "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": 2, + "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": 2, + "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": 2, + "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": 2, + "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": 2, + "community_name": "CmsController", + "norm_label": ".updatevettestimonial()" + }, + { + "label": "Roles()", + "file_type": "code", + "source_file": "backend/src/common/decorators/roles.decorator.ts", + "source_location": "L4", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_decorators_roles_decorator_roles", + "community": 21, + "community_name": "Roles", + "norm_label": "roles()" + }, + { + "label": ".addPattern()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L234", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_addpattern", + "community": 21, + "community_name": "Roles", + "norm_label": ".addpattern()" + }, + { + "label": ".clearAllSmsLogs()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L279", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", + "community": 21, + "community_name": "Roles", + "norm_label": ".clearallsmslogs()" + }, + { + "label": ".deleteScientificTerm()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L119", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", + "community": 21, + "community_name": "Roles", + "norm_label": ".deletescientificterm()" + }, + { + "label": ".deleteSmsLog()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L270", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", + "community": 21, + "community_name": "Roles", + "norm_label": ".deletesmslog()" + }, + { + "label": ".editPattern()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L249", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_editpattern", + "community": 21, + "community_name": "Roles", + "norm_label": ".editpattern()" + }, + { + "label": ".getFinancial()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_getfinancial", + "community": 21, + "community_name": "Roles", + "norm_label": ".getfinancial()" + }, + { + "label": ".getFinancialSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L145", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", + "community": 21, + "community_name": "Roles", + "norm_label": ".getfinancialsettings()" + }, + { + "label": ".getPatterns()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L225", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_getpatterns", + "community": 21, + "community_name": "Roles", + "norm_label": ".getpatterns()" + }, + { + "label": ".getScientificTerms()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L98", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_getscientificterms", + "community": 21, + "community_name": "Roles", + "norm_label": ".getscientificterms()" + }, + { + "label": ".getSeoSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L126", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_getseosettings", + "community": 21, + "community_name": "Roles", + "norm_label": ".getseosettings()" + }, + { + "label": ".getSmsCredit()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L192", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_getsmscredit", + "community": 21, + "community_name": "Roles", + "norm_label": ".getsmscredit()" + }, + { + "label": ".getSmsLogs()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L261", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", + "community": 21, + "community_name": "Roles", + "norm_label": ".getsmslogs()" + }, + { + "label": ".getSmsSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L183", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", + "community": 21, + "community_name": "Roles", + "norm_label": ".getsmssettings()" + }, + { + "label": ".getSystemSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L164", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", + "community": 21, + "community_name": "Roles", + "norm_label": ".getsystemsettings()" + }, + { + "label": ".patchUiText()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_patchuitext", + "community": 21, + "community_name": "Roles", + "norm_label": ".patchuitext()" + }, + { + "label": ".putBulkUiTexts()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L76", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", + "community": 21, + "community_name": "Roles", + "norm_label": ".putbulkuitexts()" + }, + { + "label": ".putUiText()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_putuitext", + "community": 21, + "community_name": "Roles", + "norm_label": ".putuitext()" + }, + { + "label": ".testSms()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L210", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_testsms", + "community": 21, + "community_name": "Roles", + "norm_label": ".testsms()" + }, + { + "label": ".updateFinancial()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", + "community": 21, + "community_name": "Roles", + "norm_label": ".updatefinancial()" + }, + { + "label": ".updateFinancialSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L154", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", + "community": 21, + "community_name": "Roles", + "norm_label": ".updatefinancialsettings()" + }, + { + "label": ".updateSeoSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L135", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", + "community": 21, + "community_name": "Roles", + "norm_label": ".updateseosettings()" + }, + { + "label": ".updateSmsSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L201", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", + "community": 21, + "community_name": "Roles", + "norm_label": ".updatesmssettings()" + }, + { + "label": ".updateSystemSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L173", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", + "community": 21, + "community_name": "Roles", + "norm_label": ".updatesystemsettings()" + }, + { + "label": ".upsertScientificTerm()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L107", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", + "community": 21, + "community_name": "Roles", + "norm_label": ".upsertscientificterm()" + }, + { + "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": 216, + "community_name": "FormField.tsx", + "norm_label": "formfield()" + }, + { + "label": "AboutPage()", + "file_type": "code", + "source_file": "frontend/application/app/about/page.tsx", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_about_page_aboutpage", + "community": 220, + "community_name": "about/page.tsx", + "norm_label": "aboutpage()" + }, + { + "label": "PrivacyPage()", + "file_type": "code", + "source_file": "frontend/application/app/privacy/page.tsx", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_privacy_page_privacypage", + "community": 221, + "community_name": "privacy/page.tsx", + "norm_label": "privacypage()" + }, + { + "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": 243, + "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": 243, + "community_name": "MetricsController", + "norm_label": ".getmetrics()" + }, + { + "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": 256, + "community_name": "robots.ts", + "norm_label": "robots()" + }, + { + "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": 29, + "community_name": "WholesaleService", + "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": 29, + "community_name": "WholesaleService", + "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": 29, + "community_name": "WholesaleService", + "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": 29, + "community_name": "WholesaleService", + "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": 29, + "community_name": "WholesaleService", + "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": 29, + "community_name": "WholesaleService", + "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": 29, + "community_name": "WholesaleService", + "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": 29, + "community_name": "WholesaleService", + "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": 29, + "community_name": "WholesaleService", + "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": 29, + "community_name": "WholesaleService", + "norm_label": ".rejectwholesalerequest()" + }, + { + "label": "NetworkBanner()", + "file_type": "code", + "source_file": "frontend/application/components/NetworkBanner.tsx", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_networkbanner_networkbanner", + "community": 291, + "community_name": "NetworkBanner.tsx", + "norm_label": "networkbanner()" + }, + { + "label": "useNetworkStatus()", + "file_type": "code", + "source_file": "frontend/application/lib/hooks/useNetworkStatus.ts", + "source_location": "L3", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_lib_hooks_usenetworkstatus_usenetworkstatus", + "community": 291, + "community_name": "NetworkBanner.tsx", + "norm_label": "usenetworkstatus()" + }, + { + "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": 30, + "community_name": "main.ts", + "norm_label": ".catch()" + }, + { + "label": ".deriveErrorCode()", + "file_type": "code", + "source_file": "backend/src/common/filters/http-exception.filter.ts", + "source_location": "L114", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_deriveerrorcode", + "community": 30, + "community_name": "main.ts", + "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": 30, + "community_name": "main.ts", + "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": 30, + "community_name": "main.ts", + "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": 30, + "community_name": "main.ts", + "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": 30, + "community_name": "main.ts", + "norm_label": ".transform()" + }, + { + "label": "bootstrap()", + "file_type": "code", + "source_file": "backend/src/main.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "backend_src_main_bootstrap", + "community": 30, + "community_name": "main.ts", + "norm_label": "bootstrap()" + }, + { + "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": 31, + "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": 31, + "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": 31, + "community_name": "JwtAuthGuard", + "norm_label": ".constructor()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_controller_paymentcontroller_constructor", + "community": 32, + "community_name": "ZibalService", + "norm_label": ".constructor()" + }, + { + "label": ".adminLiveInquiry()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L827", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_service_paymentservice_adminliveinquiry", + "community": 32, + "community_name": "ZibalService", + "norm_label": ".adminliveinquiry()" + }, + { + "label": ".adminManualReject()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L933", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_service_paymentservice_adminmanualreject", + "community": 32, + "community_name": "ZibalService", + "norm_label": ".adminmanualreject()" + }, + { + "label": ".adminManualVerify()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L875", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_service_paymentservice_adminmanualverify", + "community": 32, + "community_name": "ZibalService", + "norm_label": ".adminmanualverify()" + }, + { + "label": ".checkGatewayHealth()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L956", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_service_paymentservice_checkgatewayhealth", + "community": 32, + "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": 32, + "community_name": "ZibalService", + "norm_label": ".constructor()" + }, + { + "label": ".getAdminTransactionStats()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L780", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_service_paymentservice_getadmintransactionstats", + "community": 32, + "community_name": "ZibalService", + "norm_label": ".getadmintransactionstats()" + }, + { + "label": ".getTransaction()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L621", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_service_paymentservice_gettransaction", + "community": 32, + "community_name": "ZibalService", + "norm_label": ".gettransaction()" + }, + { + "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": 32, + "community_name": "ZibalService", + "norm_label": ".initiateorderpayment()" + }, + { + "label": ".initiateWalletTopup()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L138", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_service_paymentservice_initiatewallettopup", + "community": 32, + "community_name": "ZibalService", + "norm_label": ".initiatewallettopup()" + }, + { + "label": ".reconcilePendingTransactions()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L539", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_service_paymentservice_reconcilependingtransactions", + "community": 32, + "community_name": "ZibalService", + "norm_label": ".reconcilependingtransactions()" + }, + { + "label": ".verifyAndProcess()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L225", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_service_paymentservice_verifyandprocess", + "community": 32, + "community_name": "ZibalService", + "norm_label": ".verifyandprocess()" + }, + { + "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": 32, + "community_name": "ZibalService", + "norm_label": ".callwithretry()" + }, + { + "label": ".checkHealth()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L292", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_zibal_service_zibalservice_checkhealth", + "community": 32, + "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": 32, + "community_name": "ZibalService", + "norm_label": ".constructor()" + }, + { + "label": ".getBackendUrl()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L128", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_zibal_service_zibalservice_getbackendurl", + "community": 32, + "community_name": "ZibalService", + "norm_label": ".getbackendurl()" + }, + { + "label": ".getFrontendUrl()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L109", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_zibal_service_zibalservice_getfrontendurl", + "community": 32, + "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": 32, + "community_name": "ZibalService", + "norm_label": ".getgatewayname()" + }, + { + "label": ".getMerchant()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_zibal_service_zibalservice_getmerchant", + "community": 32, + "community_name": "ZibalService", + "norm_label": ".getmerchant()" + }, + { + "label": ".getResultMessage()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L349", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_zibal_service_zibalservice_getresultmessage", + "community": 32, + "community_name": "ZibalService", + "norm_label": ".getresultmessage()" + }, + { + "label": ".getStartUrl()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L205", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_zibal_service_zibalservice_getstarturl", + "community": 32, + "community_name": "ZibalService", + "norm_label": ".getstarturl()" + }, + { + "label": ".getStatusMessage()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L372", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_zibal_service_zibalservice_getstatusmessage", + "community": 32, + "community_name": "ZibalService", + "norm_label": ".getstatusmessage()" + }, + { + "label": ".inquiryPayment()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L252", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_zibal_service_zibalservice_inquirypayment", + "community": 32, + "community_name": "ZibalService", + "norm_label": ".inquirypayment()" + }, + { + "label": ".requestPayment()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L154", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_zibal_service_zibalservice_requestpayment", + "community": 32, + "community_name": "ZibalService", + "norm_label": ".requestpayment()" + }, + { + "label": ".verifyPayment()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L212", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_zibal_service_zibalservice_verifypayment", + "community": 32, + "community_name": "ZibalService", + "norm_label": ".verifypayment()" + }, + { + "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": 34, + "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": 34, + "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": 34, + "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": 34, + "community_name": "CategoriesController", + "norm_label": ".getallcategoriesraw()" + }, + { + "label": ".getCategories()", + "file_type": "code", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_categories_controller_categoriescontroller_getcategories", + "community": 34, + "community_name": "CategoriesController", + "norm_label": ".getcategories()" + }, + { + "label": ".updateCategory()", + "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": 34, + "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": 34, + "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": 34, + "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": 34, + "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": 34, + "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": 34, + "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": 34, + "community_name": "CategoriesController", + "norm_label": ".updatecategory()" + }, + { + "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": 35, + "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": 35, + "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": 35, + "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": 35, + "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": 35, + "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": 35, + "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": 35, + "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": 35, + "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": 35, + "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": 35, + "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": 35, + "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": 35, + "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": 35, + "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": 35, + "community_name": "B2BService", + "norm_label": ".updateinquirystatus()" + }, + { + "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": 37, + "community_name": "userStore.ts", + "norm_label": "successpage()" + }, + { + "label": "ClientLayout()", + "file_type": "code", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_clientlayout_clientlayout", + "community": 37, + "community_name": "userStore.ts", + "norm_label": "clientlayout()" + }, + { + "label": "generateMetadata()", + "file_type": "code", + "source_file": "frontend/application/app/layout.tsx", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_layout_generatemetadata", + "community": 37, + "community_name": "userStore.ts", + "norm_label": "generatemetadata()" + }, + { + "label": "RootLayout()", + "file_type": "code", + "source_file": "frontend/application/app/layout.tsx", + "source_location": "L112", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_layout_rootlayout", + "community": 37, + "community_name": "userStore.ts", + "norm_label": "rootlayout()" + }, + { + "label": "TrackPage()", + "file_type": "code", + "source_file": "frontend/application/app/track/page.tsx", + "source_location": "L3", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_track_page_trackpage", + "community": 37, + "community_name": "userStore.ts", + "norm_label": "trackpage()" + }, + { + "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": 37, + "community_name": "userStore.ts", + "norm_label": "archiveproductcard()" + }, + { + "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": 37, + "community_name": "userStore.ts", + "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": 37, + "community_name": "userStore.ts", + "norm_label": "extractotpfromtext()" + }, + { + "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": 37, + "community_name": "userStore.ts", + "norm_label": "b2bportal()" + }, + { + "label": "CartDrawer()", + "file_type": "code", + "source_file": "frontend/application/components/CartDrawer.tsx", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_cartdrawer_cartdrawer", + "community": 37, + "community_name": "userStore.ts", + "norm_label": "cartdrawer()" + }, + { + "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": 37, + "community_name": "userStore.ts", + "norm_label": "checkoutpage()" + }, + { + "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": 37, + "community_name": "userStore.ts", + "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": 37, + "community_name": "userStore.ts", + "norm_label": "header()" + }, + { + "label": "handleClickOutside()", + "file_type": "code", + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L114", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_header_header_handleclickoutside", + "community": 37, + "community_name": "userStore.ts", + "norm_label": "handleclickoutside()" + }, + { + "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": 37, + "community_name": "userStore.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": 37, + "community_name": "userStore.ts", + "norm_label": "ordertracking()" + }, + { + "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": 37, + "community_name": "userStore.ts", + "norm_label": "prescriptionuploadmodal()" + }, + { + "label": "SmartAdvisor()", + "file_type": "code", + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_smartadvisor_smartadvisor", + "community": 37, + "community_name": "userStore.ts", + "norm_label": "smartadvisor()" + }, + { + "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": 37, + "community_name": "userStore.ts", + "norm_label": "userdashboard()" + }, + { + "label": "toEnglishDigits()", + "file_type": "code", + "source_file": "frontend/application/lib/utils.ts", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_lib_utils_toenglishdigits", + "community": 37, + "community_name": "userStore.ts", + "norm_label": "toenglishdigits()" + }, + { + "label": "getJwtRefreshSecret()", + "file_type": "code", + "source_file": "backend/src/auth/auth.constants.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "id": "backend_src_auth_auth_constants_getjwtrefreshsecret", + "community": 38, + "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": 38, + "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": 38, + "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": 38, + "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": 38, + "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": 38, + "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": 38, + "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": 38, + "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": 38, + "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": 38, + "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": 38, + "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": 38, + "community_name": "UsersService", + "norm_label": ".updateprofile()" + }, + { + "label": ".addAddress()", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L200", + "_callable": true, + "_origin": "ast", + "id": "backend_src_users_users_service_usersservice_addaddress", + "community": 38, + "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": 38, + "community_name": "UsersService", + "norm_label": ".constructor()" + }, + { + "label": ".deleteAddress()", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L248", + "_callable": true, + "_origin": "ast", + "id": "backend_src_users_users_service_usersservice_deleteaddress", + "community": 38, + "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": 38, + "community_name": "UsersService", + "norm_label": ".findbyid()" + }, + { + "label": ".findByPhone()", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L289", + "_callable": true, + "_origin": "ast", + "id": "backend_src_users_users_service_usersservice_findbyphone", + "community": 38, + "community_name": "UsersService", + "norm_label": ".findbyphone()" + }, + { + "label": ".setDefaultAddress()", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L254", + "_callable": true, + "_origin": "ast", + "id": "backend_src_users_users_service_usersservice_setdefaultaddress", + "community": 38, + "community_name": "UsersService", + "norm_label": ".setdefaultaddress()" + }, + { + "label": ".topUpWallet()", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L265", + "_callable": true, + "_origin": "ast", + "id": "backend_src_users_users_service_usersservice_topupwallet", + "community": 38, + "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": 38, + "community_name": "UsersService", + "norm_label": ".update()" + }, + { + "label": ".updateAddress()", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L222", + "_callable": true, + "_origin": "ast", + "id": "backend_src_users_users_service_usersservice_updateaddress", + "community": 38, + "community_name": "UsersService", + "norm_label": ".updateaddress()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "backend_src_reviews_reviews_controller_reviewscontroller_constructor", + "community": 4, + "community_name": "reviews.controller.ts", + "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": 4, + "community_name": "reviews.controller.ts", + "norm_label": ".createreview()" + }, + { + "label": ".deleteReview()", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L104", + "_callable": true, + "_origin": "ast", + "id": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", + "community": 4, + "community_name": "reviews.controller.ts", + "norm_label": ".deletereview()" + }, + { + "label": ".getAdminReviews()", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", + "community": 4, + "community_name": "reviews.controller.ts", + "norm_label": ".getadminreviews()" + }, + { + "label": ".getProductReviews()", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "backend_src_reviews_reviews_controller_reviewscontroller_getproductreviews", + "community": 4, + "community_name": "reviews.controller.ts", + "norm_label": ".getproductreviews()" + }, + { + "label": ".updateReviewStatus()", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L89", + "_callable": true, + "_origin": "ast", + "id": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", + "community": 4, + "community_name": "reviews.controller.ts", + "norm_label": ".updatereviewstatus()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "backend_src_reviews_reviews_service_reviewsservice_constructor", + "community": 4, + "community_name": "reviews.controller.ts", + "norm_label": ".constructor()" + }, + { + "label": ".createReview()", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "backend_src_reviews_reviews_service_reviewsservice_createreview", + "community": 4, + "community_name": "reviews.controller.ts", + "norm_label": ".createreview()" + }, + { + "label": ".deleteReview()", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L212", + "_callable": true, + "_origin": "ast", + "id": "backend_src_reviews_reviews_service_reviewsservice_deletereview", + "community": 4, + "community_name": "reviews.controller.ts", + "norm_label": ".deletereview()" + }, + { + "label": ".getAdminReviews()", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L121", + "_callable": true, + "_origin": "ast", + "id": "backend_src_reviews_reviews_service_reviewsservice_getadminreviews", + "community": 4, + "community_name": "reviews.controller.ts", + "norm_label": ".getadminreviews()" + }, + { + "label": ".getProductReviews()", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "id": "backend_src_reviews_reviews_service_reviewsservice_getproductreviews", + "community": 4, + "community_name": "reviews.controller.ts", + "norm_label": ".getproductreviews()" + }, + { + "label": ".updateReviewStatus()", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L185", + "_callable": true, + "_origin": "ast", + "id": "backend_src_reviews_reviews_service_reviewsservice_updatereviewstatus", + "community": 4, + "community_name": "reviews.controller.ts", + "norm_label": ".updatereviewstatus()" + }, + { + "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": 40, + "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": 40, + "community_name": "SslController", + "norm_label": ".getstatus()" + }, + { + "label": ".testDomain()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L94", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_ssl_controller_sslcontroller_testdomain", + "community": 40, + "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": 40, + "community_name": "SslController", + "norm_label": ".updatebytext()" + }, + { + "label": ".uploadFiles()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles", + "community": 40, + "community_name": "SslController", + "norm_label": ".uploadfiles()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_ssl_service_sslservice_constructor", + "community": 40, + "community_name": "SslController", + "norm_label": ".constructor()" + }, + { + "label": ".getCertPath()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_ssl_service_sslservice_getcertpath", + "community": 40, + "community_name": "SslController", + "norm_label": ".getcertpath()" + }, + { + "label": ".getKeyPath()", + "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_getkeypath", + "community": 40, + "community_name": "SslController", + "norm_label": ".getkeypath()" + }, + { + "label": ".getStatus()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L58", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_ssl_service_sslservice_getstatus", + "community": 40, + "community_name": "SslController", + "norm_label": ".getstatus()" + }, + { + "label": ".testOnlineDomainSsl()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L162", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_ssl_service_sslservice_testonlinedomainssl", + "community": 40, + "community_name": "SslController", + "norm_label": ".testonlinedomainssl()" + }, + { + "label": ".toShamsi()", + "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_toshamsi", + "community": 40, + "community_name": "SslController", + "norm_label": ".toshamsi()" + }, + { + "label": ".updateCertificates()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L106", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_ssl_service_sslservice_updatecertificates", + "community": 40, + "community_name": "SslController", + "norm_label": ".updatecertificates()" + }, + { + "label": "PodcastPlayerModal()", + "file_type": "code", + "source_file": "frontend/application/components/PodcastPlayerModal.tsx", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_podcastplayermodal_podcastplayermodal", + "community": 41, + "community_name": "PodcastPlayerModal.tsx", + "norm_label": "podcastplayermodal()" + }, + { + "label": "handleClickOutside()", + "file_type": "code", + "source_file": "frontend/application/components/PodcastPlayerModal.tsx", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_podcastplayermodal_podcastplayermodal_handleclickoutside", + "community": 41, + "community_name": "PodcastPlayerModal.tsx", + "norm_label": "handleclickoutside()" + }, + { + "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": 42, + "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": 42, + "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": 42, + "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": 42, + "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": 42, + "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": 42, + "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": 42, + "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": 42, + "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": 42, + "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": 42, + "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": 42, + "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": 42, + "community_name": "IngredientsService", + "norm_label": ".update()" + }, + { + "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": 43, + "community_name": "RedisService", + "norm_label": "generateopenapi()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_constructor", + "community": 43, + "community_name": "RedisService", + "norm_label": ".constructor()" + }, + { + "label": ".getDashboardStats()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_getdashboardstats", + "community": 43, + "community_name": "RedisService", + "norm_label": ".getdashboardstats()" + }, + { + "label": ".configure()", + "file_type": "code", + "source_file": "backend/src/app.module.ts", + "source_location": "L86", + "_callable": true, + "_origin": "ast", + "id": "backend_src_app_module_appmodule_configure", + "community": 43, + "community_name": "RedisService", + "norm_label": ".configure()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/app.module.ts", + "source_location": "L84", + "_callable": true, + "_origin": "ast", + "id": "backend_src_app_module_appmodule_constructor", + "community": 43, + "community_name": "RedisService", + "norm_label": ".constructor()" + }, + { + "label": ".adminLogin()", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L254", + "_callable": true, + "_origin": "ast", + "id": "backend_src_auth_auth_service_authservice_adminlogin", + "community": 43, + "community_name": "RedisService", + "norm_label": ".adminlogin()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "backend_src_auth_auth_service_authservice_constructor", + "community": 43, + "community_name": "RedisService", + "norm_label": ".constructor()" + }, + { + "label": ".login()", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L213", + "_callable": true, + "_origin": "ast", + "id": "backend_src_auth_auth_service_authservice_login", + "community": 43, + "community_name": "RedisService", + "norm_label": ".login()" + }, + { + "label": ".refresh()", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L310", + "_callable": true, + "_origin": "ast", + "id": "backend_src_auth_auth_service_authservice_refresh", + "community": 43, + "community_name": "RedisService", + "norm_label": ".refresh()" + }, + { + "label": ".register()", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L160", + "_callable": true, + "_origin": "ast", + "id": "backend_src_auth_auth_service_authservice_register", + "community": 43, + "community_name": "RedisService", + "norm_label": ".register()" + }, + { + "label": ".sendOtp()", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "id": "backend_src_auth_auth_service_authservice_sendotp", + "community": 43, + "community_name": "RedisService", + "norm_label": ".sendotp()" + }, + { + "label": ".verifyOtp()", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L119", + "_callable": true, + "_origin": "ast", + "id": "backend_src_auth_auth_service_authservice_verifyotp", + "community": 43, + "community_name": "RedisService", + "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": 43, + "community_name": "RedisService", + "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": 43, + "community_name": "RedisService", + "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": 43, + "community_name": "RedisService", + "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": 43, + "community_name": "RedisService", + "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": 43, + "community_name": "RedisService", + "norm_label": ".incr()" + }, + { + "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": 43, + "community_name": "RedisService", + "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": 43, + "community_name": "RedisService", + "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": 43, + "community_name": "RedisService", + "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": 43, + "community_name": "RedisService", + "norm_label": ".ttl()" + }, + { + "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": 44, + "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": 44, + "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": 44, + "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": 44, + "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": 44, + "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": 44, + "community_name": "MediaController", + "norm_label": ".uploadfile()" + }, + { + "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": 44, + "community_name": "MediaController", + "norm_label": ".constructor()" + }, + { + "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": 44, + "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": 44, + "community_name": "MediaController", + "norm_label": ".deletemedia()" + }, + { + "label": ".getAllMedia()", + "file_type": "code", + "source_file": "backend/src/admin/media.service.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_media_service_mediaservice_getallmedia", + "community": 44, + "community_name": "MediaController", + "norm_label": ".getallmedia()" + }, + { + "label": ".updateMedia()", + "file_type": "code", + "source_file": "backend/src/admin/media.service.ts", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_media_service_mediaservice_updatemedia", + "community": 44, + "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": 44, + "community_name": "MediaController", + "norm_label": ".uploadfile()" + }, + { + "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": 45, + "community_name": "Pagination.tsx", + "norm_label": "pagination()" + }, + { + "label": "Pets()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Pets.tsx", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_pets_pets", + "community": 45, + "community_name": "Pagination.tsx", + "norm_label": "pets()" + }, + { + "label": "Transactions()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L89", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_transactions_transactions", + "community": 45, + "community_name": "Pagination.tsx", + "norm_label": "transactions()" + }, + { + "label": "Wiki()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_wiki_wiki", + "community": 45, + "community_name": "Pagination.tsx", + "norm_label": "wiki()" + }, + { + "label": ".addPattern()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L473", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_addpattern", + "community": 46, + "community_name": "SmsService", + "norm_label": ".addpattern()" + }, + { + "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": 46, + "community_name": "SmsService", + "norm_label": ".constructor()" + }, + { + "label": ".editPattern()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L552", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_editpattern", + "community": 46, + "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": 46, + "community_name": "SmsService", + "norm_label": ".getcredit()" + }, + { + "label": ".getPatterns()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L366", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_getpatterns", + "community": 46, + "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": 46, + "community_name": "SmsService", + "norm_label": ".getsmsconfig()" + }, + { + "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": 46, + "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": 46, + "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": 46, + "community_name": "SmsService", + "norm_label": ".recordlog()" + }, + { + "label": ".saveLocalPattern()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L607", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_savelocalpattern", + "community": 46, + "community_name": "SmsService", + "norm_label": ".savelocalpattern()" + }, + { + "label": ".sendB2bNotification()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L977", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_sendb2bnotification", + "community": 46, + "community_name": "SmsService", + "norm_label": ".sendb2bnotification()" + }, + { + "label": ".sendOrderConfirmation()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L941", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation", + "community": 46, + "community_name": "SmsService", + "norm_label": ".sendorderconfirmation()" + }, + { + "label": ".sendOtp()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L928", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_sendotp", + "community": 46, + "community_name": "SmsService", + "norm_label": ".sendotp()" + }, + { + "label": ".sendPatternSms()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L675", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_sendpatternsms", + "community": 46, + "community_name": "SmsService", + "norm_label": ".sendpatternsms()" + }, + { + "label": ".sendPetCareReminder()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L993", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_sendpetcarereminder", + "community": 46, + "community_name": "SmsService", + "norm_label": ".sendpetcarereminder()" + }, + { + "label": ".sendShippingNotification()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L960", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_sendshippingnotification", + "community": 46, + "community_name": "SmsService", + "norm_label": ".sendshippingnotification()" + }, + { + "label": ".sendSms()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L1011", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_sendsms", + "community": 46, + "community_name": "SmsService", + "norm_label": ".sendsms()" + }, + { + "label": ".testSms()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L803", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_testsms", + "community": 46, + "community_name": "SmsService", + "norm_label": ".testsms()" + }, + { + "label": ".updateLocalPattern()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L635", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_updatelocalpattern", + "community": 46, + "community_name": "SmsService", + "norm_label": ".updatelocalpattern()" + }, + { + "label": ".addPattern()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L391", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_addpattern", + "community": 46, + "community_name": "SmsService", + "norm_label": ".addpattern()" + }, + { + "label": ".editPattern()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L395", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_editpattern", + "community": 46, + "community_name": "SmsService", + "norm_label": ".editpattern()" + }, + { + "label": ".getPatterns()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L387", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_getpatterns", + "community": 46, + "community_name": "SmsService", + "norm_label": ".getpatterns()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "backend_src_orders_orders_controller_orderscontroller_constructor", + "community": 47, + "community_name": "OrdersService", + "norm_label": ".constructor()" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L85", + "_callable": true, + "_origin": "ast", + "id": "backend_src_orders_orders_controller_orderscontroller_create", + "community": 47, + "community_name": "OrdersService", + "norm_label": ".create()" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L146", + "_callable": true, + "_origin": "ast", + "id": "backend_src_orders_orders_controller_orderscontroller_findall", + "community": 47, + "community_name": "OrdersService", + "norm_label": ".findall()" + }, + { + "label": ".findOne()", + "file_type": "code", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L202", + "_callable": true, + "_origin": "ast", + "id": "backend_src_orders_orders_controller_orderscontroller_findone", + "community": 47, + "community_name": "OrdersService", + "norm_label": ".findone()" + }, + { + "label": ".retryPayment()", + "file_type": "code", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L194", + "_callable": true, + "_origin": "ast", + "id": "backend_src_orders_orders_controller_orderscontroller_retrypayment", + "community": 47, + "community_name": "OrdersService", + "norm_label": ".retrypayment()" + }, + { + "label": ".validateCoupon()", + "file_type": "code", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L110", + "_callable": true, + "_origin": "ast", + "id": "backend_src_orders_orders_controller_orderscontroller_validatecoupon", + "community": 47, + "community_name": "OrdersService", + "norm_label": ".validatecoupon()" + }, + { + "label": ".checkAndSendRefillReminders()", + "file_type": "code", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L395", + "_callable": true, + "_origin": "ast", + "id": "backend_src_orders_orders_service_ordersservice_checkandsendrefillreminders", + "community": 47, + "community_name": "OrdersService", + "norm_label": ".checkandsendrefillreminders()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "backend_src_orders_orders_service_ordersservice_constructor", + "community": 47, + "community_name": "OrdersService", + "norm_label": ".constructor()" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L101", + "_callable": true, + "_origin": "ast", + "id": "backend_src_orders_orders_service_ordersservice_create", + "community": 47, + "community_name": "OrdersService", + "norm_label": ".create()" + }, + { + "label": ".findAllByUser()", + "file_type": "code", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L348", + "_callable": true, + "_origin": "ast", + "id": "backend_src_orders_orders_service_ordersservice_findallbyuser", + "community": 47, + "community_name": "OrdersService", + "norm_label": ".findallbyuser()" + }, + { + "label": ".findOne()", + "file_type": "code", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L381", + "_callable": true, + "_origin": "ast", + "id": "backend_src_orders_orders_service_ordersservice_findone", + "community": 47, + "community_name": "OrdersService", + "norm_label": ".findone()" + }, + { + "label": ".generateTrackingNumber()", + "file_type": "code", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "backend_src_orders_orders_service_ordersservice_generatetrackingnumber", + "community": 47, + "community_name": "OrdersService", + "norm_label": ".generatetrackingnumber()" + }, + { + "label": ".releaseExpiredInventoryReservations()", + "file_type": "code", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L425", + "_callable": true, + "_origin": "ast", + "id": "backend_src_orders_orders_service_ordersservice_releaseexpiredinventoryreservations", + "community": 47, + "community_name": "OrdersService", + "norm_label": ".releaseexpiredinventoryreservations()" + }, + { + "label": ".retryPayment()", + "file_type": "code", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L446", + "_callable": true, + "_origin": "ast", + "id": "backend_src_orders_orders_service_ordersservice_retrypayment", + "community": 47, + "community_name": "OrdersService", + "norm_label": ".retrypayment()" + }, + { + "label": ".updateStatus()", + "file_type": "code", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L317", + "_callable": true, + "_origin": "ast", + "id": "backend_src_orders_orders_service_ordersservice_updatestatus", + "community": 47, + "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": 47, + "community_name": "OrdersService", + "norm_label": ".validatecoupon()" + }, + { + "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": 48, + "community_name": "PrescriptionsService", + "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": 48, + "community_name": "PrescriptionsService", + "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": 48, + "community_name": "PrescriptionsService", + "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": 48, + "community_name": "PrescriptionsService", + "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": 48, + "community_name": "PrescriptionsService", + "norm_label": ".review()" + }, + { + "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": 48, + "community_name": "PrescriptionsService", + "norm_label": ".constructor()" + }, + { + "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": 48, + "community_name": "PrescriptionsService", + "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": 48, + "community_name": "PrescriptionsService", + "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": 48, + "community_name": "PrescriptionsService", + "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": 48, + "community_name": "PrescriptionsService", + "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": 49, + "community_name": "SmartAdvisorService", + "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": 49, + "community_name": "SmartAdvisorService", + "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": 49, + "community_name": "SmartAdvisorService", + "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": 49, + "community_name": "SmartAdvisorService", + "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": 49, + "community_name": "SmartAdvisorService", + "norm_label": ".update()" + }, + { + "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": 49, + "community_name": "SmartAdvisorService", + "norm_label": ".constructor()" + }, + { + "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": 49, + "community_name": "SmartAdvisorService", + "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": 49, + "community_name": "SmartAdvisorService", + "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": 49, + "community_name": "SmartAdvisorService", + "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": 49, + "community_name": "SmartAdvisorService", + "norm_label": ".update()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "backend_src_tickets_tickets_controller_ticketscontroller_constructor", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": ".constructor()" + }, + { + "label": ".createTicket()", + "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_createticket", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": ".createticket()" + }, + { + "label": ".getAdminTickets()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L81", + "_callable": true, + "_origin": "ast", + "id": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": ".getadmintickets()" + }, + { + "label": ".getMyTickets()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": ".getmytickets()" + }, + { + "label": ".getTicketDetails()", + "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_getticketdetails", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": ".getticketdetails()" + }, + { + "label": ".replyTicket()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": ".replyticket()" + }, + { + "label": ".updateTicketStatus()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L90", + "_callable": true, + "_origin": "ast", + "id": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": ".updateticketstatus()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "id": "backend_src_tickets_tickets_service_ticketsservice_constructor", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": ".constructor()" + }, + { + "label": ".createTicket()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "backend_src_tickets_tickets_service_ticketsservice_createticket", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": ".createticket()" + }, + { + "label": ".generateTicketNumber()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "id": "backend_src_tickets_tickets_service_ticketsservice_generateticketnumber", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": ".generateticketnumber()" + }, + { + "label": ".getAdminTickets()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L189", + "_callable": true, + "_origin": "ast", + "id": "backend_src_tickets_tickets_service_ticketsservice_getadmintickets", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": ".getadmintickets()" + }, + { + "label": ".getTicketDetails()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L94", + "_callable": true, + "_origin": "ast", + "id": "backend_src_tickets_tickets_service_ticketsservice_getticketdetails", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": ".getticketdetails()" + }, + { + "label": ".getUserTickets()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "id": "backend_src_tickets_tickets_service_ticketsservice_getusertickets", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": ".getusertickets()" + }, + { + "label": ".replyToTicket()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L132", + "_callable": true, + "_origin": "ast", + "id": "backend_src_tickets_tickets_service_ticketsservice_replytoticket", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": ".replytoticket()" + }, + { + "label": ".updateTicketStatus()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L261", + "_callable": true, + "_origin": "ast", + "id": "backend_src_tickets_tickets_service_ticketsservice_updateticketstatus", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": ".updateticketstatus()" + }, + { + "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": 50, + "community_name": "TestimonialsService", + "norm_label": ".constructor()" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create", + "community": 50, + "community_name": "TestimonialsService", + "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": 50, + "community_name": "TestimonialsService", + "norm_label": ".findall()" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove", + "community": 50, + "community_name": "TestimonialsService", + "norm_label": ".remove()" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", + "community": 50, + "community_name": "TestimonialsService", + "norm_label": ".update()" + }, + { + "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": 50, + "community_name": "TestimonialsService", + "norm_label": ".constructor()" + }, + { + "label": ".create()", + "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_create", + "community": 50, + "community_name": "TestimonialsService", + "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": 50, + "community_name": "TestimonialsService", + "norm_label": ".findall()" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.service.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "backend_src_testimonials_testimonials_service_testimonialsservice_remove", + "community": 50, + "community_name": "TestimonialsService", + "norm_label": ".remove()" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.service.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "backend_src_testimonials_testimonials_service_testimonialsservice_update", + "community": 50, + "community_name": "TestimonialsService", + "norm_label": ".update()" + }, + { + "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": 52, + "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": 52, + "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": 52, + "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": 52, + "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": 52, + "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": 52, + "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": 52, + "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": 52, + "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": 52, + "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": 52, + "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": 52, + "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": 52, + "community_name": "ContactService", + "norm_label": ".updatesubmissionstatus()" + }, + { + "label": ".getAdminStats()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L213", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", + "community": 53, + "community_name": "PaymentController", + "norm_label": ".getadminstats()" + }, + { + "label": ".getAdminTransactions()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L204", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", + "community": 53, + "community_name": "PaymentController", + "norm_label": ".getadmintransactions()" + }, + { + "label": ".getHealth()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L264", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_controller_paymentcontroller_gethealth", + "community": 53, + "community_name": "PaymentController", + "norm_label": ".gethealth()" + }, + { + "label": ".getTransactionStatus()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L193", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_controller_paymentcontroller_gettransactionstatus", + "community": 53, + "community_name": "PaymentController", + "norm_label": ".gettransactionstatus()" + }, + { + "label": ".handleZibalCallback()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L93", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", + "community": 53, + "community_name": "PaymentController", + "norm_label": ".handlezibalcallback()" + }, + { + "label": ".handleZibalLazyCallback()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L163", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", + "community": 53, + "community_name": "PaymentController", + "norm_label": ".handleziballazycallback()" + }, + { + "label": ".initiateOrderPayment()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", + "community": 53, + "community_name": "PaymentController", + "norm_label": ".initiateorderpayment()" + }, + { + "label": ".initiateWalletTopup()", + "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_initiatewallettopup", + "community": 53, + "community_name": "PaymentController", + "norm_label": ".initiatewallettopup()" + }, + { + "label": ".liveInquiry()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L231", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", + "community": 53, + "community_name": "PaymentController", + "norm_label": ".liveinquiry()" + }, + { + "label": ".manualReject()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L252", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_controller_paymentcontroller_manualreject", + "community": 53, + "community_name": "PaymentController", + "norm_label": ".manualreject()" + }, + { + "label": ".manualVerify()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L240", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_controller_paymentcontroller_manualverify", + "community": 53, + "community_name": "PaymentController", + "norm_label": ".manualverify()" + }, + { + "label": ".reconcilePending()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L222", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", + "community": 53, + "community_name": "PaymentController", + "norm_label": ".reconcilepending()" + }, + { + "label": ".verifyPaymentDirect()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L144", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", + "community": 53, + "community_name": "PaymentController", + "norm_label": ".verifypaymentdirect()" + }, + { + "label": "Badge()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/Badge.tsx", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_components_ui_badge_badge", + "community": 55, + "community_name": "Media.tsx", + "norm_label": "badge()" + }, + { + "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": "Media.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": "Media.tsx", + "norm_label": "toggleswitch()" + }, + { + "label": "getFileType()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Media.tsx", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_media_getfiletype", + "community": 55, + "community_name": "Media.tsx", + "norm_label": "getfiletype()" + }, + { + "label": "MediaManager()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Media.tsx", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_media_mediamanager", + "community": 55, + "community_name": "Media.tsx", + "norm_label": "mediamanager()" + }, + { + "label": "PrescriptionsManager()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_prescriptionsmanager_prescriptionsmanager", + "community": 55, + "community_name": "Media.tsx", + "norm_label": "prescriptionsmanager()" + }, + { + "label": "UITexts()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L122", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_uitexts_uitexts", + "community": 55, + "community_name": "Media.tsx", + "norm_label": "uitexts()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/pets.controller.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_pets_controller_petscontroller_constructor", + "community": 57, + "community_name": "PetsController", + "norm_label": ".constructor()" + }, + { + "label": ".deletePet()", + "file_type": "code", + "source_file": "backend/src/admin/pets.controller.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_pets_controller_petscontroller_deletepet", + "community": 57, + "community_name": "PetsController", + "norm_label": ".deletepet()" + }, + { + "label": ".getPets()", + "file_type": "code", + "source_file": "backend/src/admin/pets.controller.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_pets_controller_petscontroller_getpets", + "community": 57, + "community_name": "PetsController", + "norm_label": ".getpets()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "backend_src_blogs_blogs_service_blogsservice_constructor", + "community": 58, + "community_name": "PaginationDto", + "norm_label": ".constructor()" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "backend_src_blogs_blogs_service_blogsservice_findall", + "community": 58, + "community_name": "PaginationDto", + "norm_label": ".findall()" + }, + { + "label": ".findOneBySlug()", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "backend_src_blogs_blogs_service_blogsservice_findonebyslug", + "community": 58, + "community_name": "PaginationDto", + "norm_label": ".findonebyslug()" + }, + { + "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": 58, + "community_name": "PaginationDto", + "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": 58, + "community_name": "PaginationDto", + "norm_label": ".findallbyuser()" + }, + { + "label": "Checkout()", + "file_type": "code", + "source_file": "frontend/application/app/checkout/page.tsx", + "source_location": "L3", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_checkout_page_checkout", + "community": 6, + "community_name": "UserDashboard.tsx", + "norm_label": "checkout()" + }, + { + "label": "DashboardPage()", + "file_type": "code", + "source_file": "frontend/application/app/dashboard/page.tsx", + "source_location": "L3", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_dashboard_page_dashboardpage", + "community": 6, + "community_name": "UserDashboard.tsx", + "norm_label": "dashboardpage()" + }, + { + "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": 6, + "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": 6, + "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": 6, + "community_name": "UserDashboard.tsx", + "norm_label": "addressmodal()" + }, + { + "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": 6, + "community_name": "UserDashboard.tsx", + "norm_label": "backbutton()" + }, + { + "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": 6, + "community_name": "UserDashboard.tsx", + "norm_label": "deleteconfirmmodal()" + }, + { + "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": 6, + "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": 6, + "community_name": "UserDashboard.tsx", + "norm_label": "loginmodal()" + }, + { + "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": 6, + "community_name": "UserDashboard.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": 6, + "community_name": "UserDashboard.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": 6, + "community_name": "UserDashboard.tsx", + "norm_label": "getstatuslabel()" + }, + { + "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": 6, + "community_name": "UserDashboard.tsx", + "norm_label": "petprofile()" + }, + { + "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": 6, + "community_name": "UserDashboard.tsx", + "norm_label": "searchableselect()" + }, + { + "label": "TopUpModal()", + "file_type": "code", + "source_file": "frontend/application/components/TopUpModal.tsx", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_topupmodal_topupmodal", + "community": 6, + "community_name": "UserDashboard.tsx", + "norm_label": "topupmodal()" + }, + { + "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": 6, + "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": 6, + "community_name": "UserDashboard.tsx", + "norm_label": "topersian()" + }, + { + "label": "HomeClient()", + "file_type": "code", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_homeclient_homeclient", + "community": 61, + "community_name": "HomeClient.tsx", + "norm_label": "homeclient()" + }, + { + "label": "getHomeData()", + "file_type": "code", + "source_file": "frontend/application/app/page.tsx", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_page_gethomedata", + "community": 61, + "community_name": "HomeClient.tsx", + "norm_label": "gethomedata()" + }, + { + "label": "Home()", + "file_type": "code", + "source_file": "frontend/application/app/page.tsx", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_page_home", + "community": 61, + "community_name": "HomeClient.tsx", + "norm_label": "home()" + }, + { + "label": "Shop()", + "file_type": "code", + "source_file": "frontend/application/app/shop/page.tsx", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_shop_page_shop", + "community": 61, + "community_name": "HomeClient.tsx", + "norm_label": "shop()" + }, + { + "label": "ArchivePage()", + "file_type": "code", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L227", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_archivepage_archivepage", + "community": 61, + "community_name": "HomeClient.tsx", + "norm_label": "archivepage()" + }, + { + "label": "BannerPlacement()", + "file_type": "code", + "source_file": "frontend/application/components/BannerPlacement.tsx", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_bannerplacement_bannerplacement", + "community": 61, + "community_name": "HomeClient.tsx", + "norm_label": "bannerplacement()" + }, + { + "label": ".getBanners()", + "file_type": "code", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L327", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_lib_services_productservice_productservice_getbanners", + "community": 61, + "community_name": "HomeClient.tsx", + "norm_label": ".getbanners()" + }, + { + "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": 62, + "community_name": "BlogsController", + "norm_label": ".constructor()" + }, + { + "label": ".createBlog()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_blogs_controller_blogscontroller_createblog", + "community": 62, + "community_name": "BlogsController", + "norm_label": ".createblog()" + }, + { + "label": ".deleteBlog()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_blogs_controller_blogscontroller_deleteblog", + "community": 62, + "community_name": "BlogsController", + "norm_label": ".deleteblog()" + }, + { + "label": ".getBlogs()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_blogs_controller_blogscontroller_getblogs", + "community": 62, + "community_name": "BlogsController", + "norm_label": ".getblogs()" + }, + { + "label": ".updateBlog()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_blogs_controller_blogscontroller_updateblog", + "community": 62, + "community_name": "BlogsController", + "norm_label": ".updateblog()" + }, + { + "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": 63, + "community_name": "SettingsService", + "norm_label": ".clearallsmslogs()" + }, + { + "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": 63, + "community_name": "SettingsService", + "norm_label": ".deletesmslog()" + }, + { + "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": 63, + "community_name": "SettingsService", + "norm_label": ".getsmslogs()" + }, + { + "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": 63, + "community_name": "SettingsService", + "norm_label": ".constructor()" + }, + { + "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": 63, + "community_name": "SettingsService", + "norm_label": ".getuitexts()" + }, + { + "label": ".clearAllSmsLogs()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L407", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_clearallsmslogs", + "community": 63, + "community_name": "SettingsService", + "norm_label": ".clearallsmslogs()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L89", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_constructor", + "community": 63, + "community_name": "SettingsService", + "norm_label": ".constructor()" + }, + { + "label": ".deleteScientificTerm()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L296", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_deletescientificterm", + "community": 63, + "community_name": "SettingsService", + "norm_label": ".deletescientificterm()" + }, + { + "label": ".deleteSmsLog()", + "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_deletesmslog", + "community": 63, + "community_name": "SettingsService", + "norm_label": ".deletesmslog()" + }, + { + "label": ".getCategorySetting()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L302", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_getcategorysetting", + "community": 63, + "community_name": "SettingsService", + "norm_label": ".getcategorysetting()" + }, + { + "label": ".getFinancialSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L200", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_getfinancialsettings", + "community": 63, + "community_name": "SettingsService", + "norm_label": ".getfinancialsettings()" + }, + { + "label": ".getScientificTerms()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L271", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_getscientificterms", + "community": 63, + "community_name": "SettingsService", + "norm_label": ".getscientificterms()" + }, + { + "label": ".getSmsCredit()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L370", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_getsmscredit", + "community": 63, + "community_name": "SettingsService", + "norm_label": ".getsmscredit()" + }, + { + "label": ".getSmsLogs()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L399", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_getsmslogs", + "community": 63, + "community_name": "SettingsService", + "norm_label": ".getsmslogs()" + }, + { + "label": ".getSmsSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L366", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_getsmssettings", + "community": 63, + "community_name": "SettingsService", + "norm_label": ".getsmssettings()" + }, + { + "label": ".getUiTexts()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L119", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_getuitexts", + "community": 63, + "community_name": "SettingsService", + "norm_label": ".getuitexts()" + }, + { + "label": ".onModuleInit()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L94", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_onmoduleinit", + "community": 63, + "community_name": "SettingsService", + "norm_label": ".onmoduleinit()" + }, + { + "label": ".seedDefaultUiTexts()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L98", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_seeddefaultuitexts", + "community": 63, + "community_name": "SettingsService", + "norm_label": ".seeddefaultuitexts()" + }, + { + "label": ".testSms()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L383", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_testsms", + "community": 63, + "community_name": "SettingsService", + "norm_label": ".testsms()" + }, + { + "label": ".updateBulkUiTexts()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L191", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_updatebulkuitexts", + "community": 63, + "community_name": "SettingsService", + "norm_label": ".updatebulkuitexts()" + }, + { + "label": ".updateCategorySetting()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L327", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_updatecategorysetting", + "community": 63, + "community_name": "SettingsService", + "norm_label": ".updatecategorysetting()" + }, + { + "label": ".updateFinancialSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L225", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_updatefinancialsettings", + "community": 63, + "community_name": "SettingsService", + "norm_label": ".updatefinancialsettings()" + }, + { + "label": ".updateSmsSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L374", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_updatesmssettings", + "community": 63, + "community_name": "SettingsService", + "norm_label": ".updatesmssettings()" + }, + { + "label": ".updateUiText()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L164", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_updateuitext", + "community": 63, + "community_name": "SettingsService", + "norm_label": ".updateuitext()" + }, + { + "label": ".upsertScientificTerm()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L275", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_upsertscientificterm", + "community": 63, + "community_name": "SettingsService", + "norm_label": ".upsertscientificterm()" + }, + { + "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": 64, + "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": 64, + "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": 64, + "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": 64, + "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": 64, + "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": 64, + "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": 64, + "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": 64, + "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": 64, + "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": 64, + "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": 64, + "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": 64, + "community_name": "BannersService", + "norm_label": ".update()" + }, + { + "label": "formatPriceWithCommas()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_components_ui_priceinput_formatpricewithcommas", + "community": 66, + "community_name": "Coupons.tsx", + "norm_label": "formatpricewithcommas()" + }, + { + "label": "PriceInput()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_components_ui_priceinput_priceinput", + "community": 66, + "community_name": "Coupons.tsx", + "norm_label": "priceinput()" + }, + { + "label": "toEnglishDigits()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_components_ui_priceinput_toenglishdigits", + "community": 66, + "community_name": "Coupons.tsx", + "norm_label": "toenglishdigits()" + }, + { + "label": "CouponModal()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L259", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_coupons_couponmodal", + "community": 66, + "community_name": "Coupons.tsx", + "norm_label": "couponmodal()" + }, + { + "label": "Coupons()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_coupons_coupons", + "community": 66, + "community_name": "Coupons.tsx", + "norm_label": "coupons()" + }, + { + "label": "FinancialSettingsPage()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_financialsettingspage_financialsettingspage", + "community": 66, + "community_name": "Coupons.tsx", + "norm_label": "financialsettingspage()" + }, + { + "label": "Products()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Products.tsx", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_products_products", + "community": 66, + "community_name": "Coupons.tsx", + "norm_label": "products()" + }, + { + "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": 69, + "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": 69, + "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": 69, + "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": 69, + "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": 69, + "community_name": "WikiController", + "norm_label": ".updateterm()" + }, + { + "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": 7, + "community_name": "MediaSelector.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": 7, + "community_name": "MediaSelector.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": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "mediaselector()" + }, + { + "label": "BannersManager()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_bannersmanager_bannersmanager", + "community": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "bannersmanager()" + }, + { + "label": "Blogs()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_blogs_blogs", + "community": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "blogs()" + }, + { + "label": "Categories()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Categories.tsx", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_categories_categories", + "community": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "categories()" + }, + { + "label": "CMS()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/CMS.tsx", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_cms_cms", + "community": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "cms()" + }, + { + "label": "DoctorsManager()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_doctorsmanager_doctorsmanager", + "community": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "doctorsmanager()" + }, + { + "label": "IngredientsManager()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_ingredientsmanager_ingredientsmanager", + "community": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "ingredientsmanager()" + }, + { + "label": "TestimonialsManager()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_testimonialsmanager_testimonialsmanager", + "community": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "testimonialsmanager()" + }, + { + "label": "Videos()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Videos.tsx", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_videos_videos", + "community": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "videos()" + }, + { + "label": ".getCoupons()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L183", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_controller_admincontroller_getcoupons", + "community": 70, + "community_name": "AdminQueryDto", + "norm_label": ".getcoupons()" + }, + { + "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": 70, + "community_name": "AdminQueryDto", + "norm_label": ".getdashboardstats()" + }, + { + "label": ".getDoctors()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L221", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_controller_admincontroller_getdoctors", + "community": 70, + "community_name": "AdminQueryDto", + "norm_label": ".getdoctors()" + }, + { + "label": ".getOrders()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L158", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_controller_admincontroller_getorders", + "community": 70, + "community_name": "AdminQueryDto", + "norm_label": ".getorders()" + }, + { + "label": ".getProducts()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L124", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_controller_admincontroller_getproducts", + "community": 70, + "community_name": "AdminQueryDto", + "norm_label": ".getproducts()" + }, + { + "label": ".getUsers()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_controller_admincontroller_getusers", + "community": 70, + "community_name": "AdminQueryDto", + "norm_label": ".getusers()" + }, + { + "label": ".getCoupons()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L561", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_getcoupons", + "community": 70, + "community_name": "AdminQueryDto", + "norm_label": ".getcoupons()" + }, + { + "label": ".getDoctors()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L757", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_getdoctors", + "community": 70, + "community_name": "AdminQueryDto", + "norm_label": ".getdoctors()" + }, + { + "label": ".getOrders()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L489", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_getorders", + "community": 70, + "community_name": "AdminQueryDto", + "norm_label": ".getorders()" + }, + { + "label": ".getProducts()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L280", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_getproducts", + "community": 70, + "community_name": "AdminQueryDto", + "norm_label": ".getproducts()" + }, + { + "label": ".getUsers()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L100", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_getusers", + "community": 70, + "community_name": "AdminQueryDto", + "norm_label": ".getusers()" + }, + { + "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": 71, + "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": 71, + "community_name": "PetsController", + "norm_label": ".addreminder()" + }, + { + "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": 71, + "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": 71, + "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": 71, + "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": 71, + "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": 71, + "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": 71, + "community_name": "PetsController", + "norm_label": ".update()" + }, + { + "label": ".uploadPetImage()", + "file_type": "code", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L111", + "_callable": true, + "_origin": "ast", + "id": "backend_src_pets_pets_controller_petscontroller_uploadpetimage", + "community": 71, + "community_name": "PetsController", + "norm_label": ".uploadpetimage()" + }, + { + "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": 72, + "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": 72, + "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": 72, + "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": 72, + "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": 72, + "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": 72, + "community_name": "seo.module.ts", + "norm_label": ".getsitemapurls()" + }, + { + "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": 79, + "community_name": "HomeController", + "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": 79, + "community_name": "HomeController", + "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": 79, + "community_name": "HomeController", + "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": 79, + "community_name": "HomeController", + "norm_label": ".gethomedata()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/pets.service.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_pets_service_petsservice_constructor", "community": 8, "community_name": "admin.module.ts", - "norm_label": ".updateblog()", - "id": "backend_src_admin_blogs_service_blogsservice_updateblog" + "norm_label": ".constructor()" + }, + { + "label": ".deletePet()", + "file_type": "code", + "source_file": "backend/src/admin/pets.service.ts", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_pets_service_petsservice_deletepet", + "community": 8, + "community_name": "admin.module.ts", + "norm_label": ".deletepet()" + }, + { + "label": ".getPets()", + "file_type": "code", + "source_file": "backend/src/admin/pets.service.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_pets_service_petsservice_getpets", + "community": 8, + "community_name": "admin.module.ts", + "norm_label": ".getpets()" }, { "label": ".constructor()", @@ -13255,10 +13255,10 @@ "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()", - "id": "backend_src_admin_reports_controller_reportscontroller_constructor" + "norm_label": ".constructor()" }, { "label": ".getReports()", @@ -13267,10 +13267,10 @@ "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()", - "id": "backend_src_admin_reports_controller_reportscontroller_getreports" + "norm_label": ".getreports()" }, { "label": ".constructor()", @@ -13279,10 +13279,10 @@ "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()", - "id": "backend_src_admin_reports_service_reportsservice_constructor" + "norm_label": ".constructor()" }, { "label": ".getDashboardReports()", @@ -13291,10 +13291,10 @@ "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()", - "id": "backend_src_admin_reports_service_reportsservice_getdashboardreports" + "norm_label": ".getdashboardreports()" }, { "label": ".constructor()", @@ -13303,10 +13303,10 @@ "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()", - "id": "backend_src_admin_wiki_service_wikiservice_constructor" + "norm_label": ".constructor()" }, { "label": ".createTerm()", @@ -13315,10 +13315,10 @@ "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()", - "id": "backend_src_admin_wiki_service_wikiservice_createterm" + "norm_label": ".createterm()" }, { "label": ".deleteTerm()", @@ -13327,10 +13327,10 @@ "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()", - "id": "backend_src_admin_wiki_service_wikiservice_deleteterm" + "norm_label": ".deleteterm()" }, { "label": ".getTerms()", @@ -13339,10 +13339,10 @@ "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()", - "id": "backend_src_admin_wiki_service_wikiservice_getterms" + "norm_label": ".getterms()" }, { "label": ".updateTerm()", @@ -13351,10 +13351,10 @@ "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()", - "id": "backend_src_admin_wiki_service_wikiservice_updateterm" + "norm_label": ".updateterm()" }, { "label": ".checkHealth()", @@ -13363,10 +13363,10 @@ "source_location": "L54", "_callable": true, "_origin": "ast", + "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_checkhealth", "community": 80, "community_name": "zibal.service.ts", - "norm_label": ".checkhealth()", - "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_checkhealth" + "norm_label": ".checkhealth()" }, { "label": ".getGatewayName()", @@ -13375,10 +13375,10 @@ "source_location": "L49", "_callable": true, "_origin": "ast", + "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_getgatewayname", "community": 80, "community_name": "zibal.service.ts", - "norm_label": ".getgatewayname()", - "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_getgatewayname" + "norm_label": ".getgatewayname()" }, { "label": ".getStartUrl()", @@ -13387,10 +13387,10 @@ "source_location": "L53", "_callable": true, "_origin": "ast", + "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_getstarturl", "community": 80, "community_name": "zibal.service.ts", - "norm_label": ".getstarturl()", - "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_getstarturl" + "norm_label": ".getstarturl()" }, { "label": ".inquiryPayment()", @@ -13399,10 +13399,10 @@ "source_location": "L52", "_callable": true, "_origin": "ast", + "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_inquirypayment", "community": 80, "community_name": "zibal.service.ts", - "norm_label": ".inquirypayment()", - "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_inquirypayment" + "norm_label": ".inquirypayment()" }, { "label": ".requestPayment()", @@ -13411,10 +13411,10 @@ "source_location": "L50", "_callable": true, "_origin": "ast", + "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_requestpayment", "community": 80, "community_name": "zibal.service.ts", - "norm_label": ".requestpayment()", - "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_requestpayment" + "norm_label": ".requestpayment()" }, { "label": ".verifyPayment()", @@ -13423,10 +13423,10 @@ "source_location": "L51", "_callable": true, "_origin": "ast", + "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_verifypayment", "community": 80, "community_name": "zibal.service.ts", - "norm_label": ".verifypayment()", - "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_verifypayment" + "norm_label": ".verifypayment()" }, { "label": "Layout()", @@ -13435,10 +13435,10 @@ "source_location": "L6", "_callable": true, "_origin": "ast", + "id": "frontend_admin_panel_src_components_layout_layout", "community": 82, "community_name": "api", - "norm_label": "layout()", - "id": "frontend_admin_panel_src_components_layout_layout" + "norm_label": "layout()" }, { "label": "Sidebar()", @@ -13447,10 +13447,10 @@ "source_location": "L55", "_callable": true, "_origin": "ast", + "id": "frontend_admin_panel_src_components_sidebar_sidebar", "community": 82, "community_name": "api", - "norm_label": "sidebar()", - "id": "frontend_admin_panel_src_components_sidebar_sidebar" + "norm_label": "sidebar()" }, { "label": "Skeleton()", @@ -13459,10 +13459,10 @@ "source_location": "L2", "_callable": true, "_origin": "ast", + "id": "frontend_admin_panel_src_components_ui_skeleton_skeleton", "community": 83, "community_name": "Orders.tsx", - "norm_label": "skeleton()", - "id": "frontend_admin_panel_src_components_ui_skeleton_skeleton" + "norm_label": "skeleton()" }, { "label": "getPaymentMethodLabel()", @@ -13531,10 +13531,10 @@ "source_location": "L41", "_callable": true, "_origin": "ast", + "id": "frontend_admin_panel_src_pages_users_users", "community": 83, "community_name": "Orders.tsx", - "norm_label": "users()", - "id": "frontend_admin_panel_src_pages_users_users" + "norm_label": "users()" }, { "label": "main()", @@ -13543,10 +13543,10 @@ "source_location": "L5", "_callable": true, "_origin": "ast", + "id": "backend_prisma_seed_home_main", "community": 85, "community_name": "seed-products.ts", - "norm_label": "main()", - "id": "backend_prisma_seed_home_main" + "norm_label": "main()" }, { "label": "main()", @@ -13555,10 +13555,10 @@ "source_location": "L11", "_callable": true, "_origin": "ast", + "id": "backend_prisma_seed_main", "community": 85, "community_name": "seed-products.ts", - "norm_label": "main()", - "id": "backend_prisma_seed_main" + "norm_label": "main()" }, { "label": "determineSuitableFor()", @@ -13567,10 +13567,10 @@ "source_location": "L16", "_callable": true, "_origin": "ast", + "id": "backend_prisma_seed_products_determinesuitablefor", "community": 85, "community_name": "seed-products.ts", - "norm_label": "determinesuitablefor()", - "id": "backend_prisma_seed_products_determinesuitablefor" + "norm_label": "determinesuitablefor()" }, { "label": "findOrCreateCategory()", @@ -13579,10 +13579,10 @@ "source_location": "L128", "_callable": true, "_origin": "ast", + "id": "backend_prisma_seed_products_findorcreatecategory", "community": 85, "community_name": "seed-products.ts", - "norm_label": "findorcreatecategory()", - "id": "backend_prisma_seed_products_findorcreatecategory" + "norm_label": "findorcreatecategory()" }, { "label": "getProductImageUrl()", @@ -13591,10 +13591,10 @@ "source_location": "L41", "_callable": true, "_origin": "ast", + "id": "backend_prisma_seed_products_getproductimageurl", "community": 85, "community_name": "seed-products.ts", - "norm_label": "getproductimageurl()", - "id": "backend_prisma_seed_products_getproductimageurl" + "norm_label": "getproductimageurl()" }, { "label": "main()", @@ -13603,10 +13603,10 @@ "source_location": "L268", "_callable": true, "_origin": "ast", + "id": "backend_prisma_seed_products_main", "community": 85, "community_name": "seed-products.ts", - "norm_label": "main()", - "id": "backend_prisma_seed_products_main" + "norm_label": "main()" }, { "label": "parseSize()", @@ -13615,10 +13615,10 @@ "source_location": "L31", "_callable": true, "_origin": "ast", + "id": "backend_prisma_seed_products_parsesize", "community": 85, "community_name": "seed-products.ts", - "norm_label": "parsesize()", - "id": "backend_prisma_seed_products_parsesize" + "norm_label": "parsesize()" }, { "label": "slugify()", @@ -13627,10 +13627,10 @@ "source_location": "L7", "_callable": true, "_origin": "ast", + "id": "backend_prisma_seed_products_slugify", "community": 85, "community_name": "seed-products.ts", - "norm_label": "slugify()", - "id": "backend_prisma_seed_products_slugify" + "norm_label": "slugify()" }, { "label": "GlobalLoading()", @@ -13639,10 +13639,10 @@ "source_location": "L4", "_callable": true, "_origin": "ast", + "id": "frontend_application_app_loading_globalloading", "community": 9, "community_name": "PetProfile.tsx", - "norm_label": "globalloading()", - "id": "frontend_application_app_loading_globalloading" + "norm_label": "globalloading()" }, { "label": "ProfilePage()", @@ -13651,10 +13651,10 @@ "source_location": "L3", "_callable": true, "_origin": "ast", + "id": "frontend_application_app_profile_page_profilepage", "community": 9, "community_name": "PetProfile.tsx", - "norm_label": "profilepage()", - "id": "frontend_application_app_profile_page_profilepage" + "norm_label": "profilepage()" }, { "label": "FeaturedProducts()", @@ -13663,10 +13663,10 @@ "source_location": "L139", "_callable": true, "_origin": "ast", + "id": "frontend_application_components_featuredproducts_featuredproducts", "community": 9, "community_name": "PetProfile.tsx", - "norm_label": "featuredproducts()", - "id": "frontend_application_components_featuredproducts_featuredproducts" + "norm_label": "featuredproducts()" }, { "label": "OrderRowSkeleton()", @@ -13675,10 +13675,10 @@ "source_location": "L70", "_callable": true, "_origin": "ast", + "id": "frontend_application_components_skeleton_orderrowskeleton", "community": 9, "community_name": "PetProfile.tsx", - "norm_label": "orderrowskeleton()", - "id": "frontend_application_components_skeleton_orderrowskeleton" + "norm_label": "orderrowskeleton()" }, { "label": "PetProfileSkeleton()", @@ -13687,10 +13687,10 @@ "source_location": "L43", "_callable": true, "_origin": "ast", + "id": "frontend_application_components_skeleton_petprofileskeleton", "community": 9, "community_name": "PetProfile.tsx", - "norm_label": "petprofileskeleton()", - "id": "frontend_application_components_skeleton_petprofileskeleton" + "norm_label": "petprofileskeleton()" }, { "label": "ProductCardSkeleton()", @@ -13699,10 +13699,10 @@ "source_location": "L16", "_callable": true, "_origin": "ast", + "id": "frontend_application_components_skeleton_productcardskeleton", "community": 9, "community_name": "PetProfile.tsx", - "norm_label": "productcardskeleton()", - "id": "frontend_application_components_skeleton_productcardskeleton" + "norm_label": "productcardskeleton()" }, { "label": "Skeleton()", @@ -13711,10 +13711,10 @@ "source_location": "L8", "_callable": true, "_origin": "ast", + "id": "frontend_application_components_skeleton_skeleton", "community": 9, "community_name": "PetProfile.tsx", - "norm_label": "skeleton()", - "id": "frontend_application_components_skeleton_skeleton" + "norm_label": "skeleton()" }, { "label": "generateMetadata()", @@ -13723,10 +13723,10 @@ "source_location": "L6", "_callable": true, "_origin": "ast", + "id": "frontend_application_app_shop_slug_page_generatemetadata", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "generatemetadata()", - "id": "frontend_application_app_shop_slug_page_generatemetadata" + "norm_label": "generatemetadata()" }, { "label": "ShopProductPage()", @@ -13735,10 +13735,10 @@ "source_location": "L43", "_callable": true, "_origin": "ast", + "id": "frontend_application_app_shop_slug_page_shopproductpage", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "shopproductpage()", - "id": "frontend_application_app_shop_slug_page_shopproductpage" + "norm_label": "shopproductpage()" }, { "label": "Videos()", @@ -13747,10 +13747,10 @@ "source_location": "L3", "_callable": true, "_origin": "ast", + "id": "frontend_application_app_videos_page_videos", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "videos()", - "id": "frontend_application_app_videos_page_videos" + "norm_label": "videos()" }, { "label": "ProductDetailModal()", @@ -13759,10 +13759,10 @@ "source_location": "L14", "_callable": true, "_origin": "ast", + "id": "frontend_application_components_catalog_productdetailmodal_productdetailmodal", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "productdetailmodal()", - "id": "frontend_application_components_catalog_productdetailmodal_productdetailmodal" + "norm_label": "productdetailmodal()" }, { "label": "PodcastInlinePlayer()", @@ -13771,10 +13771,10 @@ "source_location": "L32", "_callable": true, "_origin": "ast", + "id": "frontend_application_components_podcastinlineplayer_podcastinlineplayer", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "podcastinlineplayer()", - "id": "frontend_application_components_podcastinlineplayer_podcastinlineplayer" + "norm_label": "podcastinlineplayer()" }, { "label": "handleClickOutside()", @@ -13783,10 +13783,10 @@ "source_location": "L49", "_callable": true, "_origin": "ast", + "id": "frontend_application_components_podcastinlineplayer_podcastinlineplayer_handleclickoutside", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "handleclickoutside()", - "id": "frontend_application_components_podcastinlineplayer_podcastinlineplayer_handleclickoutside" + "norm_label": "handleclickoutside()" }, { "label": "ProductPage()", @@ -13795,10 +13795,10 @@ "source_location": "L76", "_callable": true, "_origin": "ast", + "id": "frontend_application_components_productpage_productpage", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "productpage()", - "id": "frontend_application_components_productpage_productpage" + "norm_label": "productpage()" }, { "label": "ProductReviews()", @@ -13807,10 +13807,10 @@ "source_location": "L33", "_callable": true, "_origin": "ast", + "id": "frontend_application_components_productreviews_productreviews", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "productreviews()", - "id": "frontend_application_components_productreviews_productreviews" + "norm_label": "productreviews()" }, { "label": "SafeImage()", @@ -13819,10 +13819,10 @@ "source_location": "L15", "_callable": true, "_origin": "ast", + "id": "frontend_application_components_safeimage_safeimage", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "safeimage()", - "id": "frontend_application_components_safeimage_safeimage" + "norm_label": "safeimage()" }, { "label": "VetGallery()", @@ -13831,10 +13831,10 @@ "source_location": "L71", "_callable": true, "_origin": "ast", + "id": "frontend_application_components_vetgallery_vetgallery", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "vetgallery()", - "id": "frontend_application_components_vetgallery_vetgallery" + "norm_label": "vetgallery()" }, { "label": "VideoModalPlayer()", @@ -13843,10 +13843,10 @@ "source_location": "L39", "_callable": true, "_origin": "ast", + "id": "frontend_application_components_videomodalplayer_videomodalplayer", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "videomodalplayer()", - "id": "frontend_application_components_videomodalplayer_videomodalplayer" + "norm_label": "videomodalplayer()" }, { "label": "handleClickOutside()", @@ -13855,10 +13855,10 @@ "source_location": "L61", "_callable": true, "_origin": "ast", + "id": "frontend_application_components_videomodalplayer_videomodalplayer_handleclickoutside", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "handleclickoutside()", - "id": "frontend_application_components_videomodalplayer_videomodalplayer_handleclickoutside" + "norm_label": "handleclickoutside()" }, { "label": "VideosPage()", @@ -13867,105 +13867,130 @@ "source_location": "L12", "_callable": true, "_origin": "ast", + "id": "frontend_application_components_videospage_videospage", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "videospage()", - "id": "frontend_application_components_videospage_videospage" + "norm_label": "videospage()" }, { - "label": ".sendOrderConfirmation()", + "label": ".deleteCoupon()", "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L875", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L214", "_callable": true, "_origin": "ast", + "id": "backend_src_admin_admin_controller_admincontroller_deletecoupon", "community": 98, - "community_name": "OrdersService", - "norm_label": ".sendorderconfirmation()", - "id": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation" + "community_name": "AdminController", + "norm_label": ".deletecoupon()" }, { - "label": ".constructor()", + "label": ".deleteDoctor()", "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L17", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L261", "_callable": true, "_origin": "ast", + "id": "backend_src_admin_admin_controller_admincontroller_deletedoctor", "community": 98, - "community_name": "OrdersService", - "norm_label": ".constructor()", - "id": "backend_src_orders_orders_service_ordersservice_constructor" + "community_name": "AdminController", + "norm_label": ".deletedoctor()" }, { - "label": ".create()", + "label": ".deleteProduct()", "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L101", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L148", "_callable": true, "_origin": "ast", + "id": "backend_src_admin_admin_controller_admincontroller_deleteproduct", "community": 98, - "community_name": "OrdersService", - "norm_label": ".create()", - "id": "backend_src_orders_orders_service_ordersservice_create" + "community_name": "AdminController", + "norm_label": ".deleteproduct()" }, { - "label": ".generateTrackingNumber()", + "label": ".deleteUser()", "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L22", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L83", "_callable": true, "_origin": "ast", + "id": "backend_src_admin_admin_controller_admincontroller_deleteuser", "community": 98, - "community_name": "OrdersService", - "norm_label": ".generatetrackingnumber()", - "id": "backend_src_orders_orders_service_ordersservice_generatetrackingnumber" + "community_name": "AdminController", + "norm_label": ".deleteuser()" }, { - "label": ".releaseExpiredInventoryReservations()", + "label": ".getUserDetails()", "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L425", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L62", "_callable": true, "_origin": "ast", + "id": "backend_src_admin_admin_controller_admincontroller_getuserdetails", "community": 98, - "community_name": "OrdersService", - "norm_label": ".releaseexpiredinventoryreservations()", - "id": "backend_src_orders_orders_service_ordersservice_releaseexpiredinventoryreservations" + "community_name": "AdminController", + "norm_label": ".getuserdetails()" }, { - "label": ".retryPayment()", + "label": ".deleteCoupon()", "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L446", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L656", "_callable": true, "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_deletecoupon", "community": 98, - "community_name": "OrdersService", - "norm_label": ".retrypayment()", - "id": "backend_src_orders_orders_service_ordersservice_retrypayment" + "community_name": "AdminController", + "norm_label": ".deletecoupon()" }, { - "label": ".updateStatus()", + "label": ".deleteDoctor()", "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L317", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L786", "_callable": true, "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_deletedoctor", "community": 98, - "community_name": "OrdersService", - "norm_label": ".updatestatus()", - "id": "backend_src_orders_orders_service_ordersservice_updatestatus" + "community_name": "AdminController", + "norm_label": ".deletedoctor()" }, { - "label": "ApiBearerAuth", + "label": ".deleteProduct()", "file_type": "code", - "source_file": "", - "source_location": "", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L483", + "_callable": true, "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": "apibearerauth", - "id": "backend_src_admin_admin_controller_ts_apibearerauth" + "id": "backend_src_admin_admin_service_adminservice_deleteproduct", + "community": 98, + "community_name": "AdminController", + "norm_label": ".deleteproduct()" + }, + { + "label": ".deleteUser()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L257", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_deleteuser", + "community": 98, + "community_name": "AdminController", + "norm_label": ".deleteuser()" + }, + { + "label": ".getUserDetails()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L150", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_getuserdetails", + "community": 98, + "community_name": "AdminController", + "norm_label": ".getuserdetails()" }, { "label": "ApiOperation", @@ -13973,21 +13998,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_admin_admin_controller_ts_apioperation", "community": 0, - "community_name": "AdminService", - "norm_label": "apioperation", - "id": "backend_src_admin_admin_controller_ts_apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": "apitags", - "id": "backend_src_admin_admin_controller_ts_apitags" + "community_name": "ApiOperation", + "norm_label": "apioperation" }, { "label": "Body", @@ -13995,54 +14009,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_admin_admin_controller_ts_body", "community": 0, - "community_name": "AdminService", - "norm_label": "body", - "id": "backend_src_admin_admin_controller_ts_body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": "controller", - "id": "backend_src_admin_admin_controller_ts_controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": "delete", - "id": "backend_src_admin_admin_controller_ts_delete" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": "param", - "id": "backend_src_admin_admin_controller_ts_param" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": "post", - "id": "backend_src_admin_admin_controller_ts_post" + "community_name": "ApiOperation", + "norm_label": "body" }, { "label": "Put", @@ -14050,32 +14020,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_admin_admin_controller_ts_put", "community": 0, - "community_name": "AdminService", - "norm_label": "put", - "id": "backend_src_admin_admin_controller_ts_put" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": "useguards", - "id": "backend_src_admin_admin_controller_ts_useguards" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 0, - "community_name": "AdminService", - "norm_label": "injectable", - "id": "backend_src_admin_admin_service_ts_injectable" + "community_name": "ApiOperation", + "norm_label": "put" }, { "label": "blog/page.tsx", @@ -14083,10 +14031,10 @@ "source_file": "frontend/application/app/blog/page.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_app_blog_page", "community": 1, "community_name": "productService.ts", - "norm_label": "blog/page.tsx", - "id": "frontend_application_app_blog_page" + "norm_label": "blog/page.tsx" }, { "label": "metadata", @@ -14094,10 +14042,10 @@ "source_file": "frontend/application/app/blog/page.tsx", "source_location": "L4", "_origin": "ast", + "id": "frontend_application_app_blog_page_metadata", "community": 1, "community_name": "productService.ts", - "norm_label": "metadata", - "id": "frontend_application_app_blog_page_metadata" + "norm_label": "metadata" }, { "label": "CatalogClient.tsx", @@ -14105,10 +14053,10 @@ "source_file": "frontend/application/app/catalog/CatalogClient.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_app_catalog_catalogclient", "community": 1, "community_name": "productService.ts", - "norm_label": "catalogclient.tsx", - "id": "frontend_application_app_catalog_catalogclient" + "norm_label": "catalogclient.tsx" }, { "label": "catalog/page.tsx", @@ -14116,10 +14064,10 @@ "source_file": "frontend/application/app/catalog/page.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_app_catalog_page", "community": 1, "community_name": "productService.ts", - "norm_label": "catalog/page.tsx", - "id": "frontend_application_app_catalog_page" + "norm_label": "catalog/page.tsx" }, { "label": "metadata", @@ -14127,10 +14075,10 @@ "source_file": "frontend/application/app/catalog/page.tsx", "source_location": "L4", "_origin": "ast", + "id": "frontend_application_app_catalog_page_metadata", "community": 1, "community_name": "productService.ts", - "norm_label": "metadata", - "id": "frontend_application_app_catalog_page_metadata" + "norm_label": "metadata" }, { "label": "search/page.tsx", @@ -14138,10 +14086,10 @@ "source_file": "frontend/application/app/search/page.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_app_search_page", "community": 1, "community_name": "productService.ts", - "norm_label": "search/page.tsx", - "id": "frontend_application_app_search_page" + "norm_label": "search/page.tsx" }, { "label": "metadata", @@ -14149,10 +14097,10 @@ "source_file": "frontend/application/app/search/page.tsx", "source_location": "L4", "_origin": "ast", + "id": "frontend_application_app_search_page_metadata", "community": 1, "community_name": "productService.ts", - "norm_label": "metadata", - "id": "frontend_application_app_search_page_metadata" + "norm_label": "metadata" }, { "label": "sitemap.ts", @@ -14160,10 +14108,10 @@ "source_file": "frontend/application/app/sitemap.ts", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_app_sitemap", "community": 1, "community_name": "productService.ts", - "norm_label": "sitemap.ts", - "id": "frontend_application_app_sitemap" + "norm_label": "sitemap.ts" }, { "label": "wiki/page.tsx", @@ -14171,10 +14119,10 @@ "source_file": "frontend/application/app/wiki/page.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_app_wiki_page", "community": 1, "community_name": "productService.ts", - "norm_label": "wiki/page.tsx", - "id": "frontend_application_app_wiki_page" + "norm_label": "wiki/page.tsx" }, { "label": "metadata", @@ -14182,10 +14130,10 @@ "source_file": "frontend/application/app/wiki/page.tsx", "source_location": "L5", "_origin": "ast", + "id": "frontend_application_app_wiki_page_metadata", "community": 1, "community_name": "productService.ts", - "norm_label": "metadata", - "id": "frontend_application_app_wiki_page_metadata" + "norm_label": "metadata" }, { "label": "BlogPage.tsx", @@ -14193,10 +14141,10 @@ "source_file": "frontend/application/components/BlogPage.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_components_blogpage", "community": 1, "community_name": "productService.ts", - "norm_label": "blogpage.tsx", - "id": "frontend_application_components_blogpage" + "norm_label": "blogpage.tsx" }, { "label": "CatalogPageSpread.tsx", @@ -14204,10 +14152,10 @@ "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_components_catalog_catalogpagespread", "community": 1, "community_name": "productService.ts", - "norm_label": "catalogpagespread.tsx", - "id": "frontend_application_components_catalog_catalogpagespread" + "norm_label": "catalogpagespread.tsx" }, { "label": "FlipbookCatalog.tsx", @@ -14215,10 +14163,10 @@ "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_components_catalog_flipbookcatalog", "community": 1, "community_name": "productService.ts", - "norm_label": "flipbookcatalog.tsx", - "id": "frontend_application_components_catalog_flipbookcatalog" + "norm_label": "flipbookcatalog.tsx" }, { "label": "IngredientWiki.tsx", @@ -14226,10 +14174,10 @@ "source_file": "frontend/application/components/IngredientWiki.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_components_ingredientwiki", "community": 1, "community_name": "productService.ts", - "norm_label": "ingredientwiki.tsx", - "id": "frontend_application_components_ingredientwiki" + "norm_label": "ingredientwiki.tsx" }, { "label": "INGREDIENT_MATCH_KEYWORDS", @@ -14237,10 +14185,10 @@ "source_file": "frontend/application/components/IngredientWiki.tsx", "source_location": "L16", "_origin": "ast", + "id": "frontend_application_components_ingredientwiki_ingredient_match_keywords", "community": 1, "community_name": "productService.ts", - "norm_label": "ingredient_match_keywords", - "id": "frontend_application_components_ingredientwiki_ingredient_match_keywords" + "norm_label": "ingredient_match_keywords" }, { "label": "SearchResultsPage.tsx", @@ -14248,10 +14196,10 @@ "source_file": "frontend/application/components/SearchResultsPage.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_components_searchresultspage", "community": 1, "community_name": "productService.ts", - "norm_label": "searchresultspage.tsx", - "id": "frontend_application_components_searchresultspage" + "norm_label": "searchresultspage.tsx" }, { "label": "SmartAdvisor.tsx", @@ -14259,10 +14207,10 @@ "source_file": "frontend/application/components/SmartAdvisor.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_components_smartadvisor", "community": 1, "community_name": "productService.ts", - "norm_label": "smartadvisor.tsx", - "id": "frontend_application_components_smartadvisor" + "norm_label": "smartadvisor.tsx" }, { "label": "CURRENT_SYMPTOMS", @@ -14270,10 +14218,10 @@ "source_file": "frontend/application/components/SmartAdvisor.tsx", "source_location": "L32", "_origin": "ast", + "id": "frontend_application_components_smartadvisor_current_symptoms", "community": 1, "community_name": "productService.ts", - "norm_label": "current_symptoms", - "id": "frontend_application_components_smartadvisor_current_symptoms" + "norm_label": "current_symptoms" }, { "label": "MEDICAL_HISTORIES", @@ -14281,10 +14229,10 @@ "source_file": "frontend/application/components/SmartAdvisor.tsx", "source_location": "L43", "_origin": "ast", + "id": "frontend_application_components_smartadvisor_medical_histories", "community": 1, "community_name": "productService.ts", - "norm_label": "medical_histories", - "id": "frontend_application_components_smartadvisor_medical_histories" + "norm_label": "medical_histories" }, { "label": "products.ts", @@ -14292,10 +14240,10 @@ "source_file": "frontend/application/lib/data/products.ts", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_lib_data_products", "community": 1, "community_name": "productService.ts", - "norm_label": "products.ts", - "id": "frontend_application_lib_data_products" + "norm_label": "products.ts" }, { "label": "INGREDIENTS_WIKI", @@ -14303,10 +14251,10 @@ "source_file": "frontend/application/lib/data/products.ts", "source_location": "L80", "_origin": "ast", + "id": "frontend_application_lib_data_products_ingredients_wiki", "community": 1, "community_name": "productService.ts", - "norm_label": "ingredients_wiki", - "id": "frontend_application_lib_data_products_ingredients_wiki" + "norm_label": "ingredients_wiki" }, { "label": "PRODUCTS", @@ -14314,10 +14262,10 @@ "source_file": "frontend/application/lib/data/products.ts", "source_location": "L383", "_origin": "ast", + "id": "frontend_application_lib_data_products_products", "community": 1, "community_name": "productService.ts", - "norm_label": "products", - "id": "frontend_application_lib_data_products_products" + "norm_label": "products" }, { "label": "productService.ts", @@ -14325,10 +14273,10 @@ "source_file": "frontend/application/lib/services/productService.ts", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_lib_services_productservice", "community": 1, "community_name": "productService.ts", - "norm_label": "productservice.ts", - "id": "frontend_application_lib_services_productservice" + "norm_label": "productservice.ts" }, { "label": "CATEGORY_SLUG_TO_NAME", @@ -14336,10 +14284,21 @@ "source_file": "frontend/application/lib/services/productService.ts", "source_location": "L5", "_origin": "ast", + "id": "frontend_application_lib_services_productservice_category_slug_to_name", "community": 1, "community_name": "productService.ts", - "norm_label": "category_slug_to_name", - "id": "frontend_application_lib_services_productservice_category_slug_to_name" + "norm_label": "category_slug_to_name" + }, + { + "label": "doctors.controller.ts", + "file_type": "code", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_doctors_doctors_controller", + "community": 10, + "community_name": "DoctorsService", + "norm_label": "doctors.controller.ts" }, { "label": "ApiBearerAuth", @@ -14347,10 +14306,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_doctors_doctors_controller_ts_apibearerauth", "community": 10, "community_name": "DoctorsService", - "norm_label": "apibearerauth", - "id": "backend_src_doctors_doctors_controller_ts_apibearerauth" + "norm_label": "apibearerauth" }, { "label": "ApiOperation", @@ -14358,10 +14317,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_doctors_doctors_controller_ts_apioperation", "community": 10, "community_name": "DoctorsService", - "norm_label": "apioperation", - "id": "backend_src_doctors_doctors_controller_ts_apioperation" + "norm_label": "apioperation" }, { "label": "ApiTags", @@ -14369,10 +14328,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_doctors_doctors_controller_ts_apitags", "community": 10, "community_name": "DoctorsService", - "norm_label": "apitags", - "id": "backend_src_doctors_doctors_controller_ts_apitags" + "norm_label": "apitags" }, { "label": "Body", @@ -14380,10 +14339,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_doctors_doctors_controller_ts_body", "community": 10, "community_name": "DoctorsService", - "norm_label": "body", - "id": "backend_src_doctors_doctors_controller_ts_body" + "norm_label": "body" }, { "label": "Controller", @@ -14391,10 +14350,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_doctors_doctors_controller_ts_controller", "community": 10, "community_name": "DoctorsService", - "norm_label": "controller", - "id": "backend_src_doctors_doctors_controller_ts_controller" + "norm_label": "controller" }, { "label": "Delete", @@ -14402,10 +14361,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_doctors_doctors_controller_ts_delete", "community": 10, "community_name": "DoctorsService", - "norm_label": "delete", - "id": "backend_src_doctors_doctors_controller_ts_delete" + "norm_label": "delete" }, { "label": "Get", @@ -14413,10 +14372,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_doctors_doctors_controller_ts_get", "community": 10, "community_name": "DoctorsService", - "norm_label": "get", - "id": "backend_src_doctors_doctors_controller_ts_get" + "norm_label": "get" }, { "label": "Param", @@ -14424,10 +14383,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_doctors_doctors_controller_ts_param", "community": 10, "community_name": "DoctorsService", - "norm_label": "param", - "id": "backend_src_doctors_doctors_controller_ts_param" + "norm_label": "param" }, { "label": "Post", @@ -14435,10 +14394,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_doctors_doctors_controller_ts_post", "community": 10, "community_name": "DoctorsService", - "norm_label": "post", - "id": "backend_src_doctors_doctors_controller_ts_post" + "norm_label": "post" }, { "label": "Put", @@ -14446,10 +14405,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_doctors_doctors_controller_ts_put", "community": 10, "community_name": "DoctorsService", - "norm_label": "put", - "id": "backend_src_doctors_doctors_controller_ts_put" + "norm_label": "put" }, { "label": "Query", @@ -14457,10 +14416,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_doctors_doctors_controller_ts_query", "community": 10, "community_name": "DoctorsService", - "norm_label": "query", - "id": "backend_src_doctors_doctors_controller_ts_query" + "norm_label": "query" }, { "label": "UseGuards", @@ -14468,10 +14427,21 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_doctors_doctors_controller_ts_useguards", "community": 10, "community_name": "DoctorsService", - "norm_label": "useguards", - "id": "backend_src_doctors_doctors_controller_ts_useguards" + "norm_label": "useguards" + }, + { + "label": "doctors.service.ts", + "file_type": "code", + "source_file": "backend/src/doctors/doctors.service.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_doctors_doctors_service", + "community": 10, + "community_name": "DoctorsService", + "norm_label": "doctors.service.ts" }, { "label": "Injectable", @@ -14479,10 +14449,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_doctors_doctors_service_ts_injectable", "community": 10, "community_name": "DoctorsService", - "norm_label": "injectable", - "id": "backend_src_doctors_doctors_service_ts_injectable" + "norm_label": "injectable" }, { "label": "07_qa_engineer.md", @@ -14490,10 +14460,10 @@ "source_file": ".ai_agency/agents/07_qa_engineer.md", "source_location": "L1", "_origin": "ast", + "id": "ai_agency_agents_07_qa_engineer", "community": 100, "community_name": "Operational Rules & Boundaries", - "norm_label": "07_qa_engineer.md", - "id": "ai_agency_agents_07_qa_engineer" + "norm_label": "07_qa_engineer.md" }, { "label": "1. Detect Test Runner from Tech Stack", @@ -14501,10 +14471,10 @@ "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": 100, "community_name": "Operational Rules & Boundaries", - "norm_label": "1. detect test runner from tech stack", - "id": "ai_agency_agents_07_qa_engineer_1_detect_test_runner_from_tech_stack" + "norm_label": "1. detect test runner from tech stack" }, { "label": "2. Execution Output Capture (Mandatory)", @@ -14512,10 +14482,10 @@ "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": 100, "community_name": "Operational Rules & Boundaries", - "norm_label": "2. execution output capture (mandatory)", - "id": "ai_agency_agents_07_qa_engineer_2_execution_output_capture_mandatory" + "norm_label": "2. execution output capture (mandatory)" }, { "label": "3. Acceptance Criteria Verification", @@ -14523,10 +14493,10 @@ "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": 100, "community_name": "Operational Rules & Boundaries", - "norm_label": "3. acceptance criteria verification", - "id": "ai_agency_agents_07_qa_engineer_3_acceptance_criteria_verification" + "norm_label": "3. acceptance criteria verification" }, { "label": "4. Failure Routing Protocol", @@ -14534,10 +14504,10 @@ "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": 100, "community_name": "Operational Rules & Boundaries", - "norm_label": "4. failure routing protocol", - "id": "ai_agency_agents_07_qa_engineer_4_failure_routing_protocol" + "norm_label": "4. failure routing protocol" }, { "label": "5. Success Routing Protocol", @@ -14545,10 +14515,10 @@ "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": 100, "community_name": "Operational Rules & Boundaries", - "norm_label": "5. success routing protocol", - "id": "ai_agency_agents_07_qa_engineer_5_success_routing_protocol" + "norm_label": "5. success routing protocol" }, { "label": "6. Forbidden Actions", @@ -14556,10 +14526,10 @@ "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": 100, "community_name": "Operational Rules & Boundaries", - "norm_label": "6. forbidden actions", - "id": "ai_agency_agents_07_qa_engineer_6_forbidden_actions" + "norm_label": "6. forbidden actions" }, { "label": "Expected JSON Output Schema", @@ -14567,10 +14537,10 @@ "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": 100, "community_name": "Operational Rules & Boundaries", - "norm_label": "expected json output schema", - "id": "ai_agency_agents_07_qa_engineer_expected_json_output_schema" + "norm_label": "expected json output schema" }, { "label": "Operational Rules & Boundaries", @@ -14578,10 +14548,10 @@ "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": 100, "community_name": "Operational Rules & Boundaries", - "norm_label": "operational rules & boundaries", - "id": "ai_agency_agents_07_qa_engineer_operational_rules_boundaries" + "norm_label": "operational rules & boundaries" }, { "label": "Required Output Artifacts (What files to write/update)", @@ -14589,10 +14559,10 @@ "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": 100, "community_name": "Operational Rules & Boundaries", - "norm_label": "required output artifacts (what files to write/update)", - "id": "ai_agency_agents_07_qa_engineer_required_output_artifacts_what_files_to_write_update" + "norm_label": "required output artifacts (what files to write/update)" }, { "label": "Role & Core Objective", @@ -14600,10 +14570,10 @@ "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": 100, "community_name": "Operational Rules & Boundaries", - "norm_label": "role & core objective", - "id": "ai_agency_agents_07_qa_engineer_role_core_objective" + "norm_label": "role & core objective" }, { "label": "Strict Input Specifications (What files to read)", @@ -14611,1253 +14581,21 @@ "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": 100, "community_name": "Operational Rules & Boundaries", - "norm_label": "strict input specifications (what files to read)", - "id": "ai_agency_agents_07_qa_engineer_strict_input_specifications_what_files_to_read" + "norm_label": "strict input specifications (what files to read)" }, { - "label": "ApiProperty", + "label": "Post", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_admin_admin_controller_ts_post", "community": 101, - "community_name": "CreateOrderDto", - "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": 101, - "community_name": "CreateOrderDto", - "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": 101, - "community_name": "CreateOrderDto", - "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": 101, - "community_name": "CreateOrderDto", - "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": 101, - "community_name": "CreateOrderDto", - "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": 101, - "community_name": "CreateOrderDto", - "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": 101, - "community_name": "CreateOrderDto", - "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": 101, - "community_name": "CreateOrderDto", - "norm_label": "type", - "id": "backend_src_orders_dto_create_order_dto_ts_type" - }, - { - "label": "ValidateNested", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 101, - "community_name": "CreateOrderDto", - "norm_label": "validatenested", - "id": "validatenested" - }, - { - "label": "@types/passport-jwt", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L58", - "_origin": "ast", - "community": 102, - "community_name": "@types/passport-jwt", - "norm_label": "@types/passport-jwt", - "id": "backend_package_devdependencies_types_passport_jwt" - }, - { - "label": "@types/passport-jwt", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L58", - "_origin": "ast", - "community": 102, - "community_name": "@types/passport-jwt", - "norm_label": "@types/passport-jwt", - "id": "types_passport_jwt" - }, - { - "label": "@types/supertest", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L59", - "_origin": "ast", - "community": 103, - "community_name": "@types/supertest", - "norm_label": "@types/supertest", - "id": "backend_package_devdependencies_types_supertest" - }, - { - "label": "@types/supertest", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L59", - "_origin": "ast", - "community": 103, - "community_name": "@types/supertest", - "norm_label": "@types/supertest", - "id": "types_supertest" - }, - { - "label": "auth.controller.ts", - "file_type": "code", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 104, - "community_name": "auth.service.ts", - "norm_label": "auth.controller.ts", - "id": "backend_src_auth_auth_controller" - }, - { - "label": "auth.controller.spec.ts", - "file_type": "code", - "source_file": "backend/src/auth/auth.controller.spec.ts", - "source_location": "L1", - "_origin": "ast", - "community": 104, - "community_name": "auth.service.ts", - "norm_label": "auth.controller.spec.ts", - "id": "backend_src_auth_auth_controller_spec" - }, - { - "label": "auth.service.ts", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L1", - "_origin": "ast", - "community": 104, - "community_name": "auth.service.ts", - "norm_label": "auth.service.ts", - "id": "backend_src_auth_auth_service" - }, - { - "label": "admin-login.dto.ts", - "file_type": "code", - "source_file": "backend/src/auth/dto/admin-login.dto.ts", - "source_location": "L1", - "_origin": "ast", - "community": 104, - "community_name": "auth.service.ts", - "norm_label": "admin-login.dto.ts", - "id": "backend_src_auth_dto_admin_login_dto" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 104, - "community_name": "auth.service.ts", - "norm_label": "apiproperty", - "id": "backend_src_auth_dto_admin_login_dto_ts_apiproperty" - }, - { - "label": "IsEmail", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 104, - "community_name": "auth.service.ts", - "norm_label": "isemail", - "id": "backend_src_auth_dto_admin_login_dto_ts_isemail" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 104, - "community_name": "auth.service.ts", - "norm_label": "isnotempty", - "id": "backend_src_auth_dto_admin_login_dto_ts_isnotempty" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 104, - "community_name": "auth.service.ts", - "norm_label": "isstring", - "id": "backend_src_auth_dto_admin_login_dto_ts_isstring" - }, - { - "label": "MinLength", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 104, - "community_name": "auth.service.ts", - "norm_label": "minlength", - "id": "backend_src_auth_dto_admin_login_dto_ts_minlength" - }, - { - "label": "login.dto.ts", - "file_type": "code", - "source_file": "backend/src/auth/dto/login.dto.ts", - "source_location": "L1", - "_origin": "ast", - "community": 104, - "community_name": "auth.service.ts", - "norm_label": "login.dto.ts", - "id": "backend_src_auth_dto_login_dto" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 104, - "community_name": "auth.service.ts", - "norm_label": "apiproperty", - "id": "backend_src_auth_dto_login_dto_ts_apiproperty" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 104, - "community_name": "auth.service.ts", - "norm_label": "isnotempty", - "id": "backend_src_auth_dto_login_dto_ts_isnotempty" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 104, - "community_name": "auth.service.ts", - "norm_label": "isstring", - "id": "backend_src_auth_dto_login_dto_ts_isstring" - }, - { - "label": "MinLength", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 104, - "community_name": "auth.service.ts", - "norm_label": "minlength", - "id": "backend_src_auth_dto_login_dto_ts_minlength" - }, - { - "label": "register.dto.ts", - "file_type": "code", - "source_file": "backend/src/auth/dto/register.dto.ts", - "source_location": "L1", - "_origin": "ast", - "community": 104, - "community_name": "auth.service.ts", - "norm_label": "register.dto.ts", - "id": "backend_src_auth_dto_register_dto" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 104, - "community_name": "auth.service.ts", - "norm_label": "apiproperty", - "id": "backend_src_auth_dto_register_dto_ts_apiproperty" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 104, - "community_name": "auth.service.ts", - "norm_label": "apipropertyoptional", - "id": "backend_src_auth_dto_register_dto_ts_apipropertyoptional" - }, - { - "label": "IsEmail", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 104, - "community_name": "auth.service.ts", - "norm_label": "isemail", - "id": "backend_src_auth_dto_register_dto_ts_isemail" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 104, - "community_name": "auth.service.ts", - "norm_label": "isnotempty", - "id": "backend_src_auth_dto_register_dto_ts_isnotempty" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 104, - "community_name": "auth.service.ts", - "norm_label": "isoptional", - "id": "backend_src_auth_dto_register_dto_ts_isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 104, - "community_name": "auth.service.ts", - "norm_label": "isstring", - "id": "backend_src_auth_dto_register_dto_ts_isstring" - }, - { - "label": "MinLength", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 104, - "community_name": "auth.service.ts", - "norm_label": "minlength", - "id": "backend_src_auth_dto_register_dto_ts_minlength" - }, - { - "label": "send-otp.dto.ts", - "file_type": "code", - "source_file": "backend/src/auth/dto/send-otp.dto.ts", - "source_location": "L1", - "_origin": "ast", - "community": 104, - "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", - "community": 104, - "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": 104, - "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": 104, - "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": 104, - "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": 104, - "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": 104, - "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": 104, - "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": 104, - "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": 104, - "community_name": "auth.service.ts", - "norm_label": "matches", - "id": "backend_src_auth_dto_verify_otp_dto_ts_matches" - }, - { - "label": "Length", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 104, - "community_name": "auth.service.ts", - "norm_label": "length", - "id": "length" - }, - { - "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": 105, - "community_name": "1. Summary of Integrity Repairs Performed", - "norm_label": "26-phase2-integrity-repair-report.md", - "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": 105, - "community_name": "1. Summary of Integrity Repairs Performed", - "norm_label": "1.1 authoritative source file inventory rebuilt", - "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": 105, - "community_name": "1. Summary of Integrity Repairs Performed", - "norm_label": "1.2 raw finding dispositions reconciled", - "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": 105, - "community_name": "1. Summary of Integrity Repairs Performed", - "norm_label": "1.3 finding identifier normalization", - "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": 105, - "community_name": "1. Summary of Integrity Repairs Performed", - "norm_label": "1.4 rejected finding cleanup", - "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": 105, - "community_name": "1. Summary of Integrity Repairs Performed", - "norm_label": "1. summary of integrity repairs performed", - "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": 105, - "community_name": "1. Summary of Integrity Repairs Performed", - "norm_label": "2. final verified finding metrics", - "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": 105, - "community_name": "1. Summary of Integrity Repairs Performed", - "norm_label": "3. reference and compiler integrity results", - "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": 105, - "community_name": "1. Summary of Integrity Repairs Performed", - "norm_label": "4. quality gate conclusion", - "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": 105, - "community_name": "1. Summary of Integrity Repairs Performed", - "norm_label": "by confidence", - "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": 105, - "community_name": "1. Summary of Integrity Repairs Performed", - "norm_label": "by severity", - "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": 105, - "community_name": "1. Summary of Integrity Repairs Performed", - "norm_label": "phase 2.6 integrity repair & audit quality gate report", - "id": "docs_audit_26_phase2_integrity_repair_report_phase_2_6_integrity_repair_audit_quality_gate_report" - }, - { - "label": "typescript", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L73", - "_origin": "ast", - "community": 106, - "community_name": "typescript", - "norm_label": "typescript", - "id": "backend_package_devdependencies_typescript" - }, - { - "label": "typescript", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L73", - "_origin": "ast", - "community": 106, - "community_name": "typescript", - "norm_label": "typescript", - "id": "backend_package_json_typescript" - }, - { - "label": "01_auditor.md", - "file_type": "document", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L1", - "_origin": "ast", - "community": 107, - "community_name": "Operational Rules & Boundaries", - "norm_label": "01_auditor.md", - "id": "ai_agency_agents_01_auditor" - }, - { - "label": "1. Detect Tech Stack First (Universal)", - "file_type": "document", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L19", - "_origin": "ast", - "community": 107, - "community_name": "Operational Rules & Boundaries", - "norm_label": "1. detect tech stack first (universal)", - "id": "ai_agency_agents_01_auditor_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", - "community": 107, - "community_name": "Operational Rules & Boundaries", - "norm_label": "2. explicit scoring methodology (universal)", - "id": "ai_agency_agents_01_auditor_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", - "community": 107, - "community_name": "Operational Rules & Boundaries", - "norm_label": "3. code coverage ratio rule", - "id": "ai_agency_agents_01_auditor_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", - "community": 107, - "community_name": "Operational Rules & Boundaries", - "norm_label": "4. deep directory scanning", - "id": "ai_agency_agents_01_auditor_4_deep_directory_scanning" - }, - { - "label": "5. Forbidden Actions", - "file_type": "document", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L58", - "_origin": "ast", - "community": 107, - "community_name": "Operational Rules & Boundaries", - "norm_label": "5. forbidden actions", - "id": "ai_agency_agents_01_auditor_5_forbidden_actions" - }, - { - "label": "Expected JSON Output Schema", - "file_type": "document", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L74", - "_origin": "ast", - "community": 107, - "community_name": "Operational Rules & Boundaries", - "norm_label": "expected json output schema", - "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": 107, - "community_name": "Operational Rules & Boundaries", - "norm_label": "operational rules & boundaries", - "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": 107, - "community_name": "Operational Rules & Boundaries", - "norm_label": "required output artifacts (what files to write/update)", - "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", - "community": 107, - "community_name": "Operational Rules & Boundaries", - "norm_label": "role & core objective", - "id": "ai_agency_agents_01_auditor_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", - "community": 107, - "community_name": "Operational Rules & Boundaries", - "norm_label": "strict input specifications (what files to read)", - "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": 108, - "community_name": "Operational Rules & Boundaries", - "norm_label": "10_tech_writer.md", - "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": 108, - "community_name": "Operational Rules & Boundaries", - "norm_label": "1. mark active task as complete", - "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": 108, - "community_name": "Operational Rules & Boundaries", - "norm_label": "2. documentation updates", - "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": 108, - "community_name": "Operational Rules & Boundaries", - "norm_label": "3. dynamic routing protocol (critical)", - "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": 108, - "community_name": "Operational Rules & Boundaries", - "norm_label": "4. backlog insufficiency check", - "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": 108, - "community_name": "Operational Rules & Boundaries", - "norm_label": "5. forbidden actions", - "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": 108, - "community_name": "Operational Rules & Boundaries", - "norm_label": "expected json output schema", - "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": 108, - "community_name": "Operational Rules & Boundaries", - "norm_label": "operational rules & boundaries", - "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": 108, - "community_name": "Operational Rules & Boundaries", - "norm_label": "required output artifacts (what files to write/update)", - "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": 108, - "community_name": "Operational Rules & Boundaries", - "norm_label": "role & core objective", - "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": 108, - "community_name": "Operational Rules & Boundaries", - "norm_label": "strict input specifications (what files to read)", - "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": 109, - "community_name": "Operational Rules & Boundaries", - "norm_label": "11_deploy.md", - "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": 109, - "community_name": "Operational Rules & Boundaries", - "norm_label": "1. pre-deployment checklist", - "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", - "community": 109, - "community_name": "Operational Rules & Boundaries", - "norm_label": "2. build verification", - "id": "ai_agency_agents_11_deploy_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", - "community": 109, - "community_name": "Operational Rules & Boundaries", - "norm_label": "3. deployment strategy (based on target)", - "id": "ai_agency_agents_11_deploy_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", - "community": 109, - "community_name": "Operational Rules & Boundaries", - "norm_label": "4. post-deployment health check", - "id": "ai_agency_agents_11_deploy_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", - "community": 109, - "community_name": "Operational Rules & Boundaries", - "norm_label": "5. forbidden actions", - "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": 109, - "community_name": "Operational Rules & Boundaries", - "norm_label": "expected json output schema", - "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": 109, - "community_name": "Operational Rules & Boundaries", - "norm_label": "operational rules & boundaries", - "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": 109, - "community_name": "Operational Rules & Boundaries", - "norm_label": "required output artifacts (what files to write/update)", - "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", - "community": 109, - "community_name": "Operational Rules & Boundaries", - "norm_label": "role & core objective", - "id": "ai_agency_agents_11_deploy_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", - "community": 109, - "community_name": "Operational Rules & Boundaries", - "norm_label": "strict input specifications (what files to read)", - "id": "ai_agency_agents_11_deploy_strict_input_specifications_what_files_to_read" - }, - { - "label": "trust-seals/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/trust-seals/page.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 11, - "community_name": "useSettingsStore", - "norm_label": "trust-seals/page.tsx", - "id": "frontend_application_app_trust_seals_page" - }, - { - "label": "metadata", - "file_type": "code", - "source_file": "frontend/application/app/trust-seals/page.tsx", - "source_location": "L6", - "_origin": "ast", - "community": 11, - "community_name": "useSettingsStore", - "norm_label": "metadata", - "id": "frontend_application_app_trust_seals_page_metadata" - }, - { - "label": "BrandLogo.tsx", - "file_type": "code", - "source_file": "frontend/application/components/BrandLogo.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 11, - "community_name": "useSettingsStore", - "norm_label": "brandlogo.tsx", - "id": "frontend_application_components_brandlogo" - }, - { - "label": "EnamadBadge.tsx", - "file_type": "code", - "source_file": "frontend/application/components/EnamadBadge.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 11, - "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": 11, - "community_name": "useSettingsStore", - "norm_label": "footer.tsx", - "id": "frontend_application_components_footer" - }, - { - "label": "Hero.tsx", - "file_type": "code", - "source_file": "frontend/application/components/Hero.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 11, - "community_name": "useSettingsStore", - "norm_label": "hero.tsx", - "id": "frontend_application_components_hero" - }, - { - "label": "MaintenancePage.tsx", - "file_type": "code", - "source_file": "frontend/application/components/MaintenancePage.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 11, - "community_name": "useSettingsStore", - "norm_label": "maintenancepage.tsx", - "id": "frontend_application_components_maintenancepage" - }, - { - "label": "Footer.test.tsx", - "file_type": "code", - "source_file": "frontend/application/components/__tests__/Footer.test.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 11, - "community_name": "useSettingsStore", - "norm_label": "footer.test.tsx", - "id": "frontend_application_components_tests_footer_test" - }, - { - "label": "Hero.test.tsx", - "file_type": "code", - "source_file": "frontend/application/components/__tests__/Hero.test.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 11, - "community_name": "useSettingsStore", - "norm_label": "hero.test.tsx", - "id": "frontend_application_components_tests_hero_test" - }, - { - "label": "Tooltip.test.tsx", - "file_type": "code", - "source_file": "frontend/application/components/__tests__/Tooltip.test.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 11, - "community_name": "useSettingsStore", - "norm_label": "tooltip.test.tsx", - "id": "frontend_application_components_tests_tooltip_test" - }, - { - "label": "TickerBanner.tsx", - "file_type": "code", - "source_file": "frontend/application/components/TickerBanner.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 11, - "community_name": "useSettingsStore", - "norm_label": "tickerbanner.tsx", - "id": "frontend_application_components_tickerbanner" - }, - { - "label": "Tooltip.tsx", - "file_type": "code", - "source_file": "frontend/application/components/Tooltip.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 11, - "community_name": "useSettingsStore", - "norm_label": "tooltip.tsx", - "id": "frontend_application_components_tooltip" - }, - { - "label": "settingsStore.ts", - "file_type": "code", - "source_file": "frontend/application/lib/store/settingsStore.ts", - "source_location": "L1", - "_origin": "ast", - "community": 11, - "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": 11, - "community_name": "useSettingsStore", - "norm_label": "usesettingsstore", - "id": "frontend_application_lib_store_settingsstore_usesettingsstore" - }, - { - "label": "settingsStore.test.ts", - "file_type": "code", - "source_file": "frontend/application/lib/store/__tests__/settingsStore.test.ts", - "source_location": "L1", - "_origin": "ast", - "community": 11, - "community_name": "useSettingsStore", - "norm_label": "settingsstore.test.ts", - "id": "frontend_application_lib_store_tests_settingsstore_test" - }, - { - "label": "app.controller.ts", - "file_type": "code", - "source_file": "backend/src/app.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 110, - "community_name": "AppService", - "norm_label": "app.controller.ts", - "id": "backend_src_app_controller" - }, - { - "label": "app.controller.spec.ts", - "file_type": "code", - "source_file": "backend/src/app.controller.spec.ts", - "source_location": "L1", - "_origin": "ast", - "community": 110, - "community_name": "AppService", - "norm_label": "app.controller.spec.ts", - "id": "backend_src_app_controller_spec" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 110, - "community_name": "AppService", - "norm_label": "controller", - "id": "backend_src_app_controller_ts_controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 110, - "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", - "community": 110, - "community_name": "AppService", - "norm_label": "app.service.ts", - "id": "backend_src_app_service" + "community_name": "AdminService", + "norm_label": "post" }, { "label": "Injectable", @@ -15865,714 +14603,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 110, - "community_name": "AppService", - "norm_label": "injectable", - "id": "backend_src_app_service_ts_injectable" - }, - { - "label": "eslint-plugin-prettier", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L62", - "_origin": "ast", - "community": 112, - "community_name": "eslint-plugin-prettier", - "norm_label": "eslint-plugin-prettier", - "id": "backend_package_devdependencies_eslint_plugin_prettier" - }, - { - "label": "eslint-plugin-prettier", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L62", - "_origin": "ast", - "community": 112, - "community_name": "eslint-plugin-prettier", - "norm_label": "eslint-plugin-prettier", - "id": "eslint_plugin_prettier" - }, - { - "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", - "community": 113, - "community_name": "Vazirmatn Changelog", - "norm_label": "vazirmatn-v33.003/changelog.md", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog" - }, - { - "label": "32.0.0", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L85", - "_origin": "ast", - "community": 113, - "community_name": "Vazirmatn Changelog", - "norm_label": "32.0.0", - "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": 113, - "community_name": "Vazirmatn Changelog", - "norm_label": "32.1", - "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": 113, - "community_name": "Vazirmatn Changelog", - "norm_label": "32.101", - "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": 113, - "community_name": "Vazirmatn Changelog", - "norm_label": "32.102", - "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": 113, - "community_name": "Vazirmatn Changelog", - "norm_label": "33.000", - "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": 113, - "community_name": "Vazirmatn Changelog", - "norm_label": "33.001", - "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": 113, - "community_name": "Vazirmatn Changelog", - "norm_label": "33.002", - "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", - "community": 113, - "community_name": "Vazirmatn Changelog", - "norm_label": "33.003", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_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", - "community": 113, - "community_name": "Vazirmatn Changelog", - "norm_label": "old vazir changelog", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_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", - "community": 113, - "community_name": "Vazirmatn Changelog", - "norm_label": "vazirmatn changelog", - "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": 114, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "vazirmatn-v33.003/readme.md", - "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": 114, - "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))", - "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": 114, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "authors", - "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": 114, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "build", - "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": 114, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "cdn", - "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": 114, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "download", - "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", - "community": 114, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "install", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_install" - }, - { - "label": "License", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L57", - "_origin": "ast", - "community": 114, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "license", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_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", - "community": 114, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "[npm](https://www.npmjs.com/package/vazirmatn)", - "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": 114, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "thank you", - "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": 114, - "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", - "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": 115, - "community_name": "Operational Rules & Boundaries", - "norm_label": "02_ceo.md", - "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": 115, - "community_name": "Operational Rules & Boundaries", - "norm_label": "1. mode & direction decision", - "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": 115, - "community_name": "Operational Rules & Boundaries", - "norm_label": "2. brownfield strategic evaluation", - "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": 115, - "community_name": "Operational Rules & Boundaries", - "norm_label": "3. risk assessment", - "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": 115, - "community_name": "Operational Rules & Boundaries", - "norm_label": "4. forbidden actions", - "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": 115, - "community_name": "Operational Rules & Boundaries", - "norm_label": "expected json output schema", - "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", - "community": 115, - "community_name": "Operational Rules & Boundaries", - "norm_label": "operational rules & boundaries", - "id": "ai_agency_agents_02_ceo_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", - "community": 115, - "community_name": "Operational Rules & Boundaries", - "norm_label": "required output artifacts (what files to write/update)", - "id": "ai_agency_agents_02_ceo_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", - "community": 115, - "community_name": "Operational Rules & Boundaries", - "norm_label": "role & core objective", - "id": "ai_agency_agents_02_ceo_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", - "community": 115, - "community_name": "Operational Rules & Boundaries", - "norm_label": "strict input specifications (what files to read)", - "id": "ai_agency_agents_02_ceo_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", - "community": 116, - "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": 116, - "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": 116, - "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": 116, - "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": 116, - "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": 116, - "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": 116, - "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": 116, - "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": 116, - "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": 116, - "community_name": "compilerOptions", - "norm_label": "./**/*.ts", - "id": "backend_prisma_tsconfig_json_ref_ts" - }, - { - "label": "tsconfig.seed.json", - "file_type": "code", - "source_file": "backend/prisma/tsconfig.seed.json", - "source_location": "L1", - "_origin": "ast", - "community": 117, - "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": 117, - "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": 117, - "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": 117, - "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": 117, - "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": 117, - "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": 117, - "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": 117, - "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": 117, - "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": 117, - "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": 118, - "community_name": "backend/README.md", - "norm_label": "backend/readme.md", - "id": "backend_readme" - }, - { - "label": "Compile and run the project", - "file_type": "document", - "source_file": "backend/README.md", - "source_location": "L34", - "_origin": "ast", - "community": 118, - "community_name": "backend/README.md", - "norm_label": "compile and run the project", - "id": "backend_readme_compile_and_run_the_project" - }, - { - "label": "Deployment", - "file_type": "document", - "source_file": "backend/README.md", - "source_location": "L60", - "_origin": "ast", - "community": 118, - "community_name": "backend/README.md", - "norm_label": "deployment", - "id": "backend_readme_deployment" - }, - { - "label": "Description", - "file_type": "document", - "source_file": "backend/README.md", - "source_location": "L24", - "_origin": "ast", - "community": 118, - "community_name": "backend/README.md", - "norm_label": "description", - "id": "backend_readme_description" - }, - { - "label": "License", - "file_type": "document", - "source_file": "backend/README.md", - "source_location": "L96", - "_origin": "ast", - "community": 118, - "community_name": "backend/README.md", - "norm_label": "license", - "id": "backend_readme_license" - }, - { - "label": "Project setup", - "file_type": "document", - "source_file": "backend/README.md", - "source_location": "L28", - "_origin": "ast", - "community": 118, - "community_name": "backend/README.md", - "norm_label": "project setup", - "id": "backend_readme_project_setup" - }, - { - "label": "Resources", - "file_type": "document", - "source_file": "backend/README.md", - "source_location": "L73", - "_origin": "ast", - "community": 118, - "community_name": "backend/README.md", - "norm_label": "resources", - "id": "backend_readme_resources" - }, - { - "label": "Run tests", - "file_type": "document", - "source_file": "backend/README.md", - "source_location": "L47", - "_origin": "ast", - "community": 118, - "community_name": "backend/README.md", - "norm_label": "run tests", - "id": "backend_readme_run_tests" - }, - { - "label": "Stay in touch", - "file_type": "document", - "source_file": "backend/README.md", - "source_location": "L90", - "_origin": "ast", - "community": 118, - "community_name": "backend/README.md", - "norm_label": "stay in touch", - "id": "backend_readme_stay_in_touch" - }, - { - "label": "Support", - "file_type": "document", - "source_file": "backend/README.md", - "source_location": "L86", - "_origin": "ast", - "community": 118, - "community_name": "backend/README.md", - "norm_label": "support", - "id": "backend_readme_support" + "id": "backend_src_admin_admin_service_ts_injectable", + "community": 101, + "community_name": "AdminService", + "norm_label": "injectable" }, { "label": "devDependencies", @@ -16580,2067 +14614,98 @@ "source_file": "backend/package.json", "source_location": "L45", "_origin": "ast", - "community": 119, + "id": "backend_package_devdependencies", + "community": 102, "community_name": "devDependencies", - "norm_label": "devdependencies", - "id": "backend_package_devdependencies" + "norm_label": "devdependencies" }, { - "label": "eslint", + "label": "eslint-plugin-prettier", "file_type": "code", "source_file": "backend/package.json", - "source_location": "L60", + "source_location": "L62", "_origin": "ast", - "community": 119, + "id": "backend_package_devdependencies_eslint_plugin_prettier", + "community": 102, "community_name": "devDependencies", - "norm_label": "eslint", - "id": "backend_package_devdependencies_eslint" + "norm_label": "eslint-plugin-prettier" }, { - "label": "eslint-config-prettier", + "label": "@types/passport-jwt", "file_type": "code", "source_file": "backend/package.json", - "source_location": "L61", - "_origin": "ast", - "community": 119, - "community_name": "devDependencies", - "norm_label": "eslint-config-prettier", - "id": "backend_package_devdependencies_eslint_config_prettier" - }, - { - "label": "@eslint/js", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L47", - "_origin": "ast", - "community": 119, - "community_name": "devDependencies", - "norm_label": "@eslint/js", - "id": "backend_package_devdependencies_eslint_js" - }, - { - "label": "jest", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L64", - "_origin": "ast", - "community": 119, - "community_name": "devDependencies", - "norm_label": "jest", - "id": "backend_package_devdependencies_jest" - }, - { - "label": "@nestjs/schematics", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L49", - "_origin": "ast", - "community": 119, - "community_name": "devDependencies", - "norm_label": "@nestjs/schematics", - "id": "backend_package_devdependencies_nestjs_schematics" - }, - { - "label": "@nestjs/testing", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L50", - "_origin": "ast", - "community": 119, - "community_name": "devDependencies", - "norm_label": "@nestjs/testing", - "id": "backend_package_devdependencies_nestjs_testing" - }, - { - "label": "source-map-support", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L67", - "_origin": "ast", - "community": 119, - "community_name": "devDependencies", - "norm_label": "source-map-support", - "id": "backend_package_devdependencies_source_map_support" - }, - { - "label": "ts-jest", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L69", - "_origin": "ast", - "community": 119, - "community_name": "devDependencies", - "norm_label": "ts-jest", - "id": "backend_package_devdependencies_ts_jest" - }, - { - "label": "tsconfig-paths", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L72", - "_origin": "ast", - "community": 119, - "community_name": "devDependencies", - "norm_label": "tsconfig-paths", - "id": "backend_package_devdependencies_tsconfig_paths" - }, - { - "label": "@types/bcryptjs", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L52", - "_origin": "ast", - "community": 119, - "community_name": "devDependencies", - "norm_label": "@types/bcryptjs", - "id": "backend_package_devdependencies_types_bcryptjs" - }, - { - "label": "typescript-eslint", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L74", - "_origin": "ast", - "community": 119, - "community_name": "devDependencies", - "norm_label": "typescript-eslint", - "id": "backend_package_devdependencies_typescript_eslint" - }, - { - "label": "eslint", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L60", - "_origin": "ast", - "community": 119, - "community_name": "devDependencies", - "norm_label": "eslint", - "id": "backend_package_json_eslint" - }, - { - "label": "@eslint/js", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L47", - "_origin": "ast", - "community": 119, - "community_name": "devDependencies", - "norm_label": "@eslint/js", - "id": "backend_package_json_eslint_js" - }, - { - "label": "typescript-eslint", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L74", - "_origin": "ast", - "community": 119, - "community_name": "devDependencies", - "norm_label": "typescript-eslint", - "id": "backend_package_json_typescript_eslint" - }, - { - "label": "eslint-config-prettier", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L61", - "_origin": "ast", - "community": 119, - "community_name": "devDependencies", - "norm_label": "eslint-config-prettier", - "id": "eslint_config_prettier" - }, - { - "label": "jest", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L64", - "_origin": "ast", - "community": 119, - "community_name": "devDependencies", - "norm_label": "jest", - "id": "jest" - }, - { - "label": "@nestjs/schematics", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L49", - "_origin": "ast", - "community": 119, - "community_name": "devDependencies", - "norm_label": "@nestjs/schematics", - "id": "nestjs_schematics" - }, - { - "label": "@nestjs/testing", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L50", - "_origin": "ast", - "community": 119, - "community_name": "devDependencies", - "norm_label": "@nestjs/testing", - "id": "nestjs_testing" - }, - { - "label": "source-map-support", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L67", - "_origin": "ast", - "community": 119, - "community_name": "devDependencies", - "norm_label": "source-map-support", - "id": "source_map_support" - }, - { - "label": "ts-jest", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L69", - "_origin": "ast", - "community": 119, - "community_name": "devDependencies", - "norm_label": "ts-jest", - "id": "ts_jest" - }, - { - "label": "tsconfig-paths", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L72", - "_origin": "ast", - "community": 119, - "community_name": "devDependencies", - "norm_label": "tsconfig-paths", - "id": "tsconfig_paths" - }, - { - "label": "@types/bcryptjs", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L52", - "_origin": "ast", - "community": 119, - "community_name": "devDependencies", - "norm_label": "@types/bcryptjs", - "id": "types_bcryptjs" - }, - { - "label": "App.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/App.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 12, - "community_name": "adminRoutes.tsx", - "norm_label": "app.tsx", - "id": "frontend_admin_panel_src_app" - }, - { - "label": "main.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/main.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 12, - "community_name": "adminRoutes.tsx", - "norm_label": "main.tsx", - "id": "frontend_admin_panel_src_main" - }, - { - "label": "ContactSubmissions.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 12, - "community_name": "adminRoutes.tsx", - "norm_label": "contactsubmissions.tsx", - "id": "frontend_admin_panel_src_pages_contactsubmissions" - }, - { - "label": "Dashboard.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Dashboard.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 12, - "community_name": "adminRoutes.tsx", - "norm_label": "dashboard.tsx", - "id": "frontend_admin_panel_src_pages_dashboard" - }, - { - "label": "Tickets.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 12, - "community_name": "adminRoutes.tsx", - "norm_label": "tickets.tsx", - "id": "frontend_admin_panel_src_pages_tickets" - }, - { - "label": "WholesaleApplications.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 12, - "community_name": "adminRoutes.tsx", - "norm_label": "wholesaleapplications.tsx", - "id": "frontend_admin_panel_src_pages_wholesaleapplications" - }, - { - "label": "adminRoutes.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 12, - "community_name": "adminRoutes.tsx", - "norm_label": "adminroutes.tsx", - "id": "frontend_admin_panel_src_routes_adminroutes" - }, - { - "label": "ContactSubmissions", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L26", - "_origin": "ast", - "community": 12, - "community_name": "adminRoutes.tsx", - "norm_label": "contactsubmissions", - "id": "frontend_admin_panel_src_routes_adminroutes_contactsubmissions" - }, - { - "label": "Dashboard", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L10", - "_origin": "ast", - "community": 12, - "community_name": "adminRoutes.tsx", - "norm_label": "dashboard", - "id": "frontend_admin_panel_src_routes_adminroutes_dashboard" - }, - { - "label": "router", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L49", - "_origin": "ast", - "community": 12, - "community_name": "adminRoutes.tsx", - "norm_label": "router", - "id": "frontend_admin_panel_src_routes_adminroutes_router" - }, - { - "label": "Tickets", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L39", - "_origin": "ast", - "community": 12, - "community_name": "adminRoutes.tsx", - "norm_label": "tickets", - "id": "frontend_admin_panel_src_routes_adminroutes_tickets" - }, - { - "label": "WholesaleApplications", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L24", - "_origin": "ast", - "community": 12, - "community_name": "adminRoutes.tsx", - "norm_label": "wholesaleapplications", - "id": "frontend_admin_panel_src_routes_adminroutes_wholesaleapplications" - }, - { - "label": "00-repository-map.md", - "file_type": "document", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L1", - "_origin": "ast", - "community": 120, - "community_name": "Repository Map", - "norm_label": "00-repository-map.md", - "id": "docs_audit_00_repository_map" - }, - { - "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": 120, - "community_name": "Repository Map", - "norm_label": "1. active customer storefront: react 19 + vite application", - "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": 120, - "community_name": "Repository Map", - "norm_label": "2. active backend service: nestjs application", - "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": 120, - "community_name": "Repository Map", - "norm_label": "3. excluded placeholder / non-auditable directories", - "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": 120, - "community_name": "Repository Map", - "norm_label": "active applications & non-auditable scopes", - "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": 120, - "community_name": "Repository Map", - "norm_label": "documentation governance", - "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": 120, - "community_name": "Repository Map", - "norm_label": "important configuration & infrastructure files", - "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": 120, - "community_name": "Repository Map", - "norm_label": "mandatory global audit exclusions", - "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": 120, - "community_name": "Repository Map", - "norm_label": "repository map", - "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": 120, - "community_name": "Repository Map", - "norm_label": "repository structure & overview", - "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": 121, - "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": 121, - "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": 121, - "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": 121, - "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": 121, - "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": 121, - "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": 121, - "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": 121, - "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": 121, - "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": 121, - "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": 122, - "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": 122, - "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": 122, - "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": 122, - "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": 122, - "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": 122, - "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": 122, - "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": 122, - "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": 122, - "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": 122, - "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": 123, - "community_name": "Sahel-Font", - "norm_label": "admin-panel/public/fonts/sahel-font-v3.4.0/readme.md", - "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": 123, - "community_name": "Sahel-Font", - "norm_label": "arch linux", - "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": 123, - "community_name": "Sahel-Font", - "norm_label": "contributors", - "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": 123, - "community_name": "Sahel-Font", - "norm_label": "install", - "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": 123, - "community_name": "Sahel-Font", - "norm_label": "known problems for variable version", - "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": 123, - "community_name": "Sahel-Font", - "norm_label": "license", - "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": 123, - "community_name": "Sahel-Font", - "norm_label": "sahel-font", - "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": 123, - "community_name": "Sahel-Font", - "norm_label": "to do (variable)", - "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": 123, - "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", - "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": 123, - "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", - "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": "Reports.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 124, - "community_name": "Reports.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": "L10", - "_origin": "ast", - "community": 124, - "community_name": "Reports.tsx", - "norm_label": "colors", - "id": "frontend_admin_panel_src_pages_reports_colors" - }, - { - "label": "Reports", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L16", - "_origin": "ast", - "community": 124, - "community_name": "Reports.tsx", - "norm_label": "reports", - "id": "frontend_admin_panel_src_routes_adminroutes_reports" - }, - { - "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": 125, - "community_name": "Sahel-Font", - "norm_label": "application/public/fonts/sahel-font-v3.4.0/readme.md", - "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": 125, - "community_name": "Sahel-Font", - "norm_label": "arch linux", - "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": 125, - "community_name": "Sahel-Font", - "norm_label": "contributors", - "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": 125, - "community_name": "Sahel-Font", - "norm_label": "install", - "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": 125, - "community_name": "Sahel-Font", - "norm_label": "known problems for variable version", - "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": 125, - "community_name": "Sahel-Font", - "norm_label": "license", - "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": 125, - "community_name": "Sahel-Font", - "norm_label": "sahel-font", - "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": 125, - "community_name": "Sahel-Font", - "norm_label": "to do (variable)", - "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": 125, - "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", - "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": 125, - "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", - "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": 126, - "community_name": "Role & Core Objective", - "norm_label": "00_intake.md", - "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": 126, - "community_name": "Role & Core Objective", - "norm_label": "1. ask \u2014 don't assume", - "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": 126, - "community_name": "Role & Core Objective", - "norm_label": "2. forbidden actions", - "id": "ai_agency_agents_00_intake_2_forbidden_actions" + "id": "backend_package_devdependencies_types_passport_jwt", + "community": 102, + "community_name": "devDependencies", + "norm_label": "@types/passport-jwt" }, { - "label": "Brownfield Detection", - "file_type": "document", - "source_file": ".ai_agency/agents/00_intake.md", - "source_location": "L17", - "_origin": "ast", - "community": 126, - "community_name": "Role & Core Objective", - "norm_label": "brownfield detection", - "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": 126, - "community_name": "Role & Core Objective", - "norm_label": "expected json output schema", - "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": 126, - "community_name": "Role & Core Objective", - "norm_label": "operational rules & boundaries", - "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": 126, - "community_name": "Role & Core Objective", - "norm_label": "required output artifacts (what files to write/update)", - "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": 126, - "community_name": "Role & Core Objective", - "norm_label": "role & core objective", - "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": 126, - "community_name": "Role & Core Objective", - "norm_label": "strict input specifications (what files to read)", - "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": 127, - "community_name": "orchestrate.py", - "norm_label": "orchestrate.py", - "id": "ai_agency_orchestrate" - }, - { - "label": "backend/package.json", + "label": "@types/supertest", "file_type": "code", "source_file": "backend/package.json", - "source_location": "L1", - "_origin": "ast", - "community": 128, - "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": 128, - "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": 128, - "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": 128, - "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": 128, - "community_name": "backend/package.json", - "norm_label": "name", - "id": "backend_package_name" - }, - { - "label": "prisma", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L93", - "_origin": "ast", - "community": 128, - "community_name": "backend/package.json", - "norm_label": "prisma", - "id": "backend_package_prisma" - }, - { - "label": "seed", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L94", - "_origin": "ast", - "community": 128, - "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": 128, - "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": 128, - "community_name": "backend/package.json", - "norm_label": "version", - "id": "backend_package_version" - }, - { - "label": "eslint-config-next", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L30", - "_origin": "ast", - "community": 129, - "community_name": "eslint-config-next", - "norm_label": "eslint-config-next", - "id": "frontend_application_package_devdependencies_eslint_config_next" - }, - { - "label": "eslint-config-next", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L30", - "_origin": "ast", - "community": 129, - "community_name": "eslint-config-next", - "norm_label": "eslint-config-next", - "id": "eslint_config_next" - }, - { - "label": "admin/blogs.service.ts", - "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L1", - "_origin": "ast", - "community": 13, - "community_name": "PrismaService", - "norm_label": "admin/blogs.service.ts", - "id": "backend_src_admin_blogs_service" - }, - { - "label": "media.service.ts", - "file_type": "code", - "source_file": "backend/src/admin/media.service.ts", - "source_location": "L1", - "_origin": "ast", - "community": 13, - "community_name": "PrismaService", - "norm_label": "media.service.ts", - "id": "backend_src_admin_media_service" - }, - { - "label": "admin/wiki.service.ts", - "file_type": "code", - "source_file": "backend/src/admin/wiki.service.ts", - "source_location": "L1", - "_origin": "ast", - "community": 13, - "community_name": "PrismaService", - "norm_label": "admin/wiki.service.ts", - "id": "backend_src_admin_wiki_service" - }, - { - "label": "auth.service.spec.ts", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.spec.ts", - "source_location": "L1", - "_origin": "ast", - "community": 13, - "community_name": "PrismaService", - "norm_label": "auth.service.spec.ts", - "id": "backend_src_auth_auth_service_spec" - }, - { - "label": "banners.service.ts", - "file_type": "code", - "source_file": "backend/src/banners/banners.service.ts", - "source_location": "L1", - "_origin": "ast", - "community": 13, - "community_name": "PrismaService", - "norm_label": "banners.service.ts", - "id": "backend_src_banners_banners_service" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 13, - "community_name": "PrismaService", - "norm_label": "injectable", - "id": "backend_src_banners_banners_service_ts_injectable" - }, - { - "label": "metrics.controller.ts", - "file_type": "code", - "source_file": "backend/src/common/metrics.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 13, - "community_name": "PrismaService", - "norm_label": "metrics.controller.ts", - "id": "backend_src_common_metrics_controller" - }, - { - "label": "sms.service.ts", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L1", - "_origin": "ast", - "community": 13, - "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": 13, - "community_name": "PrismaService", - "norm_label": "contact.service.ts", - "id": "backend_src_contact_contact_service" - }, - { - "label": "ingredients.service.ts", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.service.ts", - "source_location": "L1", - "_origin": "ast", - "community": 13, - "community_name": "PrismaService", - "norm_label": "ingredients.service.ts", - "id": "backend_src_ingredients_ingredients_service" - }, - { - "label": "orders.service.spec.ts", - "file_type": "code", - "source_file": "backend/src/orders/orders.service.spec.ts", - "source_location": "L1", - "_origin": "ast", - "community": 13, - "community_name": "PrismaService", - "norm_label": "orders.service.spec.ts", - "id": "backend_src_orders_orders_service_spec" - }, - { - "label": "pets.service.spec.ts", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.spec.ts", - "source_location": "L1", - "_origin": "ast", - "community": 13, - "community_name": "PrismaService", - "norm_label": "pets.service.spec.ts", - "id": "backend_src_pets_pets_service_spec" - }, - { - "label": "prisma.service.ts", - "file_type": "code", - "source_file": "backend/src/prisma/prisma.service.ts", - "source_location": "L1", - "_origin": "ast", - "community": 13, - "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": 13, - "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": 13, - "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": 13, - "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": 13, - "community_name": "PrismaService", - "norm_label": "settings.service.ts", - "id": "backend_src_settings_settings_service" - }, - { - "label": "settings.service.spec.ts", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.spec.ts", - "source_location": "L1", - "_origin": "ast", - "community": 13, - "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": 13, - "community_name": "PrismaService", - "norm_label": "smart-advisor.service.ts", - "id": "backend_src_smart_advisor_smart_advisor_service" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 13, - "community_name": "PrismaService", - "norm_label": "injectable", - "id": "backend_src_smart_advisor_smart_advisor_service_ts_injectable" - }, - { - "label": "testimonials.service.ts", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.service.ts", - "source_location": "L1", - "_origin": "ast", - "community": 13, - "community_name": "PrismaService", - "norm_label": "testimonials.service.ts", - "id": "backend_src_testimonials_testimonials_service" - }, - { - "label": "users.service.spec.ts", - "file_type": "code", - "source_file": "backend/src/users/users.service.spec.ts", - "source_location": "L1", - "_origin": "ast", - "community": 13, - "community_name": "PrismaService", - "norm_label": "users.service.spec.ts", - "id": "backend_src_users_users_service_spec" - }, - { - "label": "videos.service.ts", - "file_type": "code", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L1", - "_origin": "ast", - "community": 13, - "community_name": "PrismaService", - "norm_label": "videos.service.ts", - "id": "backend_src_videos_videos_service" - }, - { - "label": "wholesale-apply.dto.ts", - "file_type": "code", - "source_file": "backend/src/wholesale/dto/wholesale-apply.dto.ts", - "source_location": "L1", - "_origin": "ast", - "community": 13, - "community_name": "PrismaService", - "norm_label": "wholesale-apply.dto.ts", - "id": "backend_src_wholesale_dto_wholesale_apply_dto" - }, - { - "label": "wholesale.service.ts", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L1", - "_origin": "ast", - "community": 13, - "community_name": "PrismaService", - "norm_label": "wholesale.service.ts", - "id": "backend_src_wholesale_wholesale_service" - }, - { - "label": "exports.md", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/exports.md", - "source_location": "L1", - "_origin": "ast", - "community": 130, - "community_name": "graphify reference: extra exports and benchmark", - "norm_label": "exports.md", - "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": 130, - "community_name": "graphify reference: extra exports and benchmark", - "norm_label": "graphify reference: extra exports and benchmark", - "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": 130, - "community_name": "graphify reference: extra exports and benchmark", - "norm_label": "step 6b - wiki (only if --wiki flag)", - "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": 130, - "community_name": "graphify reference: extra exports and benchmark", - "norm_label": "step 7 - neo4j export (only if --neo4j or --neo4j-push flag)", - "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": 130, - "community_name": "graphify reference: extra exports and benchmark", - "norm_label": "step 7a - falkordb export (only if --falkordb or --falkordb-push flag)", - "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": 130, - "community_name": "graphify reference: extra exports and benchmark", - "norm_label": "step 7b - svg export (only if --svg flag)", - "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": 130, - "community_name": "graphify reference: extra exports and benchmark", - "norm_label": "step 7c - graphml export (only if --graphml flag)", - "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": 130, - "community_name": "graphify reference: extra exports and benchmark", - "norm_label": "step 7d - mcp server (only if --mcp flag)", - "id": "claude_skills_graphify_references_exports_step_7d_mcp_server_only_if_mcp_flag" + "id": "backend_package_devdependencies_types_supertest", + "community": 102, + "community_name": "devDependencies", + "norm_label": "@types/supertest" }, { - "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": 130, - "community_name": "graphify reference: extra exports and benchmark", - "norm_label": "step 8 - token reduction benchmark (only if total_words > 5000)", - "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": 131, - "community_name": "Phase 2 Final Quality Gate Summary Report", - "norm_label": "21-phase2-quality-gate-summary.md", - "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": 131, - "community_name": "Phase 2 Final Quality Gate Summary Report", - "norm_label": "1. executive summary", - "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": 131, - "community_name": "Phase 2 Final Quality Gate Summary Report", - "norm_label": "2. final verified finding breakdown", - "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": 131, - "community_name": "Phase 2 Final Quality Gate Summary Report", - "norm_label": "3. source coverage & diagnostic metrics", - "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": 131, - "community_name": "Phase 2 Final Quality Gate Summary Report", - "norm_label": "4. integrity check & quality gate status", - "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": 131, - "community_name": "Phase 2 Final Quality Gate Summary Report", - "norm_label": "5. exact next recommended phase", - "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": 131, - "community_name": "Phase 2 Final Quality Gate Summary Report", - "norm_label": "by confidence", - "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": 131, - "community_name": "Phase 2 Final Quality Gate Summary Report", - "norm_label": "by severity", - "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": 131, - "community_name": "Phase 2 Final Quality Gate Summary Report", - "norm_label": "phase 2 final quality gate summary report", - "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": 132, - "community_name": "Task Modifications Log", - "norm_label": "phase3.1-change-log.md", - "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": 132, - "community_name": "Task Modifications Log", - "norm_label": "1. `task-auth-001`", - "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": 132, - "community_name": "Task Modifications Log", - "norm_label": "2. `task-fin-001`", - "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": 132, - "community_name": "Task Modifications Log", - "norm_label": "3. `decision-002`", - "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": 132, - "community_name": "Task Modifications Log", - "norm_label": "4. `task-verify-001`", - "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": 132, - "community_name": "Task Modifications Log", - "norm_label": "5. `task-sec-001` & `task-sec-002`", - "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": 132, - "community_name": "Task Modifications Log", - "norm_label": "6. `task-build-001` & execution waves", - "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": 132, - "community_name": "Task Modifications Log", - "norm_label": "phase 3.1 \u2014 master task backlog change log", - "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": 132, - "community_name": "Task Modifications Log", - "norm_label": "task modifications log", - "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": 133, - "community_name": "Install", - "norm_label": "shabnam-font-v5.0.1/readme.md", - "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": 133, - "community_name": "Install", - "norm_label": "arch linux", - "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": 133, - "community_name": "Install", - "norm_label": "bower", - "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": 133, - "community_name": "Install", - "norm_label": "install", - "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": 133, - "community_name": "Install", - "norm_label": "npm", - "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": 133, - "community_name": "Install", - "norm_label": "shabnam font", - "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": 133, - "community_name": "Install", - "norm_label": "yarn", - "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": 133, - "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:", - "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": 133, - "community_name": "Install", - "norm_label": "\u0646\u0645\u0648\u0646\u0647 \u0645\u062a\u0646 sample:", - "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_\u0646\u0645\u0648\u0646\u0647_\u0645\u062a\u0646_sample" - }, - { - "label": "ErrorBoundary.tsx", + "label": "typescript", "file_type": "code", - "source_file": "frontend/application/components/ErrorBoundary.tsx", - "source_location": "L1", + "source_file": "backend/package.json", + "source_location": "L73", "_origin": "ast", - "community": 134, - "community_name": "ErrorBoundary", - "norm_label": "errorboundary.tsx", - "id": "frontend_application_components_errorboundary" + "id": "backend_package_devdependencies_typescript", + "community": 102, + "community_name": "devDependencies", + "norm_label": "typescript" }, { - "label": "application/package.json", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L1", + "label": "typescript", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L73", "_origin": "ast", - "community": 135, - "community_name": "application/package.json", - "norm_label": "application/package.json", - "id": "frontend_application_package" + "id": "backend_package_json_typescript", + "community": 102, + "community_name": "devDependencies", + "norm_label": "typescript" }, { - "label": "name", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L2", + "label": "eslint-plugin-prettier", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L62", "_origin": "ast", - "community": 135, - "community_name": "application/package.json", - "norm_label": "name", - "id": "frontend_application_package_name" + "id": "eslint_plugin_prettier", + "community": 102, + "community_name": "devDependencies", + "norm_label": "eslint-plugin-prettier" }, { - "label": "private", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L4", + "label": "@types/passport-jwt", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L58", "_origin": "ast", - "community": 135, - "community_name": "application/package.json", - "norm_label": "private", - "id": "frontend_application_package_private" + "id": "types_passport_jwt", + "community": 102, + "community_name": "devDependencies", + "norm_label": "@types/passport-jwt" }, { - "label": "scripts", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L5", + "label": "@types/supertest", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L59", "_origin": "ast", - "community": 135, - "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": 135, - "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": 135, - "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": 135, - "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": 135, - "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": 135, - "community_name": "application/package.json", - "norm_label": "version", - "id": "frontend_application_package_version" - }, - { - "label": "app_module_1", - "file_type": "code", - "source_file": "backend/scripts/generate-openapi.js", - "source_location": "L37", - "_origin": "ast", - "community": 136, - "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": 136, - "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": 136, - "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": 136, - "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": 136, - "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": 136, - "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": 136, - "community_name": "generate-openapi.js", - "norm_label": "yaml", - "id": "backend_scripts_generate_openapi_yaml" - }, - { - "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": 137, - "community_name": "payment.module.ts", - "norm_label": "admin-transaction-filter.dto.ts", - "id": "backend_src_payment_dto_admin_transaction_filter_dto" + "id": "types_supertest", + "community": 102, + "community_name": "devDependencies", + "norm_label": "@types/supertest" }, { "label": "ApiPropertyOptional", @@ -18648,21 +14713,32 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 137, - "community_name": "payment.module.ts", - "norm_label": "apipropertyoptional", - "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_apipropertyoptional" + "id": "backend_src_admin_dto_product_dto_ts_apipropertyoptional", + "community": 103, + "community_name": "ProductDto", + "norm_label": "apipropertyoptional" }, { - "label": "IsIn", + "label": "IsArray", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "community": 137, - "community_name": "payment.module.ts", - "norm_label": "isin", - "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isin" + "id": "backend_src_admin_dto_product_dto_ts_isarray", + "community": 103, + "community_name": "ProductDto", + "norm_label": "isarray" + }, + { + "label": "IsBoolean", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_dto_product_dto_ts_isboolean", + "community": 103, + "community_name": "ProductDto", + "norm_label": "isboolean" }, { "label": "IsNumber", @@ -18670,10 +14746,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 137, - "community_name": "payment.module.ts", - "norm_label": "isnumber", - "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isnumber" + "id": "backend_src_admin_dto_product_dto_ts_isnumber", + "community": 103, + "community_name": "ProductDto", + "norm_label": "isnumber" }, { "label": "IsOptional", @@ -18681,10 +14757,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 137, - "community_name": "payment.module.ts", - "norm_label": "isoptional", - "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isoptional" + "id": "backend_src_admin_dto_product_dto_ts_isoptional", + "community": 103, + "community_name": "ProductDto", + "norm_label": "isoptional" }, { "label": "IsString", @@ -18692,65 +14768,153 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 137, - "community_name": "payment.module.ts", - "norm_label": "isstring", - "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isstring" + "id": "backend_src_admin_dto_product_dto_ts_isstring", + "community": 103, + "community_name": "ProductDto", + "norm_label": "isstring" }, { - "label": "Type", + "label": "auth.controller.ts", + "file_type": "code", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_auth_auth_controller", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": "auth.controller.ts" + }, + { + "label": "auth.controller.spec.ts", + "file_type": "code", + "source_file": "backend/src/auth/auth.controller.spec.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_auth_auth_controller_spec", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": "auth.controller.spec.ts" + }, + { + "label": "ApiBadRequestResponse", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "community": 137, - "community_name": "payment.module.ts", - "norm_label": "type", - "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_type" + "id": "backend_src_auth_auth_controller_ts_apibadrequestresponse", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": "apibadrequestresponse" }, { - "label": "payment.module.ts", - "file_type": "code", - "source_file": "backend/src/payment/payment.module.ts", - "source_location": "L1", - "_origin": "ast", - "community": 137, - "community_name": "payment.module.ts", - "norm_label": "payment.module.ts", - "id": "backend_src_payment_payment_module" - }, - { - "label": "Module", + "label": "ApiBearerAuth", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "community": 137, - "community_name": "payment.module.ts", - "norm_label": "module", - "id": "backend_src_payment_payment_module_ts_module" + "id": "backend_src_auth_auth_controller_ts_apibearerauth", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": "apibearerauth" }, { - "label": "payment.service.ts", + "label": "ApiOkResponse", "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L1", + "source_file": "", + "source_location": "", "_origin": "ast", - "community": 137, - "community_name": "payment.module.ts", - "norm_label": "payment.service.ts", - "id": "backend_src_payment_payment_service" + "id": "backend_src_auth_auth_controller_ts_apiokresponse", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": "apiokresponse" }, { - "label": "initiate-payment.dto.ts", + "label": "ApiOperation", "file_type": "code", - "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_auth_auth_controller_ts_apioperation", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": "apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_auth_auth_controller_ts_apitags", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": "apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_auth_auth_controller_ts_body", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": "body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_auth_auth_controller_ts_controller", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": "controller" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_auth_auth_controller_ts_post", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": "post" + }, + { + "label": "Req", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_auth_auth_controller_ts_req", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": "req" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_auth_auth_controller_ts_useguards", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": "useguards" + }, + { + "label": "admin-login.dto.ts", + "file_type": "code", + "source_file": "backend/src/auth/dto/admin-login.dto.ts", "source_location": "L1", "_origin": "ast", - "community": 138, - "community_name": "payment.controller.ts", - "norm_label": "initiate-payment.dto.ts", - "id": "backend_src_payment_dto_initiate_payment_dto" + "id": "backend_src_auth_dto_admin_login_dto", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": "admin-login.dto.ts" }, { "label": "ApiProperty", @@ -18758,21 +14922,21 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 138, - "community_name": "payment.controller.ts", - "norm_label": "apiproperty", - "id": "backend_src_payment_dto_initiate_payment_dto_ts_apiproperty" + "id": "backend_src_auth_dto_admin_login_dto_ts_apiproperty", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": "apiproperty" }, { - "label": "ApiPropertyOptional", + "label": "IsEmail", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "community": 138, - "community_name": "payment.controller.ts", - "norm_label": "apipropertyoptional", - "id": "backend_src_payment_dto_initiate_payment_dto_ts_apipropertyoptional" + "id": "backend_src_auth_dto_admin_login_dto_ts_isemail", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": "isemail" }, { "label": "IsNotEmpty", @@ -18780,21 +14944,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 138, - "community_name": "payment.controller.ts", - "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": 138, - "community_name": "payment.controller.ts", - "norm_label": "isoptional", - "id": "backend_src_payment_dto_initiate_payment_dto_ts_isoptional" + "id": "backend_src_auth_dto_admin_login_dto_ts_isnotempty", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": "isnotempty" }, { "label": "IsString", @@ -18802,21 +14955,98 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 138, - "community_name": "payment.controller.ts", - "norm_label": "isstring", - "id": "backend_src_payment_dto_initiate_payment_dto_ts_isstring" + "id": "backend_src_auth_dto_admin_login_dto_ts_isstring", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": "isstring" }, { - "label": "verify-payment.dto.ts", + "label": "MinLength", "file_type": "code", - "source_file": "backend/src/payment/dto/verify-payment.dto.ts", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_auth_dto_admin_login_dto_ts_minlength", + "community": 104, + "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", - "community": 138, - "community_name": "payment.controller.ts", - "norm_label": "verify-payment.dto.ts", - "id": "backend_src_payment_dto_verify_payment_dto" + "id": "backend_src_auth_dto_login_dto", + "community": 104, + "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": 104, + "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": 104, + "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": 104, + "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": 104, + "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": 104, + "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": 104, + "community_name": "auth.controller.ts", + "norm_label": "apiproperty" }, { "label": "ApiPropertyOptional", @@ -18824,10 +15054,32 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 138, - "community_name": "payment.controller.ts", - "norm_label": "apipropertyoptional", - "id": "backend_src_payment_dto_verify_payment_dto_ts_apipropertyoptional" + "id": "backend_src_auth_dto_register_dto_ts_apipropertyoptional", + "community": 104, + "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": 104, + "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": 104, + "community_name": "auth.controller.ts", + "norm_label": "isnotempty" }, { "label": "IsOptional", @@ -18835,10 +15087,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 138, - "community_name": "payment.controller.ts", - "norm_label": "isoptional", - "id": "backend_src_payment_dto_verify_payment_dto_ts_isoptional" + "id": "backend_src_auth_dto_register_dto_ts_isoptional", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": "isoptional" }, { "label": "IsString", @@ -18846,406 +15098,307 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 138, - "community_name": "payment.controller.ts", - "norm_label": "isstring", - "id": "backend_src_payment_dto_verify_payment_dto_ts_isstring" + "id": "backend_src_auth_dto_register_dto_ts_isstring", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": "isstring" }, { - "label": "payment.controller.ts", + "label": "MinLength", "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_auth_dto_register_dto_ts_minlength", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": "minlength" + }, + { + "label": "send-otp.dto.ts", + "file_type": "code", + "source_file": "backend/src/auth/dto/send-otp.dto.ts", "source_location": "L1", "_origin": "ast", - "community": 138, - "community_name": "payment.controller.ts", - "norm_label": "payment.controller.ts", - "id": "backend_src_payment_payment_controller" + "id": "backend_src_auth_dto_send_otp_dto", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": "send-otp.dto.ts" }, { - "label": "01-system-discovery.md", - "file_type": "document", - "source_file": "docs/audit/01-system-discovery.md", + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_auth_dto_send_otp_dto_ts_apiproperty", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": "apiproperty" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_auth_dto_send_otp_dto_ts_isnotempty", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": "isnotempty" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_auth_dto_send_otp_dto_ts_isstring", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": "isstring" + }, + { + "label": "Matches", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_auth_dto_send_otp_dto_ts_matches", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": "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": 139, - "community_name": "System Discovery", - "norm_label": "01-system-discovery.md", - "id": "docs_audit_01_system_discovery" + "id": "backend_src_auth_dto_verify_otp_dto", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": "verify-otp.dto.ts" }, { - "label": "Active Core Applications", - "file_type": "document", - "source_file": "docs/audit/01-system-discovery.md", - "source_location": "L6", + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", "_origin": "ast", - "community": 139, - "community_name": "System Discovery", - "norm_label": "active core applications", - "id": "docs_audit_01_system_discovery_active_core_applications" + "id": "backend_src_auth_dto_verify_otp_dto_ts_apiproperty", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": "apiproperty" }, { - "label": "Current Architecture", - "file_type": "document", - "source_file": "docs/audit/01-system-discovery.md", - "source_location": "L3", + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", "_origin": "ast", - "community": 139, - "community_name": "System Discovery", - "norm_label": "current architecture", - "id": "docs_audit_01_system_discovery_current_architecture" + "id": "backend_src_auth_dto_verify_otp_dto_ts_isnotempty", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": "isnotempty" }, { - "label": "Evidence-Based Status Matrix", - "file_type": "document", - "source_file": "docs/audit/01-system-discovery.md", - "source_location": "L36", + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", "_origin": "ast", - "community": 139, - "community_name": "System Discovery", - "norm_label": "evidence-based status matrix", - "id": "docs_audit_01_system_discovery_evidence_based_status_matrix" + "id": "backend_src_auth_dto_verify_otp_dto_ts_isstring", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": "isstring" }, { - "label": "Excluded / Non-Auditable Artifacts", + "label": "Matches", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_auth_dto_verify_otp_dto_ts_matches", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": "matches" + }, + { + "label": "HttpCode", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "httpcode", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": "httpcode" + }, + { + "label": "Length", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "length", + "community": 104, + "community_name": "auth.controller.ts", + "norm_label": "length" + }, + { + "label": "26-phase2-integrity-repair-report.md", "file_type": "document", - "source_file": "docs/audit/01-system-discovery.md", + "source_file": "docs/audit/26-phase2-integrity-repair-report.md", + "source_location": "L1", + "_origin": "ast", + "id": "docs_audit_26_phase2_integrity_repair_report", + "community": 105, + "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", - "community": 139, - "community_name": "System Discovery", - "norm_label": "excluded / non-auditable artifacts", - "id": "docs_audit_01_system_discovery_excluded_non_auditable_artifacts" + "id": "docs_audit_26_phase2_integrity_repair_report_1_1_authoritative_source_file_inventory_rebuilt", + "community": 105, + "community_name": "1. Summary of Integrity Repairs Performed", + "norm_label": "1.1 authoritative source file inventory rebuilt" }, { - "label": "Major Business Domains Discovered", + "label": "1.2 Raw Finding Dispositions Reconciled", "file_type": "document", - "source_file": "docs/audit/01-system-discovery.md", + "source_file": "docs/audit/26-phase2-integrity-repair-report.md", "source_location": "L18", "_origin": "ast", - "community": 139, - "community_name": "System Discovery", - "norm_label": "major business domains discovered", - "id": "docs_audit_01_system_discovery_major_business_domains_discovered" + "id": "docs_audit_26_phase2_integrity_repair_report_1_2_raw_finding_dispositions_reconciled", + "community": 105, + "community_name": "1. Summary of Integrity Repairs Performed", + "norm_label": "1.2 raw finding dispositions reconciled" }, { - "label": "System Discovery", + "label": "1.3 Finding Identifier Normalization", "file_type": "document", - "source_file": "docs/audit/01-system-discovery.md", - "source_location": "L1", - "_origin": "ast", - "community": 139, - "community_name": "System Discovery", - "norm_label": "system discovery", - "id": "docs_audit_01_system_discovery_system_discovery" - }, - { - "label": "Technical Architecture Summary", - "file_type": "document", - "source_file": "docs/audit/01-system-discovery.md", + "source_file": "docs/audit/26-phase2-integrity-repair-report.md", "source_location": "L27", "_origin": "ast", - "community": 139, - "community_name": "System Discovery", - "norm_label": "technical architecture summary", - "id": "docs_audit_01_system_discovery_technical_architecture_summary" + "id": "docs_audit_26_phase2_integrity_repair_report_1_3_finding_identifier_normalization", + "community": 105, + "community_name": "1. Summary of Integrity Repairs Performed", + "norm_label": "1.3 finding identifier normalization" }, { - "label": "ApiNotFoundResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 14, - "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": 14, - "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": 14, - "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": 14, - "community_name": "BlogsController", - "norm_label": "apitags", - "id": "backend_src_blogs_blogs_controller_ts_apitags" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 14, - "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": 14, - "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": 14, - "community_name": "BlogsController", - "norm_label": "param", - "id": "backend_src_blogs_blogs_controller_ts_param" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 14, - "community_name": "BlogsController", - "norm_label": "query", - "id": "backend_src_blogs_blogs_controller_ts_query" - }, - { - "label": "prd.md", + "label": "1.4 Rejected Finding Cleanup", "file_type": "document", - "source_file": ".ai_agency/specs/prd.md", + "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": 105, + "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": 105, + "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": 105, + "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": 105, + "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": 105, + "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": 105, + "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": 105, + "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", - "community": 140, - "community_name": "Product Requirement Document (PRD)", - "norm_label": "prd.md", - "id": "ai_agency_specs_prd" + "id": "docs_audit_26_phase2_integrity_repair_report_phase_2_6_integrity_repair_audit_quality_gate_report", + "community": 105, + "community_name": "1. Summary of Integrity Repairs Performed", + "norm_label": "phase 2.6 integrity repair & audit quality gate report" }, { - "label": "1. Executive Vision", - "file_type": "document", - "source_file": ".ai_agency/specs/prd.md", - "source_location": "L3", - "_origin": "ast", - "community": 140, - "community_name": "Product Requirement Document (PRD)", - "norm_label": "1. executive vision", - "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": 140, - "community_name": "Product Requirement Document (PRD)", - "norm_label": "2. target audience", - "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": 140, - "community_name": "Product Requirement Document (PRD)", - "norm_label": "3. functional requirements", - "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": 140, - "community_name": "Product Requirement Document (PRD)", - "norm_label": "4. non-functional requirements (performance, security)", - "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": 140, - "community_name": "Product Requirement Document (PRD)", - "norm_label": "5. epic / feature breakdown", - "id": "ai_agency_specs_prd_5_epic_feature_breakdown" - }, - { - "label": "Product Requirement Document (PRD)", - "file_type": "document", - "source_file": ".ai_agency/specs/prd.md", + "label": "admin/blogs.controller.ts", + "file_type": "code", + "source_file": "backend/src/admin/blogs.controller.ts", "source_location": "L1", "_origin": "ast", - "community": 140, - "community_name": "Product Requirement Document (PRD)", - "norm_label": "product requirement document (prd)", - "id": "ai_agency_specs_prd_product_requirement_document_prd" + "id": "backend_src_admin_blogs_controller", + "community": 106, + "community_name": "BlogsService", + "norm_label": "admin/blogs.controller.ts" }, { - "label": "wiki/wiki.controller.ts", + "label": "admin/blogs.service.ts", "file_type": "code", - "source_file": "backend/src/wiki/wiki.controller.ts", + "source_file": "backend/src/admin/blogs.service.ts", "source_location": "L1", "_origin": "ast", - "community": 141, - "community_name": "WikiController", - "norm_label": "wiki/wiki.controller.ts", - "id": "backend_src_wiki_wiki_controller" - }, - { - "label": "ApiNotFoundResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 141, - "community_name": "WikiController", - "norm_label": "apinotfoundresponse", - "id": "backend_src_wiki_wiki_controller_ts_apinotfoundresponse" - }, - { - "label": "ApiOkResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 141, - "community_name": "WikiController", - "norm_label": "apiokresponse", - "id": "backend_src_wiki_wiki_controller_ts_apiokresponse" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 141, - "community_name": "WikiController", - "norm_label": "apioperation", - "id": "backend_src_wiki_wiki_controller_ts_apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 141, - "community_name": "WikiController", - "norm_label": "apitags", - "id": "backend_src_wiki_wiki_controller_ts_apitags" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 141, - "community_name": "WikiController", - "norm_label": "controller", - "id": "backend_src_wiki_wiki_controller_ts_controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 141, - "community_name": "WikiController", - "norm_label": "get", - "id": "backend_src_wiki_wiki_controller_ts_get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 141, - "community_name": "WikiController", - "norm_label": "param", - "id": "backend_src_wiki_wiki_controller_ts_param" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 141, - "community_name": "WikiController", - "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": 141, - "community_name": "WikiController", - "norm_label": "wiki.module.ts", - "id": "backend_src_wiki_wiki_module" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 141, - "community_name": "WikiController", - "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": 141, - "community_name": "WikiController", - "norm_label": "wiki/wiki.service.ts", - "id": "backend_src_wiki_wiki_service" + "id": "backend_src_admin_blogs_service", + "community": 106, + "community_name": "BlogsService", + "norm_label": "admin/blogs.service.ts" }, { "label": "Injectable", @@ -19253,10 +15406,3827 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_admin_blogs_service_ts_injectable", + "community": 106, + "community_name": "BlogsService", + "norm_label": "injectable" + }, + { + "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": 107, + "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": 107, + "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": 107, + "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": 107, + "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": 107, + "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": 107, + "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": 107, + "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": 107, + "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": 107, + "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": 107, + "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": 107, + "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": 108, + "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": 108, + "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": 108, + "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": 108, + "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": 108, + "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": 108, + "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": 108, + "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": 108, + "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": 108, + "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": 108, + "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": 108, + "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": 109, + "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": 109, + "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": 109, + "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": 109, + "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": 109, + "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": 109, + "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": 109, + "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": 109, + "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": 109, + "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": 109, + "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": 109, + "community_name": "Operational Rules & Boundaries", + "norm_label": "strict input specifications (what files to read)" + }, + { + "label": "trust-seals/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/trust-seals/page.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_app_trust_seals_page", + "community": 11, + "community_name": "useSettingsStore", + "norm_label": "trust-seals/page.tsx" + }, + { + "label": "metadata", + "file_type": "code", + "source_file": "frontend/application/app/trust-seals/page.tsx", + "source_location": "L6", + "_origin": "ast", + "id": "frontend_application_app_trust_seals_page_metadata", + "community": 11, + "community_name": "useSettingsStore", + "norm_label": "metadata" + }, + { + "label": "BrandLogo.tsx", + "file_type": "code", + "source_file": "frontend/application/components/BrandLogo.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_brandlogo", + "community": 11, + "community_name": "useSettingsStore", + "norm_label": "brandlogo.tsx" + }, + { + "label": "EnamadBadge.tsx", + "file_type": "code", + "source_file": "frontend/application/components/EnamadBadge.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_enamadbadge", + "community": 11, + "community_name": "useSettingsStore", + "norm_label": "enamadbadge.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": 11, + "community_name": "useSettingsStore", + "norm_label": "footer.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": 11, + "community_name": "useSettingsStore", + "norm_label": "hero.tsx" + }, + { + "label": "MaintenancePage.tsx", + "file_type": "code", + "source_file": "frontend/application/components/MaintenancePage.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_maintenancepage", + "community": 11, + "community_name": "useSettingsStore", + "norm_label": "maintenancepage.tsx" + }, + { + "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": 11, + "community_name": "useSettingsStore", + "norm_label": "footer.test.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": 11, + "community_name": "useSettingsStore", + "norm_label": "hero.test.tsx" + }, + { + "label": "Tooltip.test.tsx", + "file_type": "code", + "source_file": "frontend/application/components/__tests__/Tooltip.test.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_tests_tooltip_test", + "community": 11, + "community_name": "useSettingsStore", + "norm_label": "tooltip.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": 11, + "community_name": "useSettingsStore", + "norm_label": "tickerbanner.tsx" + }, + { + "label": "Tooltip.tsx", + "file_type": "code", + "source_file": "frontend/application/components/Tooltip.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_tooltip", + "community": 11, + "community_name": "useSettingsStore", + "norm_label": "tooltip.tsx" + }, + { + "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": 11, + "community_name": "useSettingsStore", + "norm_label": "settingsstore.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": 11, + "community_name": "useSettingsStore", + "norm_label": "usesettingsstore" + }, + { + "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": 11, + "community_name": "useSettingsStore", + "norm_label": "settingsstore.test.ts" + }, + { + "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": 110, + "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": 110, + "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": 110, + "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": 110, + "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": 110, + "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": 110, + "community_name": "AppService", + "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": 111, + "community_name": "SmsLogQueryDto", + "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": 111, + "community_name": "SmsLogQueryDto", + "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": 111, + "community_name": "SmsLogQueryDto", + "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": 111, + "community_name": "SmsLogQueryDto", + "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": 111, + "community_name": "SmsLogQueryDto", + "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": 111, + "community_name": "SmsLogQueryDto", + "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": 111, + "community_name": "SmsLogQueryDto", + "norm_label": "type" + }, + { + "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": 112, + "community_name": "WholesaleApplyDto", + "norm_label": "wholesale-apply.dto.ts" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_apiproperty", + "community": 112, + "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": 112, + "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": 112, + "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": 112, + "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": 112, + "community_name": "WholesaleApplyDto", + "norm_label": "isstring" + }, + { + "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": 112, + "community_name": "WholesaleApplyDto", + "norm_label": "wholesale.service.ts" + }, + { + "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": 113, + "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": 113, + "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": 113, + "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": 113, + "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": 113, + "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": 113, + "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": 113, + "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": 113, + "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": 113, + "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": 113, + "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": 113, + "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": 114, + "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": 114, + "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": 114, + "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": 114, + "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": 114, + "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": 114, + "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": 114, + "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": 114, + "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": 114, + "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": 114, + "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": 114, + "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": 115, + "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": 115, + "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": 115, + "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": 115, + "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": 115, + "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": 115, + "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": 115, + "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": 115, + "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": 115, + "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": 115, + "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": 116, + "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": 116, + "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": 116, + "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": 116, + "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": 116, + "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": 116, + "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": 116, + "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": 116, + "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": 116, + "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": 116, + "community_name": "compilerOptions", + "norm_label": "./**/*.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": 117, + "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": 117, + "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": 117, + "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": 117, + "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": 117, + "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": 117, + "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": 117, + "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": 117, + "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": 117, + "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": 117, + "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": 118, + "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": 118, + "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": 118, + "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": 118, + "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": 118, + "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": 118, + "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": 118, + "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": 118, + "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": 118, + "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": 118, + "community_name": "backend/README.md", + "norm_label": "support" + }, + { + "label": "eslint", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L60", + "_origin": "ast", + "id": "backend_package_devdependencies_eslint", + "community": 119, + "community_name": "eslint", + "norm_label": "eslint" + }, + { + "label": "eslint", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L60", + "_origin": "ast", + "id": "backend_package_json_eslint", + "community": 119, + "community_name": "eslint", + "norm_label": "eslint" + }, + { + "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": 12, + "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": 12, + "community_name": "adminRoutes.tsx", + "norm_label": "main.tsx" + }, + { + "label": "ContactSubmissions.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_contactsubmissions", + "community": 12, + "community_name": "adminRoutes.tsx", + "norm_label": "contactsubmissions.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": 12, + "community_name": "adminRoutes.tsx", + "norm_label": "dashboard.tsx" + }, + { + "label": "Tickets.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_tickets", + "community": 12, + "community_name": "adminRoutes.tsx", + "norm_label": "tickets.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": 12, + "community_name": "adminRoutes.tsx", + "norm_label": "wholesaleapplications.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": 12, + "community_name": "adminRoutes.tsx", + "norm_label": "adminroutes.tsx" + }, + { + "label": "ContactSubmissions", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L26", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_contactsubmissions", + "community": 12, + "community_name": "adminRoutes.tsx", + "norm_label": "contactsubmissions" + }, + { + "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": 12, + "community_name": "adminRoutes.tsx", + "norm_label": "dashboard" + }, + { + "label": "router", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L49", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_router", + "community": 12, + "community_name": "adminRoutes.tsx", + "norm_label": "router" + }, + { + "label": "Tickets", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L39", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_tickets", + "community": 12, + "community_name": "adminRoutes.tsx", + "norm_label": "tickets" + }, + { + "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": 12, + "community_name": "adminRoutes.tsx", + "norm_label": "wholesaleapplications" + }, + { + "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": 120, + "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": 120, + "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": 120, + "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": 120, + "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": 120, + "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": 120, + "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": 120, + "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": 120, + "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": 120, + "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": 120, + "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": 121, + "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": 121, + "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": 121, + "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": 121, + "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": 121, + "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": 121, + "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": 121, + "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": 121, + "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": 121, + "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": 121, + "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": 122, + "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": 122, + "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": 122, + "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": 122, + "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": 122, + "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": 122, + "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": 122, + "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": 122, + "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": 122, + "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": 122, + "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": 123, + "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": 123, + "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": 123, + "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": 123, + "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": 123, + "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": 123, + "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": 123, + "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": 123, + "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": 123, + "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": 123, + "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": "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": 124, + "community_name": "Reports.tsx", + "norm_label": "reports.tsx" + }, + { + "label": "COLORS", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L10", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_reports_colors", + "community": 124, + "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": 124, + "community_name": "Reports.tsx", + "norm_label": "reports" + }, + { + "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": 125, + "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": 125, + "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": 125, + "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": 125, + "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": 125, + "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": 125, + "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": 125, + "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": 125, + "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": 125, + "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": 125, + "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": 126, + "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": 126, + "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": 126, + "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": 126, + "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": 126, + "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": 126, + "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": 126, + "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": 126, + "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": 126, + "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": 127, + "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": 128, + "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": 128, + "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": 128, + "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": 128, + "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": 128, + "community_name": "backend/package.json", + "norm_label": "name" + }, + { + "label": "prisma", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L93", + "_origin": "ast", + "id": "backend_package_prisma", + "community": 128, + "community_name": "backend/package.json", + "norm_label": "prisma" + }, + { + "label": "seed", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L94", + "_origin": "ast", + "id": "backend_package_prisma_seed", + "community": 128, + "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": 128, + "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": 128, + "community_name": "backend/package.json", + "norm_label": "version" + }, + { + "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": 129, + "community_name": "eslint-config-next", + "norm_label": "eslint-config-next" + }, + { + "label": "eslint-config-next", + "file_type": "concept", + "source_file": "frontend/application/package.json", + "source_location": "L30", + "_origin": "ast", + "id": "eslint_config_next", + "community": 129, + "community_name": "eslint-config-next", + "norm_label": "eslint-config-next" + }, + { + "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": 13, + "community_name": "PrismaService", + "norm_label": "admin.service.spec.ts" + }, + { + "label": "auth.service.ts", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_auth_auth_service", + "community": 13, + "community_name": "PrismaService", + "norm_label": "auth.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": 13, + "community_name": "PrismaService", + "norm_label": "auth.service.spec.ts" + }, + { + "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": 13, + "community_name": "PrismaService", + "norm_label": "b2b.service.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": 13, + "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": 13, + "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": 13, + "community_name": "PrismaService", + "norm_label": "sms.service.ts" + }, + { + "label": "phone.utils.ts", + "file_type": "code", + "source_file": "backend/src/common/utils/phone.utils.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_common_utils_phone_utils", + "community": 13, + "community_name": "PrismaService", + "norm_label": "phone.utils.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": 13, + "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": 13, + "community_name": "PrismaService", + "norm_label": "ingredients.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": 13, + "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": 13, + "community_name": "PrismaService", + "norm_label": "payment.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": 13, + "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": 13, + "community_name": "PrismaService", + "norm_label": "prescriptions.service.ts" + }, + { + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "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": 13, + "community_name": "PrismaService", + "norm_label": "smart-advisor.service.ts" + }, + { + "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": 13, + "community_name": "PrismaService", + "norm_label": "testimonials.service.ts" + }, + { + "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": 13, + "community_name": "PrismaService", + "norm_label": "users.service.ts" + }, + { + "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": 13, + "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": 13, + "community_name": "PrismaService", + "norm_label": "videos.service.ts" + }, + { + "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": 130, + "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": 130, + "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": 130, + "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": 130, + "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": 130, + "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": 130, + "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": 130, + "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": 130, + "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": 130, + "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": 131, + "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": 131, + "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": 131, + "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": 131, + "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": 131, + "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": 131, + "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": 131, + "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": 131, + "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": 131, + "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": 132, + "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": 132, + "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": 132, + "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": 132, + "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": 132, + "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": 132, + "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": 132, + "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": 132, + "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": 132, + "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": 133, + "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": 133, + "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": 133, + "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": 133, + "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": 133, + "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": 133, + "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": 133, + "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": 133, + "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": 133, + "community_name": "Install", + "norm_label": "\u0646\u0645\u0648\u0646\u0647 \u0645\u062a\u0646 sample:" + }, + { + "label": "ErrorBoundary.tsx", + "file_type": "code", + "source_file": "frontend/application/components/ErrorBoundary.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_errorboundary", + "community": 134, + "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": 135, + "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": 135, + "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": 135, + "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": 135, + "community_name": "application/package.json", + "norm_label": "scripts" + }, + { + "label": "build", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L7", + "_origin": "ast", + "id": "frontend_application_package_scripts_build", + "community": 135, + "community_name": "application/package.json", + "norm_label": "build" + }, + { + "label": "dev", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L6", + "_origin": "ast", + "id": "frontend_application_package_scripts_dev", + "community": 135, + "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": 135, + "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": 135, + "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": 135, + "community_name": "application/package.json", + "norm_label": "version" + }, + { + "label": "app_module_1", + "file_type": "code", + "source_file": "backend/scripts/generate-openapi.js", + "source_location": "L37", + "_origin": "ast", + "id": "backend_scripts_generate_openapi_app_module_1", + "community": 136, + "community_name": "generate-openapi.js", + "norm_label": "app_module_1" + }, + { + "label": "core_1", + "file_type": "code", + "source_file": "backend/scripts/generate-openapi.js", + "source_location": "L36", + "_origin": "ast", + "id": "backend_scripts_generate_openapi_core_1", + "community": 136, + "community_name": "generate-openapi.js", + "norm_label": "core_1" + }, + { + "label": "fs", + "file_type": "code", + "source_file": "backend/scripts/generate-openapi.js", + "source_location": "L39", + "_origin": "ast", + "id": "backend_scripts_generate_openapi_fs", + "community": 136, + "community_name": "generate-openapi.js", + "norm_label": "fs" + }, + { + "label": "generate-openapi.js", + "file_type": "code", + "source_file": "backend/scripts/generate-openapi.js", + "source_location": "L1", + "_origin": "ast", + "id": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi", + "community": 136, + "community_name": "generate-openapi.js", + "norm_label": "generate-openapi.js" + }, + { + "label": "path", + "file_type": "code", + "source_file": "backend/scripts/generate-openapi.js", + "source_location": "L40", + "_origin": "ast", + "id": "backend_scripts_generate_openapi_path", + "community": 136, + "community_name": "generate-openapi.js", + "norm_label": "path" + }, + { + "label": "swagger_1", + "file_type": "code", + "source_file": "backend/scripts/generate-openapi.js", + "source_location": "L38", + "_origin": "ast", + "id": "backend_scripts_generate_openapi_swagger_1", + "community": 136, + "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": 136, + "community_name": "generate-openapi.js", + "norm_label": "yaml" + }, + { + "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", + "id": "backend_src_payment_dto_admin_transaction_filter_dto", + "community": 137, + "community_name": "AdminTransactionFilterDto", + "norm_label": "admin-transaction-filter.dto.ts" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_apipropertyoptional", + "community": 137, + "community_name": "AdminTransactionFilterDto", + "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": 137, + "community_name": "AdminTransactionFilterDto", + "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": 137, + "community_name": "AdminTransactionFilterDto", + "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": 137, + "community_name": "AdminTransactionFilterDto", + "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": 137, + "community_name": "AdminTransactionFilterDto", + "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": 137, + "community_name": "AdminTransactionFilterDto", + "norm_label": "type" + }, + { + "label": "initiate-payment.dto.ts", + "file_type": "code", + "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_payment_dto_initiate_payment_dto", + "community": 138, + "community_name": "InitiatePaymentDto", + "norm_label": "initiate-payment.dto.ts" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_payment_dto_initiate_payment_dto_ts_apiproperty", + "community": 138, + "community_name": "InitiatePaymentDto", + "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": 138, + "community_name": "InitiatePaymentDto", + "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": 138, + "community_name": "InitiatePaymentDto", + "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": 138, + "community_name": "InitiatePaymentDto", + "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": 138, + "community_name": "InitiatePaymentDto", + "norm_label": "isstring" + }, + { + "label": "01-system-discovery.md", + "file_type": "document", + "source_file": "docs/audit/01-system-discovery.md", + "source_location": "L1", + "_origin": "ast", + "id": "docs_audit_01_system_discovery", + "community": 139, + "community_name": "System Discovery", + "norm_label": "01-system-discovery.md" + }, + { + "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": 139, + "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": 139, + "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": 139, + "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": 139, + "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": 139, + "community_name": "System Discovery", + "norm_label": "major business domains discovered" + }, + { + "label": "System Discovery", + "file_type": "document", + "source_file": "docs/audit/01-system-discovery.md", + "source_location": "L1", + "_origin": "ast", + "id": "docs_audit_01_system_discovery_system_discovery", + "community": 139, + "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": 139, + "community_name": "System Discovery", + "norm_label": "technical architecture summary" + }, + { + "label": "ApiNotFoundResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_blogs_blogs_controller_ts_apinotfoundresponse", + "community": 14, + "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": 14, + "community_name": "BlogsController", + "norm_label": "apiokresponse" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_blogs_blogs_controller_ts_apioperation", + "community": 14, + "community_name": "BlogsController", + "norm_label": "apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_blogs_blogs_controller_ts_apitags", + "community": 14, + "community_name": "BlogsController", + "norm_label": "apitags" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_blogs_blogs_controller_ts_controller", + "community": 14, + "community_name": "BlogsController", + "norm_label": "controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_blogs_blogs_controller_ts_get", + "community": 14, + "community_name": "BlogsController", + "norm_label": "get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_blogs_blogs_controller_ts_param", + "community": 14, + "community_name": "BlogsController", + "norm_label": "param" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_blogs_blogs_controller_ts_query", + "community": 14, + "community_name": "BlogsController", + "norm_label": "query" + }, + { + "label": "prd.md", + "file_type": "document", + "source_file": ".ai_agency/specs/prd.md", + "source_location": "L1", + "_origin": "ast", + "id": "ai_agency_specs_prd", + "community": 140, + "community_name": "Product Requirement Document (PRD)", + "norm_label": "prd.md" + }, + { + "label": "1. Executive Vision", + "file_type": "document", + "source_file": ".ai_agency/specs/prd.md", + "source_location": "L3", + "_origin": "ast", + "id": "ai_agency_specs_prd_1_executive_vision", + "community": 140, + "community_name": "Product Requirement Document (PRD)", + "norm_label": "1. executive vision" + }, + { + "label": "2. Target Audience", + "file_type": "document", + "source_file": ".ai_agency/specs/prd.md", + "source_location": "L6", + "_origin": "ast", + "id": "ai_agency_specs_prd_2_target_audience", + "community": 140, + "community_name": "Product Requirement Document (PRD)", + "norm_label": "2. target audience" + }, + { + "label": "3. Functional Requirements", + "file_type": "document", + "source_file": ".ai_agency/specs/prd.md", + "source_location": "L9", + "_origin": "ast", + "id": "ai_agency_specs_prd_3_functional_requirements", + "community": 140, + "community_name": "Product Requirement Document (PRD)", + "norm_label": "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", + "id": "ai_agency_specs_prd_4_non_functional_requirements_performance_security", + "community": 140, + "community_name": "Product Requirement Document (PRD)", + "norm_label": "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", + "id": "ai_agency_specs_prd_5_epic_feature_breakdown", + "community": 140, + "community_name": "Product Requirement Document (PRD)", + "norm_label": "5. epic / feature breakdown" + }, + { + "label": "Product Requirement Document (PRD)", + "file_type": "document", + "source_file": ".ai_agency/specs/prd.md", + "source_location": "L1", + "_origin": "ast", + "id": "ai_agency_specs_prd_product_requirement_document_prd", + "community": 140, + "community_name": "Product Requirement Document (PRD)", + "norm_label": "product requirement document (prd)" + }, + { + "label": "wiki/wiki.controller.ts", + "file_type": "code", + "source_file": "backend/src/wiki/wiki.controller.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_wiki_wiki_controller", "community": 141, "community_name": "WikiController", - "norm_label": "injectable", - "id": "backend_src_wiki_wiki_service_ts_injectable" + "norm_label": "wiki/wiki.controller.ts" + }, + { + "label": "ApiNotFoundResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_wiki_wiki_controller_ts_apinotfoundresponse", + "community": 141, + "community_name": "WikiController", + "norm_label": "apinotfoundresponse" + }, + { + "label": "ApiOkResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_wiki_wiki_controller_ts_apiokresponse", + "community": 141, + "community_name": "WikiController", + "norm_label": "apiokresponse" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_wiki_wiki_controller_ts_apioperation", + "community": 141, + "community_name": "WikiController", + "norm_label": "apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_wiki_wiki_controller_ts_apitags", + "community": 141, + "community_name": "WikiController", + "norm_label": "apitags" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_wiki_wiki_controller_ts_controller", + "community": 141, + "community_name": "WikiController", + "norm_label": "controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_wiki_wiki_controller_ts_get", + "community": 141, + "community_name": "WikiController", + "norm_label": "get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_wiki_wiki_controller_ts_param", + "community": 141, + "community_name": "WikiController", + "norm_label": "param" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_wiki_wiki_controller_ts_query", + "community": 141, + "community_name": "WikiController", + "norm_label": "query" + }, + { + "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": 141, + "community_name": "WikiController", + "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": 141, + "community_name": "WikiController", + "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": 141, + "community_name": "WikiController", + "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": 141, + "community_name": "WikiController", + "norm_label": "injectable" }, { "label": "globals", @@ -19264,10 +19234,10 @@ "source_file": "backend/package.json", "source_location": "L63", "_origin": "ast", + "id": "backend_package_devdependencies_globals", "community": 142, "community_name": "globals", - "norm_label": "globals", - "id": "backend_package_devdependencies_globals" + "norm_label": "globals" }, { "label": "globals", @@ -19275,10 +19245,10 @@ "source_file": "backend/package.json", "source_location": "L63", "_origin": "ast", + "id": "backend_package_json_globals", "community": 142, "community_name": "globals", - "norm_label": "globals", - "id": "backend_package_json_globals" + "norm_label": "globals" }, { "label": "@nestjs/cli", @@ -19286,10 +19256,10 @@ "source_file": "backend/package.json", "source_location": "L48", "_origin": "ast", + "id": "backend_package_devdependencies_nestjs_cli", "community": 143, "community_name": "@nestjs/cli", - "norm_label": "@nestjs/cli", - "id": "backend_package_devdependencies_nestjs_cli" + "norm_label": "@nestjs/cli" }, { "label": "@nestjs/cli", @@ -19297,10 +19267,10 @@ "source_file": "backend/package.json", "source_location": "L48", "_origin": "ast", + "id": "nestjs_cli", "community": 143, "community_name": "@nestjs/cli", - "norm_label": "@nestjs/cli", - "id": "nestjs_cli" + "norm_label": "@nestjs/cli" }, { "label": "03-baseline-command-plan.md", @@ -19308,10 +19278,10 @@ "source_file": "docs/audit/03-baseline-command-plan.md", "source_location": "L1", "_origin": "ast", + "id": "docs_audit_03_baseline_command_plan", "community": 144, "community_name": "Baseline Command Plan & Reconciled Command History", - "norm_label": "03-baseline-command-plan.md", - "id": "docs_audit_03_baseline_command_plan" + "norm_label": "03-baseline-command-plan.md" }, { "label": "Attempted Command Execution Log", @@ -19319,10 +19289,10 @@ "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": 144, "community_name": "Baseline Command Plan & Reconciled Command History", - "norm_label": "attempted command execution log", - "id": "docs_audit_03_baseline_command_plan_attempted_command_execution_log" + "norm_label": "attempted command execution log" }, { "label": "Backend `backend/package.json` Scripts", @@ -19330,10 +19300,10 @@ "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": 144, "community_name": "Baseline Command Plan & Reconciled Command History", - "norm_label": "backend `backend/package.json` scripts", - "id": "docs_audit_03_baseline_command_plan_backend_backend_package_json_scripts" + "norm_label": "backend `backend/package.json` scripts" }, { "label": "Baseline Command Plan & Reconciled Command History", @@ -19341,10 +19311,10 @@ "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": 144, "community_name": "Baseline Command Plan & Reconciled Command History", - "norm_label": "baseline command plan & reconciled command history", - "id": "docs_audit_03_baseline_command_plan_baseline_command_plan_reconciled_command_history" + "norm_label": "baseline command plan & reconciled command history" }, { "label": "Package Scripts Safety Analysis", @@ -19352,10 +19322,10 @@ "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": 144, "community_name": "Baseline Command Plan & Reconciled Command History", - "norm_label": "package scripts safety analysis", - "id": "docs_audit_03_baseline_command_plan_package_scripts_safety_analysis" + "norm_label": "package scripts safety analysis" }, { "label": "Permitted Safe Checks for Phase 2", @@ -19363,10 +19333,10 @@ "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": 144, "community_name": "Baseline Command Plan & Reconciled Command History", - "norm_label": "permitted safe checks for phase 2", - "id": "docs_audit_03_baseline_command_plan_permitted_safe_checks_for_phase_2" + "norm_label": "permitted safe checks for phase 2" }, { "label": "Root `package.json` Scripts", @@ -19374,10 +19344,10 @@ "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": 144, "community_name": "Baseline Command Plan & Reconciled Command History", - "norm_label": "root `package.json` scripts", - "id": "docs_audit_03_baseline_command_plan_root_package_json_scripts" + "norm_label": "root `package.json` scripts" }, { "label": "Spinner.tsx", @@ -19385,10 +19355,10 @@ "source_file": "frontend/admin-panel/src/components/ui/Spinner.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_admin_panel_src_components_ui_spinner", "community": 145, "community_name": "Spinner.tsx", - "norm_label": "spinner.tsx", - "id": "frontend_admin_panel_src_components_ui_spinner" + "norm_label": "spinner.tsx" }, { "label": "Reviews.tsx", @@ -19396,10 +19366,10 @@ "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_admin_panel_src_pages_reviews", "community": 145, "community_name": "Spinner.tsx", - "norm_label": "reviews.tsx", - "id": "frontend_admin_panel_src_pages_reviews" + "norm_label": "reviews.tsx" }, { "label": "SeoSettingsPage.tsx", @@ -19407,10 +19377,10 @@ "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_admin_panel_src_pages_seosettingspage", "community": 145, "community_name": "Spinner.tsx", - "norm_label": "seosettingspage.tsx", - "id": "frontend_admin_panel_src_pages_seosettingspage" + "norm_label": "seosettingspage.tsx" }, { "label": "Settings.tsx", @@ -19418,10 +19388,10 @@ "source_file": "frontend/admin-panel/src/pages/Settings.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_admin_panel_src_pages_settings", "community": 145, "community_name": "Spinner.tsx", - "norm_label": "settings.tsx", - "id": "frontend_admin_panel_src_pages_settings" + "norm_label": "settings.tsx" }, { "label": "SmsSettingsPage.tsx", @@ -19429,10 +19399,10 @@ "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_admin_panel_src_pages_smssettingspage", "community": 145, "community_name": "Spinner.tsx", - "norm_label": "smssettingspage.tsx", - "id": "frontend_admin_panel_src_pages_smssettingspage" + "norm_label": "smssettingspage.tsx" }, { "label": "SslSettingsPage.tsx", @@ -19440,10 +19410,10 @@ "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_admin_panel_src_pages_sslsettingspage", "community": 145, "community_name": "Spinner.tsx", - "norm_label": "sslsettingspage.tsx", - "id": "frontend_admin_panel_src_pages_sslsettingspage" + "norm_label": "sslsettingspage.tsx" }, { "label": "Reviews", @@ -19451,10 +19421,10 @@ "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "source_location": "L40", "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_reviews", "community": 145, "community_name": "Spinner.tsx", - "norm_label": "reviews", - "id": "frontend_admin_panel_src_routes_adminroutes_reviews" + "norm_label": "reviews" }, { "label": "SeoSettingsPage", @@ -19462,10 +19432,10 @@ "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "source_location": "L33", "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_seosettingspage", "community": 145, "community_name": "Spinner.tsx", - "norm_label": "seosettingspage", - "id": "frontend_admin_panel_src_routes_adminroutes_seosettingspage" + "norm_label": "seosettingspage" }, { "label": "Settings", @@ -19473,10 +19443,10 @@ "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "source_location": "L15", "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_settings", "community": 145, "community_name": "Spinner.tsx", - "norm_label": "settings", - "id": "frontend_admin_panel_src_routes_adminroutes_settings" + "norm_label": "settings" }, { "label": "SmsSettingsPage", @@ -19484,10 +19454,10 @@ "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "source_location": "L36", "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_smssettingspage", "community": 145, "community_name": "Spinner.tsx", - "norm_label": "smssettingspage", - "id": "frontend_admin_panel_src_routes_adminroutes_smssettingspage" + "norm_label": "smssettingspage" }, { "label": "SslSettingsPage", @@ -19495,10 +19465,10 @@ "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "source_location": "L37", "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_sslsettingspage", "community": 145, "community_name": "Spinner.tsx", - "norm_label": "sslsettingspage", - "id": "frontend_admin_panel_src_routes_adminroutes_sslsettingspage" + "norm_label": "sslsettingspage" }, { "label": "error.tsx", @@ -19506,10 +19476,10 @@ "source_file": "frontend/application/app/error.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_app_error", "community": 146, "community_name": "ErrorPages.tsx", - "norm_label": "error.tsx", - "id": "frontend_application_app_error" + "norm_label": "error.tsx" }, { "label": "not-found.tsx", @@ -19517,10 +19487,10 @@ "source_file": "frontend/application/app/not-found.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_app_not_found", "community": 146, "community_name": "ErrorPages.tsx", - "norm_label": "not-found.tsx", - "id": "frontend_application_app_not_found" + "norm_label": "not-found.tsx" }, { "label": "ErrorPages.tsx", @@ -19528,10 +19498,10 @@ "source_file": "frontend/application/components/ErrorPages.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_components_errorpages", "community": 146, "community_name": "ErrorPages.tsx", - "norm_label": "errorpages.tsx", - "id": "frontend_application_components_errorpages" + "norm_label": "errorpages.tsx" }, { "label": "with-vpn.sh", @@ -19543,10 +19513,10 @@ "kind": "file" }, "_origin": "ast", + "id": "gitea_scripts_with_vpn", "community": 147, "community_name": "with-vpn.sh", - "norm_label": "with-vpn.sh", - "id": "gitea_scripts_with_vpn" + "norm_label": "with-vpn.sh" }, { "label": "cleanup()", @@ -19558,10 +19528,10 @@ "kind": "bash_function" }, "_origin": "ast", + "id": "gitea_scripts_with_vpn_cleanup", "community": 147, "community_name": "with-vpn.sh", - "norm_label": "cleanup()", - "id": "gitea_scripts_with_vpn_cleanup" + "norm_label": "cleanup()" }, { "label": "log()", @@ -19573,10 +19543,10 @@ "kind": "bash_function" }, "_origin": "ast", + "id": "gitea_scripts_with_vpn_log", "community": 147, "community_name": "with-vpn.sh", - "norm_label": "log()", - "id": "gitea_scripts_with_vpn_log" + "norm_label": "log()" }, { "label": "with-vpn.sh script", @@ -19588,10 +19558,10 @@ "kind": "bash_entrypoint" }, "_origin": "ast", + "id": "gitea_scripts_with_vpn_sh__entry", "community": 147, "community_name": "with-vpn.sh", - "norm_label": "with-vpn.sh script", - "id": "gitea_scripts_with_vpn_sh__entry" + "norm_label": "with-vpn.sh script" }, { "label": "start_vpn()", @@ -19603,10 +19573,10 @@ "kind": "bash_function" }, "_origin": "ast", + "id": "gitea_scripts_with_vpn_start_vpn", "community": 147, "community_name": "with-vpn.sh", - "norm_label": "start_vpn()", - "id": "gitea_scripts_with_vpn_start_vpn" + "norm_label": "start_vpn()" }, { "label": "stop_vpn()", @@ -19618,10 +19588,10 @@ "kind": "bash_function" }, "_origin": "ast", + "id": "gitea_scripts_with_vpn_stop_vpn", "community": 147, "community_name": "with-vpn.sh", - "norm_label": "stop_vpn()", - "id": "gitea_scripts_with_vpn_stop_vpn" + "norm_label": "stop_vpn()" }, { "label": "vpn_is_up()", @@ -19633,10 +19603,10 @@ "kind": "bash_function" }, "_origin": "ast", + "id": "gitea_scripts_with_vpn_vpn_is_up", "community": 147, "community_name": "with-vpn.sh", - "norm_label": "vpn_is_up()", - "id": "gitea_scripts_with_vpn_vpn_is_up" + "norm_label": "vpn_is_up()" }, { "label": "architecture_spec.md", @@ -19644,10 +19614,10 @@ "source_file": ".ai_agency/specs/architecture_spec.md", "source_location": "L1", "_origin": "ast", + "id": "ai_agency_specs_architecture_spec", "community": 148, "community_name": "Architecture Specification", - "norm_label": "architecture_spec.md", - "id": "ai_agency_specs_architecture_spec" + "norm_label": "architecture_spec.md" }, { "label": "1. Single Non-Negotiable Tech Stack", @@ -19655,10 +19625,10 @@ "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": 148, "community_name": "Architecture Specification", - "norm_label": "1. single non-negotiable tech stack", - "id": "ai_agency_specs_architecture_spec_1_single_non_negotiable_tech_stack" + "norm_label": "1. single non-negotiable tech stack" }, { "label": "2. Directory Structure Tree", @@ -19666,10 +19636,10 @@ "source_file": ".ai_agency/specs/architecture_spec.md", "source_location": "L10", "_origin": "ast", + "id": "ai_agency_specs_architecture_spec_2_directory_structure_tree", "community": 148, "community_name": "Architecture Specification", - "norm_label": "2. directory structure tree", - "id": "ai_agency_specs_architecture_spec_2_directory_structure_tree" + "norm_label": "2. directory structure tree" }, { "label": "3. State Management Strategy", @@ -19677,10 +19647,10 @@ "source_file": ".ai_agency/specs/architecture_spec.md", "source_location": "L25", "_origin": "ast", + "id": "ai_agency_specs_architecture_spec_3_state_management_strategy", "community": 148, "community_name": "Architecture Specification", - "norm_label": "3. state management strategy", - "id": "ai_agency_specs_architecture_spec_3_state_management_strategy" + "norm_label": "3. state management strategy" }, { "label": "4. Deployment / Docker Architecture", @@ -19688,10 +19658,10 @@ "source_file": ".ai_agency/specs/architecture_spec.md", "source_location": "L28", "_origin": "ast", + "id": "ai_agency_specs_architecture_spec_4_deployment_docker_architecture", "community": 148, "community_name": "Architecture Specification", - "norm_label": "4. deployment / docker architecture", - "id": "ai_agency_specs_architecture_spec_4_deployment_docker_architecture" + "norm_label": "4. deployment / docker architecture" }, { "label": "Architecture Specification", @@ -19699,10 +19669,10 @@ "source_file": ".ai_agency/specs/architecture_spec.md", "source_location": "L1", "_origin": "ast", + "id": "ai_agency_specs_architecture_spec_architecture_specification", "community": 148, "community_name": "Architecture Specification", - "norm_label": "architecture specification", - "id": "ai_agency_specs_architecture_spec_architecture_specification" + "norm_label": "architecture specification" }, { "label": "project_health.md", @@ -19710,10 +19680,10 @@ "source_file": ".ai_agency/specs/project_health.md", "source_location": "L1", "_origin": "ast", + "id": "ai_agency_specs_project_health", "community": 149, "community_name": "Project Health Audit Report", - "norm_label": "project_health.md", - "id": "ai_agency_specs_project_health" + "norm_label": "project_health.md" }, { "label": "1. Audit Score Summary", @@ -19721,10 +19691,10 @@ "source_file": ".ai_agency/specs/project_health.md", "source_location": "L3", "_origin": "ast", + "id": "ai_agency_specs_project_health_1_audit_score_summary", "community": 149, "community_name": "Project Health Audit Report", - "norm_label": "1. audit score summary", - "id": "ai_agency_specs_project_health_1_audit_score_summary" + "norm_label": "1. audit score summary" }, { "label": "2. Technical Debt Inventory", @@ -19732,10 +19702,10 @@ "source_file": ".ai_agency/specs/project_health.md", "source_location": "L7", "_origin": "ast", + "id": "ai_agency_specs_project_health_2_technical_debt_inventory", "community": 149, "community_name": "Project Health Audit Report", - "norm_label": "2. technical debt inventory", - "id": "ai_agency_specs_project_health_2_technical_debt_inventory" + "norm_label": "2. technical debt inventory" }, { "label": "3. Outdated Dependencies List", @@ -19743,10 +19713,10 @@ "source_file": ".ai_agency/specs/project_health.md", "source_location": "L10", "_origin": "ast", + "id": "ai_agency_specs_project_health_3_outdated_dependencies_list", "community": 149, "community_name": "Project Health Audit Report", - "norm_label": "3. outdated dependencies list", - "id": "ai_agency_specs_project_health_3_outdated_dependencies_list" + "norm_label": "3. outdated dependencies list" }, { "label": "4. Security Risks (.env leaks, unprotected ports)", @@ -19754,10 +19724,10 @@ "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": 149, "community_name": "Project Health Audit Report", - "norm_label": "4. security risks (.env leaks, unprotected ports)", - "id": "ai_agency_specs_project_health_4_security_risks_env_leaks_unprotected_ports" + "norm_label": "4. security risks (.env leaks, unprotected ports)" }, { "label": "Project Health Audit Report", @@ -19765,10 +19735,10 @@ "source_file": ".ai_agency/specs/project_health.md", "source_location": "L1", "_origin": "ast", + "id": "ai_agency_specs_project_health_project_health_audit_report", "community": 149, "community_name": "Project Health Audit Report", - "norm_label": "project health audit report", - "id": "ai_agency_specs_project_health_project_health_audit_report" + "norm_label": "project health audit report" }, { "label": "ApiPropertyOptional", @@ -19776,10 +19746,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_products_dto_get_products_dto_ts_apipropertyoptional", "community": 15, "community_name": "ProductsService", - "norm_label": "apipropertyoptional", - "id": "backend_src_products_dto_get_products_dto_ts_apipropertyoptional" + "norm_label": "apipropertyoptional" }, { "label": "IsEnum", @@ -19787,10 +19757,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_products_dto_get_products_dto_ts_isenum", "community": 15, "community_name": "ProductsService", - "norm_label": "isenum", - "id": "backend_src_products_dto_get_products_dto_ts_isenum" + "norm_label": "isenum" }, { "label": "IsOptional", @@ -19798,10 +19768,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_products_dto_get_products_dto_ts_isoptional", "community": 15, "community_name": "ProductsService", - "norm_label": "isoptional", - "id": "backend_src_products_dto_get_products_dto_ts_isoptional" + "norm_label": "isoptional" }, { "label": "IsString", @@ -19809,10 +19779,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_products_dto_get_products_dto_ts_isstring", "community": 15, "community_name": "ProductsService", - "norm_label": "isstring", - "id": "backend_src_products_dto_get_products_dto_ts_isstring" + "norm_label": "isstring" }, { "label": "products.controller.spec.ts", @@ -19820,10 +19790,10 @@ "source_file": "backend/src/products/products.controller.spec.ts", "source_location": "L1", "_origin": "ast", + "id": "backend_src_products_products_controller_spec", "community": 15, "community_name": "ProductsService", - "norm_label": "products.controller.spec.ts", - "id": "backend_src_products_products_controller_spec" + "norm_label": "products.controller.spec.ts" }, { "label": "ApiOperation", @@ -19831,10 +19801,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_products_products_controller_ts_apioperation", "community": 15, "community_name": "ProductsService", - "norm_label": "apioperation", - "id": "backend_src_products_products_controller_ts_apioperation" + "norm_label": "apioperation" }, { "label": "ApiTags", @@ -19842,10 +19812,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_products_products_controller_ts_apitags", "community": 15, "community_name": "ProductsService", - "norm_label": "apitags", - "id": "backend_src_products_products_controller_ts_apitags" + "norm_label": "apitags" }, { "label": "Body", @@ -19853,10 +19823,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_products_products_controller_ts_body", "community": 15, "community_name": "ProductsService", - "norm_label": "body", - "id": "backend_src_products_products_controller_ts_body" + "norm_label": "body" }, { "label": "Controller", @@ -19864,10 +19834,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_products_products_controller_ts_controller", "community": 15, "community_name": "ProductsService", - "norm_label": "controller", - "id": "backend_src_products_products_controller_ts_controller" + "norm_label": "controller" }, { "label": "Get", @@ -19875,10 +19845,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_products_products_controller_ts_get", "community": 15, "community_name": "ProductsService", - "norm_label": "get", - "id": "backend_src_products_products_controller_ts_get" + "norm_label": "get" }, { "label": "Param", @@ -19886,10 +19856,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_products_products_controller_ts_param", "community": 15, "community_name": "ProductsService", - "norm_label": "param", - "id": "backend_src_products_products_controller_ts_param" + "norm_label": "param" }, { "label": "Patch", @@ -19897,10 +19867,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_products_products_controller_ts_patch", "community": 15, "community_name": "ProductsService", - "norm_label": "patch", - "id": "backend_src_products_products_controller_ts_patch" + "norm_label": "patch" }, { "label": "Query", @@ -19908,10 +19878,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_products_products_controller_ts_query", "community": 15, "community_name": "ProductsService", - "norm_label": "query", - "id": "backend_src_products_products_controller_ts_query" + "norm_label": "query" }, { "label": "UseGuards", @@ -19919,10 +19889,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_products_products_controller_ts_useguards", "community": 15, "community_name": "ProductsService", - "norm_label": "useguards", - "id": "backend_src_products_products_controller_ts_useguards" + "norm_label": "useguards" }, { "label": "products.module.ts", @@ -19930,10 +19900,10 @@ "source_file": "backend/src/products/products.module.ts", "source_location": "L1", "_origin": "ast", + "id": "backend_src_products_products_module", "community": 15, "community_name": "ProductsService", - "norm_label": "products.module.ts", - "id": "backend_src_products_products_module" + "norm_label": "products.module.ts" }, { "label": "Module", @@ -19941,10 +19911,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_products_products_module_ts_module", "community": 15, "community_name": "ProductsService", - "norm_label": "module", - "id": "backend_src_products_products_module_ts_module" + "norm_label": "module" }, { "label": "products.service.ts", @@ -19952,10 +19922,10 @@ "source_file": "backend/src/products/products.service.ts", "source_location": "L1", "_origin": "ast", + "id": "backend_src_products_products_service", "community": 15, "community_name": "ProductsService", - "norm_label": "products.service.ts", - "id": "backend_src_products_products_service" + "norm_label": "products.service.ts" }, { "label": "products.service.spec.ts", @@ -19963,10 +19933,10 @@ "source_file": "backend/src/products/products.service.spec.ts", "source_location": "L1", "_origin": "ast", + "id": "backend_src_products_products_service_spec", "community": 15, "community_name": "ProductsService", - "norm_label": "products.service.spec.ts", - "id": "backend_src_products_products_service_spec" + "norm_label": "products.service.spec.ts" }, { "label": "Injectable", @@ -19974,10 +19944,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_products_products_service_ts_injectable", "community": 15, "community_name": "ProductsService", - "norm_label": "injectable", - "id": "backend_src_products_products_service_ts_injectable" + "norm_label": "injectable" }, { "label": "nest-cli.json", @@ -19985,10 +19955,10 @@ "source_file": "backend/nest-cli.json", "source_location": "L1", "_origin": "ast", + "id": "backend_nest_cli", "community": 150, "community_name": "nest-cli.json", - "norm_label": "nest-cli.json", - "id": "backend_nest_cli" + "norm_label": "nest-cli.json" }, { "label": "collection", @@ -19996,10 +19966,10 @@ "source_file": "backend/nest-cli.json", "source_location": "L3", "_origin": "ast", + "id": "backend_nest_cli_collection", "community": 150, "community_name": "nest-cli.json", - "norm_label": "collection", - "id": "backend_nest_cli_collection" + "norm_label": "collection" }, { "label": "compilerOptions", @@ -20007,10 +19977,10 @@ "source_file": "backend/nest-cli.json", "source_location": "L5", "_origin": "ast", + "id": "backend_nest_cli_compileroptions", "community": 150, "community_name": "nest-cli.json", - "norm_label": "compileroptions", - "id": "backend_nest_cli_compileroptions" + "norm_label": "compileroptions" }, { "label": "deleteOutDir", @@ -20018,10 +19988,10 @@ "source_file": "backend/nest-cli.json", "source_location": "L6", "_origin": "ast", + "id": "backend_nest_cli_compileroptions_deleteoutdir", "community": 150, "community_name": "nest-cli.json", - "norm_label": "deleteoutdir", - "id": "backend_nest_cli_compileroptions_deleteoutdir" + "norm_label": "deleteoutdir" }, { "label": "$schema", @@ -20029,10 +19999,10 @@ "source_file": "backend/nest-cli.json", "source_location": "L2", "_origin": "ast", + "id": "backend_nest_cli_schema", "community": 150, "community_name": "nest-cli.json", - "norm_label": "$schema", - "id": "backend_nest_cli_schema" + "norm_label": "$schema" }, { "label": "sourceRoot", @@ -20040,10 +20010,10 @@ "source_file": "backend/nest-cli.json", "source_location": "L4", "_origin": "ast", + "id": "backend_nest_cli_sourceroot", "community": 150, "community_name": "nest-cli.json", - "norm_label": "sourceroot", - "id": "backend_nest_cli_sourceroot" + "norm_label": "sourceroot" }, { "label": "prettier", @@ -20051,10 +20021,10 @@ "source_file": "backend/package.json", "source_location": "L65", "_origin": "ast", + "id": "backend_package_devdependencies_prettier", "community": 151, "community_name": "prettier", - "norm_label": "prettier", - "id": "backend_package_devdependencies_prettier" + "norm_label": "prettier" }, { "label": "prettier", @@ -20062,10 +20032,10 @@ "source_file": "backend/package.json", "source_location": "L65", "_origin": "ast", + "id": "prettier", "community": 151, "community_name": "prettier", - "norm_label": "prettier", - "id": "prettier" + "norm_label": "prettier" }, { "label": "query.md", @@ -20073,10 +20043,10 @@ "source_file": ".claude/skills/graphify/references/query.md", "source_location": "L1", "_origin": "ast", + "id": "claude_skills_graphify_references_query", "community": 152, "community_name": "graphify reference: query, path, explain", - "norm_label": "query.md", - "id": "claude_skills_graphify_references_query" + "norm_label": "query.md" }, { "label": "For /graphify explain", @@ -20084,10 +20054,10 @@ "source_file": ".claude/skills/graphify/references/query.md", "source_location": "L254", "_origin": "ast", + "id": "claude_skills_graphify_references_query_for_graphify_explain", "community": 152, "community_name": "graphify reference: query, path, explain", - "norm_label": "for /graphify explain", - "id": "claude_skills_graphify_references_query_for_graphify_explain" + "norm_label": "for /graphify explain" }, { "label": "For /graphify path", @@ -20095,10 +20065,10 @@ "source_file": ".claude/skills/graphify/references/query.md", "source_location": "L186", "_origin": "ast", + "id": "claude_skills_graphify_references_query_for_graphify_path", "community": 152, "community_name": "graphify reference: query, path, explain", - "norm_label": "for /graphify path", - "id": "claude_skills_graphify_references_query_for_graphify_path" + "norm_label": "for /graphify path" }, { "label": "graphify reference: query, path, explain", @@ -20106,10 +20076,10 @@ "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": 152, "community_name": "graphify reference: query, path, explain", - "norm_label": "graphify reference: query, path, explain", - "id": "claude_skills_graphify_references_query_graphify_reference_query_path_explain" + "norm_label": "graphify reference: query, path, explain" }, { "label": "Step 0 \u2014 Constrained query expansion (REQUIRED before traversal)", @@ -20117,10 +20087,10 @@ "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": 152, "community_name": "graphify reference: query, path, explain", - "norm_label": "step 0 \u2014 constrained query expansion (required before traversal)", - "id": "claude_skills_graphify_references_query_step_0_constrained_query_expansion_required_before_traversal" + "norm_label": "step 0 \u2014 constrained query expansion (required before traversal)" }, { "label": "Step 1 \u2014 Traversal", @@ -20128,10 +20098,10 @@ "source_file": ".claude/skills/graphify/references/query.md", "source_location": "L61", "_origin": "ast", + "id": "claude_skills_graphify_references_query_step_1_traversal", "community": 152, "community_name": "graphify reference: query, path, explain", - "norm_label": "step 1 \u2014 traversal", - "id": "claude_skills_graphify_references_query_step_1_traversal" + "norm_label": "step 1 \u2014 traversal" }, { "label": "04-open-questions.md", @@ -20139,10 +20109,10 @@ "source_file": "docs/audit/04-open-questions.md", "source_location": "L1", "_origin": "ast", + "id": "docs_audit_04_open_questions", "community": 153, "community_name": "Open Questions", - "norm_label": "04-open-questions.md", - "id": "docs_audit_04_open_questions" + "norm_label": "04-open-questions.md" }, { "label": "1. Storefront Migration Roadmap (`frontend/application`)", @@ -20150,10 +20120,10 @@ "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": 153, "community_name": "Open Questions", - "norm_label": "1. storefront migration roadmap (`frontend/application`)", - "id": "docs_audit_04_open_questions_1_storefront_migration_roadmap_frontend_application" + "norm_label": "1. storefront migration roadmap (`frontend/application`)" }, { "label": "2. Payment Gateway Integration Provider", @@ -20161,10 +20131,10 @@ "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": 153, "community_name": "Open Questions", - "norm_label": "2. payment gateway integration provider", - "id": "docs_audit_04_open_questions_2_payment_gateway_integration_provider" + "norm_label": "2. payment gateway integration provider" }, { "label": "3. Deployment & CI/CD Pipeline Specifications", @@ -20172,10 +20142,10 @@ "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": 153, "community_name": "Open Questions", - "norm_label": "3. deployment & ci/cd pipeline specifications", - "id": "docs_audit_04_open_questions_3_deployment_ci_cd_pipeline_specifications" + "norm_label": "3. deployment & ci/cd pipeline specifications" }, { "label": "4. SMS / OTP Service Provider", @@ -20183,10 +20153,10 @@ "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": 153, "community_name": "Open Questions", - "norm_label": "4. sms / otp service provider", - "id": "docs_audit_04_open_questions_4_sms_otp_service_provider" + "norm_label": "4. sms / otp service provider" }, { "label": "Open Questions", @@ -20194,10 +20164,10 @@ "source_file": "docs/audit/04-open-questions.md", "source_location": "L1", "_origin": "ast", + "id": "docs_audit_04_open_questions_open_questions", "community": 153, "community_name": "Open Questions", - "norm_label": "open questions", - "id": "docs_audit_04_open_questions_open_questions" + "norm_label": "open questions" }, { "label": "33-final-phase2-audit-closure.md", @@ -20205,10 +20175,10 @@ "source_file": "docs/audit/33-final-phase2-audit-closure.md", "source_location": "L1", "_origin": "ast", + "id": "docs_audit_33_final_phase2_audit_closure", "community": 154, "community_name": "Final Phase 2 Audit Closure Report", - "norm_label": "33-final-phase2-audit-closure.md", - "id": "docs_audit_33_final_phase2_audit_closure" + "norm_label": "33-final-phase2-audit-closure.md" }, { "label": "1. Executive Summary & Honest Review-Tier Metrics", @@ -20216,10 +20186,10 @@ "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": 154, "community_name": "Final Phase 2 Audit Closure Report", - "norm_label": "1. executive summary & honest review-tier metrics", - "id": "docs_audit_33_final_phase2_audit_closure_1_executive_summary_honest_review_tier_metrics" + "norm_label": "1. executive summary & honest review-tier metrics" }, { "label": "2. Reconciled Findings & Canonical Identifier Normalization", @@ -20227,10 +20197,10 @@ "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": 154, "community_name": "Final Phase 2 Audit Closure Report", - "norm_label": "2. reconciled findings & canonical identifier normalization", - "id": "docs_audit_33_final_phase2_audit_closure_2_reconciled_findings_canonical_identifier_normalization" + "norm_label": "2. reconciled findings & canonical identifier normalization" }, { "label": "3. Validation & Integrity Verification", @@ -20238,10 +20208,10 @@ "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": 154, "community_name": "Final Phase 2 Audit Closure Report", - "norm_label": "3. validation & integrity verification", - "id": "docs_audit_33_final_phase2_audit_closure_3_validation_integrity_verification" + "norm_label": "3. validation & integrity verification" }, { "label": "4. Final Quality Gate Conclusion", @@ -20249,10 +20219,10 @@ "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": 154, "community_name": "Final Phase 2 Audit Closure Report", - "norm_label": "4. final quality gate conclusion", - "id": "docs_audit_33_final_phase2_audit_closure_4_final_quality_gate_conclusion" + "norm_label": "4. final quality gate conclusion" }, { "label": "Final Phase 2 Audit Closure Report", @@ -20260,10 +20230,10 @@ "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": 154, "community_name": "Final Phase 2 Audit Closure Report", - "norm_label": "final phase 2 audit closure report", - "id": "docs_audit_33_final_phase2_audit_closure_final_phase_2_audit_closure_report" + "norm_label": "final phase 2 audit closure report" }, { "label": "prisma", @@ -20271,10 +20241,10 @@ "source_file": "backend/package.json", "source_location": "L66", "_origin": "ast", + "id": "backend_package_devdependencies_prisma", "community": 155, "community_name": "prisma", - "norm_label": "prisma", - "id": "backend_package_devdependencies_prisma" + "norm_label": "prisma" }, { "label": "prisma", @@ -20282,10 +20252,10 @@ "source_file": "backend/package.json", "source_location": "L66", "_origin": "ast", + "id": "prisma", "community": 155, "community_name": "prisma", - "norm_label": "prisma", - "id": "prisma" + "norm_label": "prisma" }, { "label": "open-browsers.js", @@ -20293,10 +20263,10 @@ "source_file": "scripts/open-browsers.js", "source_location": "L1", "_origin": "ast", + "id": "scripts_open_browsers", "community": 156, "community_name": "open-browsers.js", - "norm_label": "open-browsers.js", - "id": "scripts_open_browsers" + "norm_label": "open-browsers.js" }, { "label": "{ exec }", @@ -20304,10 +20274,10 @@ "source_file": "scripts/open-browsers.js", "source_location": "L1", "_origin": "ast", + "id": "scripts_open_browsers_exec", "community": 156, "community_name": "open-browsers.js", - "norm_label": "{ exec }", - "id": "scripts_open_browsers_exec" + "norm_label": "{ exec }" }, { "label": "http", @@ -20315,10 +20285,10 @@ "source_file": "scripts/open-browsers.js", "source_location": "L2", "_origin": "ast", + "id": "scripts_open_browsers_http", "community": 156, "community_name": "open-browsers.js", - "norm_label": "http", - "id": "scripts_open_browsers_http" + "norm_label": "http" }, { "label": "URLS", @@ -20326,10 +20296,10 @@ "source_file": "scripts/open-browsers.js", "source_location": "L4", "_origin": "ast", + "id": "scripts_open_browsers_urls", "community": 156, "community_name": "open-browsers.js", - "norm_label": "urls", - "id": "scripts_open_browsers_urls" + "norm_label": "urls" }, { "label": "start-dev.js", @@ -20337,10 +20307,10 @@ "source_file": "scripts/start-dev.js", "source_location": "L1", "_origin": "ast", + "id": "scripts_start_dev", "community": 157, "community_name": "start-dev.js", - "norm_label": "start-dev.js", - "id": "scripts_start_dev" + "norm_label": "start-dev.js" }, { "label": "backend", @@ -20348,10 +20318,10 @@ "source_file": "scripts/start-dev.js", "source_location": "L27", "_origin": "ast", + "id": "scripts_start_dev_backend", "community": 157, "community_name": "start-dev.js", - "norm_label": "backend", - "id": "scripts_start_dev_backend" + "norm_label": "backend" }, { "label": "http", @@ -20359,10 +20329,10 @@ "source_file": "scripts/start-dev.js", "source_location": "L2", "_origin": "ast", + "id": "scripts_start_dev_http", "community": 157, "community_name": "start-dev.js", - "norm_label": "http", - "id": "scripts_start_dev_http" + "norm_label": "http" }, { "label": "{ spawn }", @@ -20370,10 +20340,10 @@ "source_file": "scripts/start-dev.js", "source_location": "L1", "_origin": "ast", + "id": "scripts_start_dev_spawn", "community": 157, "community_name": "start-dev.js", - "norm_label": "{ spawn }", - "id": "scripts_start_dev_spawn" + "norm_label": "{ spawn }" }, { "label": "scratchpad.md", @@ -20381,10 +20351,10 @@ "source_file": ".ai_agency/memory/scratchpad.md", "source_location": "L1", "_origin": "ast", + "id": "ai_agency_memory_scratchpad", "community": 158, "community_name": "\ud83d\udcdd Active Agent Working Scratchpad", - "norm_label": "scratchpad.md", - "id": "ai_agency_memory_scratchpad" + "norm_label": "scratchpad.md" }, { "label": "\ud83d\udcdd Active Agent Working Scratchpad", @@ -20392,10 +20362,10 @@ "source_file": ".ai_agency/memory/scratchpad.md", "source_location": "L1", "_origin": "ast", + "id": "ai_agency_memory_scratchpad_active_agent_working_scratchpad", "community": 158, "community_name": "\ud83d\udcdd Active Agent Working Scratchpad", - "norm_label": "\ud83d\udcdd active agent working scratchpad", - "id": "ai_agency_memory_scratchpad_active_agent_working_scratchpad" + "norm_label": "\ud83d\udcdd active agent working scratchpad" }, { "label": "\ud83c\udfd7\ufe0f Execution Target", @@ -20403,10 +20373,10 @@ "source_file": ".ai_agency/memory/scratchpad.md", "source_location": "L24", "_origin": "ast", + "id": "ai_agency_memory_scratchpad_execution_target", "community": 158, "community_name": "\ud83d\udcdd Active Agent Working Scratchpad", - "norm_label": "\ud83c\udfd7\ufe0f execution target", - "id": "ai_agency_memory_scratchpad_execution_target" + "norm_label": "\ud83c\udfd7\ufe0f execution target" }, { "label": "Project: Canina Veterinary E-Commerce System", @@ -20414,10 +20384,10 @@ "source_file": ".ai_agency/memory/scratchpad.md", "source_location": "L3", "_origin": "ast", + "id": "ai_agency_memory_scratchpad_project_canina_veterinary_e_commerce_system", "community": 158, "community_name": "\ud83d\udcdd Active Agent Working Scratchpad", - "norm_label": "project: canina veterinary e-commerce system", - "id": "ai_agency_memory_scratchpad_project_canina_veterinary_e_commerce_system" + "norm_label": "project: canina veterinary e-commerce system" }, { "label": "\ud83d\udccb Requirements & Persona Mandates (Intake & User Request)", @@ -20425,10 +20395,10 @@ "source_file": ".ai_agency/memory/scratchpad.md", "source_location": "L8", "_origin": "ast", + "id": "ai_agency_memory_scratchpad_requirements_persona_mandates_intake_user_request", "community": 158, "community_name": "\ud83d\udcdd Active Agent Working Scratchpad", - "norm_label": "\ud83d\udccb requirements & persona mandates (intake & user request)", - "id": "ai_agency_memory_scratchpad_requirements_persona_mandates_intake_user_request" + "norm_label": "\ud83d\udccb requirements & persona mandates (intake & user request)" }, { "label": "code_health_review.md", @@ -20436,10 +20406,10 @@ "source_file": ".ai_agency/specs/reviews/code_health_review.md", "source_location": "L1", "_origin": "ast", + "id": "ai_agency_specs_reviews_code_health_review", "community": 159, "community_name": "\ud83d\udd0d Code Health Audit Review (01_auditor)", - "norm_label": "code_health_review.md", - "id": "ai_agency_specs_reviews_code_health_review" + "norm_label": "code_health_review.md" }, { "label": "\ud83d\udd0d Code Health Audit Review (01_auditor)", @@ -20447,10 +20417,10 @@ "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": 159, "community_name": "\ud83d\udd0d Code Health Audit Review (01_auditor)", - "norm_label": "\ud83d\udd0d code health audit review (01_auditor)", - "id": "ai_agency_specs_reviews_code_health_review_code_health_audit_review_01_auditor" + "norm_label": "\ud83d\udd0d code health audit review (01_auditor)" }, { "label": "Executive Summary", @@ -20458,10 +20428,10 @@ "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": 159, "community_name": "\ud83d\udd0d Code Health Audit Review (01_auditor)", - "norm_label": "executive summary", - "id": "ai_agency_specs_reviews_code_health_review_executive_summary" + "norm_label": "executive summary" }, { "label": "Key Findings", @@ -20469,10 +20439,10 @@ "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": 159, "community_name": "\ud83d\udd0d Code Health Audit Review (01_auditor)", - "norm_label": "key findings", - "id": "ai_agency_specs_reviews_code_health_review_key_findings" + "norm_label": "key findings" }, { "label": "Recommendations", @@ -20480,10 +20450,10 @@ "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": 159, "community_name": "\ud83d\udd0d Code Health Audit Review (01_auditor)", - "norm_label": "recommendations", - "id": "ai_agency_specs_reviews_code_health_review_recommendations" + "norm_label": "recommendations" }, { "label": "contact/page.tsx", @@ -20491,10 +20461,10 @@ "source_file": "frontend/application/app/contact/page.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_app_contact_page", "community": 16, "community_name": "lib/services/api.ts", - "norm_label": "contact/page.tsx", - "id": "frontend_application_app_contact_page" + "norm_label": "contact/page.tsx" }, { "label": "metadata", @@ -20502,10 +20472,10 @@ "source_file": "frontend/application/app/contact/page.tsx", "source_location": "L4", "_origin": "ast", + "id": "frontend_application_app_contact_page_metadata", "community": 16, "community_name": "lib/services/api.ts", - "norm_label": "metadata", - "id": "frontend_application_app_contact_page_metadata" + "norm_label": "metadata" }, { "label": "ContactFormClient.tsx", @@ -20513,10 +20483,10 @@ "source_file": "frontend/application/components/ContactFormClient.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_components_contactformclient", "community": 16, "community_name": "lib/services/api.ts", - "norm_label": "contactformclient.tsx", - "id": "frontend_application_components_contactformclient" + "norm_label": "contactformclient.tsx" }, { "label": "TestimonialsSection.tsx", @@ -20524,10 +20494,10 @@ "source_file": "frontend/application/components/TestimonialsSection.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_components_testimonialssection", "community": 16, "community_name": "lib/services/api.ts", - "norm_label": "testimonialssection.tsx", - "id": "frontend_application_components_testimonialssection" + "norm_label": "testimonialssection.tsx" }, { "label": "lib/services/api.ts", @@ -20535,10 +20505,10 @@ "source_file": "frontend/application/lib/services/api.ts", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_lib_services_api", "community": 16, "community_name": "lib/services/api.ts", - "norm_label": "lib/services/api.ts", - "id": "frontend_application_lib_services_api" + "norm_label": "lib/services/api.ts" }, { "label": "api", @@ -20546,10 +20516,10 @@ "source_file": "frontend/application/lib/services/api.ts", "source_location": "L26", "_origin": "ast", + "id": "frontend_application_lib_services_api_api", "community": 16, "community_name": "lib/services/api.ts", - "norm_label": "api", - "id": "frontend_application_lib_services_api_api" + "norm_label": "api" }, { "label": "BASE_DOMAIN", @@ -20557,10 +20527,10 @@ "source_file": "frontend/application/lib/services/api.ts", "source_location": "L14", "_origin": "ast", + "id": "frontend_application_lib_services_api_base_domain", "community": 16, "community_name": "lib/services/api.ts", - "norm_label": "base_domain", - "id": "frontend_application_lib_services_api_base_domain" + "norm_label": "base_domain" }, { "label": "baseURL", @@ -20568,10 +20538,10 @@ "source_file": "frontend/application/lib/services/api.ts", "source_location": "L13", "_origin": "ast", + "id": "frontend_application_lib_services_api_baseurl", "community": 16, "community_name": "lib/services/api.ts", - "norm_label": "baseurl", - "id": "frontend_application_lib_services_api_baseurl" + "norm_label": "baseurl" }, { "label": "authService.ts", @@ -20579,10 +20549,10 @@ "source_file": "frontend/application/lib/services/authService.ts", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_lib_services_authservice", "community": 16, "community_name": "lib/services/api.ts", - "norm_label": "authservice.ts", - "id": "frontend_application_lib_services_authservice" + "norm_label": "authservice.ts" }, { "label": "orderService.ts", @@ -20590,10 +20560,10 @@ "source_file": "frontend/application/lib/services/orderService.ts", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_lib_services_orderservice", "community": 16, "community_name": "lib/services/api.ts", - "norm_label": "orderservice.ts", - "id": "frontend_application_lib_services_orderservice" + "norm_label": "orderservice.ts" }, { "label": "cartStore.test.ts", @@ -20601,10 +20571,10 @@ "source_file": "frontend/application/lib/store/__tests__/cartStore.test.ts", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_lib_store_tests_cartstore_test", "community": 16, "community_name": "lib/services/api.ts", - "norm_label": "cartstore.test.ts", - "id": "frontend_application_lib_store_tests_cartstore_test" + "norm_label": "cartstore.test.ts" }, { "label": "mockProduct", @@ -20612,10 +20582,10 @@ "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": 16, "community_name": "lib/services/api.ts", - "norm_label": "mockproduct", - "id": "frontend_application_lib_store_tests_cartstore_test_mockproduct" + "norm_label": "mockproduct" }, { "label": "userStore.test.ts", @@ -20623,10 +20593,10 @@ "source_file": "frontend/application/lib/store/__tests__/userStore.test.ts", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_lib_store_tests_userstore_test", "community": 16, "community_name": "lib/services/api.ts", - "norm_label": "userstore.test.ts", - "id": "frontend_application_lib_store_tests_userstore_test" + "norm_label": "userstore.test.ts" }, { "label": "paginated-response.schema.ts", @@ -20634,10 +20604,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": 160, "community_name": "paginated-response.schema.ts", - "norm_label": "paginated-response.schema.ts", - "id": "backend_src_common_schemas_paginated_response_schema" + "norm_label": "paginated-response.schema.ts" }, { "label": "ApiProperty", @@ -20645,10 +20615,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_common_schemas_paginated_response_schema_ts_apiproperty", "community": 160, "community_name": "paginated-response.schema.ts", - "norm_label": "apiproperty", - "id": "backend_src_common_schemas_paginated_response_schema_ts_apiproperty" + "norm_label": "apiproperty" }, { "label": "24-omitted-file-inspection-report.md", @@ -20656,10 +20626,10 @@ "source_file": "docs/audit/24-omitted-file-inspection-report.md", "source_location": "L1", "_origin": "ast", + "id": "docs_audit_24_omitted_file_inspection_report", "community": 162, "community_name": "Omitted File Inspection Report", - "norm_label": "24-omitted-file-inspection-report.md", - "id": "docs_audit_24_omitted_file_inspection_report" + "norm_label": "24-omitted-file-inspection-report.md" }, { "label": "Conclusion", @@ -20667,10 +20637,10 @@ "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": 162, "community_name": "Omitted File Inspection Report", - "norm_label": "conclusion", - "id": "docs_audit_24_omitted_file_inspection_report_conclusion" + "norm_label": "conclusion" }, { "label": "Key Domain Findings from Omitted File Audit", @@ -20678,10 +20648,10 @@ "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": 162, "community_name": "Omitted File Inspection Report", - "norm_label": "key domain findings from omitted file audit", - "id": "docs_audit_24_omitted_file_inspection_report_key_domain_findings_from_omitted_file_audit" + "norm_label": "key domain findings from omitted file audit" }, { "label": "Omitted File Inspection Report", @@ -20689,10 +20659,10 @@ "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": 162, "community_name": "Omitted File Inspection Report", - "norm_label": "omitted file inspection report", - "id": "docs_audit_24_omitted_file_inspection_report_omitted_file_inspection_report" + "norm_label": "omitted file inspection report" }, { "label": "Overview of Omitted File Inspections", @@ -20700,10 +20670,10 @@ "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": 162, "community_name": "Omitted File Inspection Report", - "norm_label": "overview of omitted file inspections", - "id": "docs_audit_24_omitted_file_inspection_report_overview_of_omitted_file_inspections" + "norm_label": "overview of omitted file inspections" }, { "label": "phase3.2-implementation-readiness.md", @@ -20711,10 +20681,10 @@ "source_file": "docs/audit/phase3.2-implementation-readiness.md", "source_location": "L1", "_origin": "ast", + "id": "docs_audit_phase3_2_implementation_readiness", "community": 163, "community_name": "Phase 3.2 / 3.3 \u2014 Implementation Readiness & Architectural Finalization Report", - "norm_label": "phase3.2-implementation-readiness.md", - "id": "docs_audit_phase3_2_implementation_readiness" + "norm_label": "phase3.2-implementation-readiness.md" }, { "label": "1. Executive Summary & Architecture Decisions", @@ -20722,10 +20692,10 @@ "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": 163, "community_name": "Phase 3.2 / 3.3 \u2014 Implementation Readiness & Architectural Finalization Report", - "norm_label": "1. executive summary & architecture decisions", - "id": "docs_audit_phase3_2_implementation_readiness_1_executive_summary_architecture_decisions" + "norm_label": "1. executive summary & architecture decisions" }, { "label": "2. Updated Task Specifications Overview", @@ -20733,10 +20703,10 @@ "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": 163, "community_name": "Phase 3.2 / 3.3 \u2014 Implementation Readiness & Architectural Finalization Report", - "norm_label": "2. updated task specifications overview", - "id": "docs_audit_phase3_2_implementation_readiness_2_updated_task_specifications_overview" + "norm_label": "2. updated task specifications overview" }, { "label": "3. Final Readiness Statement", @@ -20744,10 +20714,10 @@ "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": 163, "community_name": "Phase 3.2 / 3.3 \u2014 Implementation Readiness & Architectural Finalization Report", - "norm_label": "3. final readiness statement", - "id": "docs_audit_phase3_2_implementation_readiness_3_final_readiness_statement" + "norm_label": "3. final readiness statement" }, { "label": "Phase 3.2 / 3.3 \u2014 Implementation Readiness & Architectural Finalization Report", @@ -20755,10 +20725,10 @@ "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": 163, "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", - "id": "docs_audit_phase3_2_implementation_readiness_phase_3_2_3_3_implementation_readiness_architectural_finalization_report" + "norm_label": "phase 3.2 / 3.3 \u2014 implementation readiness & architectural finalization report" }, { "label": "phase3-traceability-matrix.md", @@ -20766,10 +20736,10 @@ "source_file": "docs/audit/phase3-traceability-matrix.md", "source_location": "L1", "_origin": "ast", + "id": "docs_audit_phase3_traceability_matrix", "community": 164, "community_name": "Phase 3 Audit Traceability Matrix", - "norm_label": "phase3-traceability-matrix.md", - "id": "docs_audit_phase3_traceability_matrix" + "norm_label": "phase3-traceability-matrix.md" }, { "label": "Complete Finding-to-Task Traceability Matrix", @@ -20777,10 +20747,10 @@ "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": 164, "community_name": "Phase 3 Audit Traceability Matrix", - "norm_label": "complete finding-to-task traceability matrix", - "id": "docs_audit_phase3_traceability_matrix_complete_finding_to_task_traceability_matrix" + "norm_label": "complete finding-to-task traceability matrix" }, { "label": "Finding Disposition & Accounting Verification", @@ -20788,10 +20758,10 @@ "source_file": "docs/audit/phase3-traceability-matrix.md", "source_location": "L40", "_origin": "ast", + "id": "docs_audit_phase3_traceability_matrix_finding_disposition_accounting_verification", "community": 164, "community_name": "Phase 3 Audit Traceability Matrix", - "norm_label": "finding disposition & accounting verification", - "id": "docs_audit_phase3_traceability_matrix_finding_disposition_accounting_verification" + "norm_label": "finding disposition & accounting verification" }, { "label": "Phase 3 Audit Traceability Matrix", @@ -20799,10 +20769,10 @@ "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": 164, "community_name": "Phase 3 Audit Traceability Matrix", - "norm_label": "phase 3 audit traceability matrix", - "id": "docs_audit_phase3_traceability_matrix_phase_3_audit_traceability_matrix" + "norm_label": "phase 3 audit traceability matrix" }, { "label": "Special Task Traceability (Non-Finding Tasks)", @@ -20810,10 +20780,10 @@ "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": 164, "community_name": "Phase 3 Audit Traceability Matrix", - "norm_label": "special task traceability (non-finding tasks)", - "id": "docs_audit_phase3_traceability_matrix_special_task_traceability_non_finding_tasks" + "norm_label": "special task traceability (non-finding tasks)" }, { "label": "rebuild_honest_ledger.js", @@ -20821,10 +20791,10 @@ "source_file": "docs/audit/rebuild_honest_ledger.js", "source_location": "L1", "_origin": "ast", + "id": "docs_audit_rebuild_honest_ledger", "community": 165, "community_name": "rebuild_honest_ledger.js", - "norm_label": "rebuild_honest_ledger.js", - "id": "docs_audit_rebuild_honest_ledger" + "norm_label": "rebuild_honest_ledger.js" }, { "label": "evidenceList", @@ -20832,10 +20802,10 @@ "source_file": "docs/audit/rebuild_honest_ledger.js", "source_location": "L4", "_origin": "ast", + "id": "docs_audit_rebuild_honest_ledger_evidencelist", "community": 165, "community_name": "rebuild_honest_ledger.js", - "norm_label": "evidencelist", - "id": "docs_audit_rebuild_honest_ledger_evidencelist" + "norm_label": "evidencelist" }, { "label": "ledger", @@ -20843,10 +20813,10 @@ "source_file": "docs/audit/rebuild_honest_ledger.js", "source_location": "L9", "_origin": "ast", + "id": "docs_audit_rebuild_honest_ledger_ledger", "community": 165, "community_name": "rebuild_honest_ledger.js", - "norm_label": "ledger", - "id": "docs_audit_rebuild_honest_ledger_ledger" + "norm_label": "ledger" }, { "label": "mandatoryMap", @@ -20854,10 +20824,10 @@ "source_file": "docs/audit/rebuild_honest_ledger.js", "source_location": "L6", "_origin": "ast", + "id": "docs_audit_rebuild_honest_ledger_mandatorymap", "community": 165, "community_name": "rebuild_honest_ledger.js", - "norm_label": "mandatorymap", - "id": "docs_audit_rebuild_honest_ledger_mandatorymap" + "norm_label": "mandatorymap" }, { "label": "mandatoryScope", @@ -20865,10 +20835,10 @@ "source_file": "docs/audit/rebuild_honest_ledger.js", "source_location": "L3", "_origin": "ast", + "id": "docs_audit_rebuild_honest_ledger_mandatoryscope", "community": 165, "community_name": "rebuild_honest_ledger.js", - "norm_label": "mandatoryscope", - "id": "docs_audit_rebuild_honest_ledger_mandatoryscope" + "norm_label": "mandatoryscope" }, { "label": "validate_evidence_grade.js", @@ -20876,10 +20846,10 @@ "source_file": "docs/audit/validate_evidence_grade.js", "source_location": "L1", "_origin": "ast", + "id": "docs_audit_validate_evidence_grade", "community": 166, "community_name": "validate_evidence_grade.js", - "norm_label": "validate_evidence_grade.js", - "id": "docs_audit_validate_evidence_grade" + "norm_label": "validate_evidence_grade.js" }, { "label": "activeFiles", @@ -20887,10 +20857,10 @@ "source_file": "docs/audit/validate_evidence_grade.js", "source_location": "L58", "_origin": "ast", + "id": "docs_audit_validate_evidence_grade_activefiles", "community": 166, "community_name": "validate_evidence_grade.js", - "norm_label": "activefiles", - "id": "docs_audit_validate_evidence_grade_activefiles" + "norm_label": "activefiles" }, { "label": "errors", @@ -20898,10 +20868,10 @@ "source_file": "docs/audit/validate_evidence_grade.js", "source_location": "L4", "_origin": "ast", + "id": "docs_audit_validate_evidence_grade_errors", "community": 166, "community_name": "validate_evidence_grade.js", - "norm_label": "errors", - "id": "docs_audit_validate_evidence_grade_errors" + "norm_label": "errors" }, { "label": "validationOutput", @@ -20909,10 +20879,10 @@ "source_file": "docs/audit/validate_evidence_grade.js", "source_location": "L101", "_origin": "ast", + "id": "docs_audit_validate_evidence_grade_validationoutput", "community": 166, "community_name": "validate_evidence_grade.js", - "norm_label": "validationoutput", - "id": "docs_audit_validate_evidence_grade_validationoutput" + "norm_label": "validationoutput" }, { "label": "warnings", @@ -20920,10 +20890,10 @@ "source_file": "docs/audit/validate_evidence_grade.js", "source_location": "L5", "_origin": "ast", + "id": "docs_audit_validate_evidence_grade_warnings", "community": 166, "community_name": "validate_evidence_grade.js", - "norm_label": "warnings", - "id": "docs_audit_validate_evidence_grade_warnings" + "norm_label": "warnings" }, { "label": "supertest", @@ -20931,10 +20901,10 @@ "source_file": "backend/package.json", "source_location": "L68", "_origin": "ast", + "id": "backend_package_devdependencies_supertest", "community": 167, "community_name": "supertest", - "norm_label": "supertest", - "id": "backend_package_devdependencies_supertest" + "norm_label": "supertest" }, { "label": "supertest", @@ -20942,10 +20912,10 @@ "source_file": "backend/package.json", "source_location": "L68", "_origin": "ast", + "id": "supertest", "community": 167, "community_name": "supertest", - "norm_label": "supertest", - "id": "supertest" + "norm_label": "supertest" }, { "label": "blog/[slug]/page.tsx", @@ -20953,10 +20923,10 @@ "source_file": "frontend/application/app/blog/[slug]/page.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_app_blog_slug_page", "community": 168, "community_name": "blog/[slug]/page.tsx", - "norm_label": "blog/[slug]/page.tsx", - "id": "frontend_application_app_blog_slug_page" + "norm_label": "blog/[slug]/page.tsx" }, { "label": "revalidate", @@ -20964,10 +20934,10 @@ "source_file": "frontend/application/app/blog/[slug]/page.tsx", "source_location": "L30", "_origin": "ast", + "id": "frontend_application_app_blog_slug_page_revalidate", "community": 168, "community_name": "blog/[slug]/page.tsx", - "norm_label": "revalidate", - "id": "frontend_application_app_blog_slug_page_revalidate" + "norm_label": "revalidate" }, { "label": "api_contract.md", @@ -20975,10 +20945,10 @@ "source_file": ".ai_agency/specs/api_contract.md", "source_location": "L1", "_origin": "ast", + "id": "ai_agency_specs_api_contract", "community": 169, "community_name": "API Contract Specification", - "norm_label": "api_contract.md", - "id": "ai_agency_specs_api_contract" + "norm_label": "api_contract.md" }, { "label": "1. OpenAPI 3.0 (Swagger) Specification", @@ -20986,10 +20956,10 @@ "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": 169, "community_name": "API Contract Specification", - "norm_label": "1. openapi 3.0 (swagger) specification", - "id": "ai_agency_specs_api_contract_1_openapi_3_0_swagger_specification" + "norm_label": "1. openapi 3.0 (swagger) specification" }, { "label": "2. Endpoint Definitions & Data Types", @@ -20997,10 +20967,10 @@ "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": 169, "community_name": "API Contract Specification", - "norm_label": "2. endpoint definitions & data types", - "id": "ai_agency_specs_api_contract_2_endpoint_definitions_data_types" + "norm_label": "2. endpoint definitions & data types" }, { "label": "API Contract Specification", @@ -21008,10 +20978,10 @@ "source_file": ".ai_agency/specs/api_contract.md", "source_location": "L1", "_origin": "ast", + "id": "ai_agency_specs_api_contract_api_contract_specification", "community": 169, "community_name": "API Contract Specification", - "norm_label": "api contract specification", - "id": "ai_agency_specs_api_contract_api_contract_specification" + "norm_label": "api contract specification" }, { "label": "create-video.dto.ts", @@ -21019,10 +20989,10 @@ "source_file": "backend/src/videos/dto/create-video.dto.ts", "source_location": "L1", "_origin": "ast", + "id": "backend_src_videos_dto_create_video_dto", "community": 17, "community_name": "CreateVideoDto", - "norm_label": "create-video.dto.ts", - "id": "backend_src_videos_dto_create_video_dto" + "norm_label": "create-video.dto.ts" }, { "label": "ApiProperty", @@ -21030,10 +21000,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_videos_dto_create_video_dto_ts_apiproperty", "community": 17, "community_name": "CreateVideoDto", - "norm_label": "apiproperty", - "id": "backend_src_videos_dto_create_video_dto_ts_apiproperty" + "norm_label": "apiproperty" }, { "label": "ApiPropertyOptional", @@ -21041,10 +21011,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_videos_dto_create_video_dto_ts_apipropertyoptional", "community": 17, "community_name": "CreateVideoDto", - "norm_label": "apipropertyoptional", - "id": "backend_src_videos_dto_create_video_dto_ts_apipropertyoptional" + "norm_label": "apipropertyoptional" }, { "label": "IsBoolean", @@ -21052,10 +21022,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_videos_dto_create_video_dto_ts_isboolean", "community": 17, "community_name": "CreateVideoDto", - "norm_label": "isboolean", - "id": "backend_src_videos_dto_create_video_dto_ts_isboolean" + "norm_label": "isboolean" }, { "label": "IsNotEmpty", @@ -21063,10 +21033,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_videos_dto_create_video_dto_ts_isnotempty", "community": 17, "community_name": "CreateVideoDto", - "norm_label": "isnotempty", - "id": "backend_src_videos_dto_create_video_dto_ts_isnotempty" + "norm_label": "isnotempty" }, { "label": "IsOptional", @@ -21074,10 +21044,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_videos_dto_create_video_dto_ts_isoptional", "community": 17, "community_name": "CreateVideoDto", - "norm_label": "isoptional", - "id": "backend_src_videos_dto_create_video_dto_ts_isoptional" + "norm_label": "isoptional" }, { "label": "IsString", @@ -21085,10 +21055,65 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_videos_dto_create_video_dto_ts_isstring", "community": 17, "community_name": "CreateVideoDto", - "norm_label": "isstring", - "id": "backend_src_videos_dto_create_video_dto_ts_isstring" + "norm_label": "isstring" + }, + { + "label": "get-videos-query.dto.ts", + "file_type": "code", + "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": 17, + "community_name": "CreateVideoDto", + "norm_label": "get-videos-query.dto.ts" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_videos_dto_get_videos_query_dto_ts_apipropertyoptional", + "community": 17, + "community_name": "CreateVideoDto", + "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": 17, + "community_name": "CreateVideoDto", + "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": 17, + "community_name": "CreateVideoDto", + "norm_label": "isoptional" + }, + { + "label": "videos.controller.ts", + "file_type": "code", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_videos_videos_controller", + "community": 17, + "community_name": "CreateVideoDto", + "norm_label": "videos.controller.ts" }, { "label": "ApiBearerAuth", @@ -21096,10 +21121,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_videos_videos_controller_ts_apibearerauth", "community": 17, "community_name": "CreateVideoDto", - "norm_label": "apibearerauth", - "id": "backend_src_videos_videos_controller_ts_apibearerauth" + "norm_label": "apibearerauth" }, { "label": "ApiOperation", @@ -21107,10 +21132,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_videos_videos_controller_ts_apioperation", "community": 17, "community_name": "CreateVideoDto", - "norm_label": "apioperation", - "id": "backend_src_videos_videos_controller_ts_apioperation" + "norm_label": "apioperation" }, { "label": "ApiQuery", @@ -21118,10 +21143,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_videos_videos_controller_ts_apiquery", "community": 17, "community_name": "CreateVideoDto", - "norm_label": "apiquery", - "id": "backend_src_videos_videos_controller_ts_apiquery" + "norm_label": "apiquery" }, { "label": "ApiTags", @@ -21129,10 +21154,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_videos_videos_controller_ts_apitags", "community": 17, "community_name": "CreateVideoDto", - "norm_label": "apitags", - "id": "backend_src_videos_videos_controller_ts_apitags" + "norm_label": "apitags" }, { "label": "Body", @@ -21140,10 +21165,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_videos_videos_controller_ts_body", "community": 17, "community_name": "CreateVideoDto", - "norm_label": "body", - "id": "backend_src_videos_videos_controller_ts_body" + "norm_label": "body" }, { "label": "Controller", @@ -21151,10 +21176,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_videos_videos_controller_ts_controller", "community": 17, "community_name": "CreateVideoDto", - "norm_label": "controller", - "id": "backend_src_videos_videos_controller_ts_controller" + "norm_label": "controller" }, { "label": "Delete", @@ -21162,10 +21187,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_videos_videos_controller_ts_delete", "community": 17, "community_name": "CreateVideoDto", - "norm_label": "delete", - "id": "backend_src_videos_videos_controller_ts_delete" + "norm_label": "delete" }, { "label": "Get", @@ -21173,10 +21198,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_videos_videos_controller_ts_get", "community": 17, "community_name": "CreateVideoDto", - "norm_label": "get", - "id": "backend_src_videos_videos_controller_ts_get" + "norm_label": "get" }, { "label": "Param", @@ -21184,10 +21209,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_videos_videos_controller_ts_param", "community": 17, "community_name": "CreateVideoDto", - "norm_label": "param", - "id": "backend_src_videos_videos_controller_ts_param" + "norm_label": "param" }, { "label": "Post", @@ -21195,10 +21220,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_videos_videos_controller_ts_post", "community": 17, "community_name": "CreateVideoDto", - "norm_label": "post", - "id": "backend_src_videos_videos_controller_ts_post" + "norm_label": "post" }, { "label": "Put", @@ -21206,10 +21231,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_videos_videos_controller_ts_put", "community": 17, "community_name": "CreateVideoDto", - "norm_label": "put", - "id": "backend_src_videos_videos_controller_ts_put" + "norm_label": "put" }, { "label": "Query", @@ -21217,10 +21242,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_videos_videos_controller_ts_query", "community": 17, "community_name": "CreateVideoDto", - "norm_label": "query", - "id": "backend_src_videos_videos_controller_ts_query" + "norm_label": "query" }, { "label": "UseGuards", @@ -21228,835 +21253,21 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_videos_videos_controller_ts_useguards", "community": 17, "community_name": "CreateVideoDto", - "norm_label": "useguards", - "id": "backend_src_videos_videos_controller_ts_useguards" + "norm_label": "useguards" }, { - "label": "Injectable", + "label": "videos.module.ts", "file_type": "code", - "source_file": "", - "source_location": "", + "source_file": "backend/src/videos/videos.module.ts", + "source_location": "L1", "_origin": "ast", + "id": "backend_src_videos_videos_module", "community": 17, "community_name": "CreateVideoDto", - "norm_label": "injectable", - "id": "backend_src_videos_videos_service_ts_injectable" - }, - { - "label": "backend_review.md", - "file_type": "document", - "source_file": ".ai_agency/specs/reviews/backend_review.md", - "source_location": "L1", - "_origin": "ast", - "community": 170, - "community_name": "\u2699\ufe0f Backend Technical Review (05_dev_backend)", - "norm_label": "backend_review.md", - "id": "ai_agency_specs_reviews_backend_review" - }, - { - "label": "Architectural Overview", - "file_type": "document", - "source_file": ".ai_agency/specs/reviews/backend_review.md", - "source_location": "L3", - "_origin": "ast", - "community": 170, - "community_name": "\u2699\ufe0f Backend Technical Review (05_dev_backend)", - "norm_label": "architectural overview", - "id": "ai_agency_specs_reviews_backend_review_architectural_overview" - }, - { - "label": "\u2699\ufe0f Backend Technical Review (05_dev_backend)", - "file_type": "document", - "source_file": ".ai_agency/specs/reviews/backend_review.md", - "source_location": "L1", - "_origin": "ast", - "community": 170, - "community_name": "\u2699\ufe0f Backend Technical Review (05_dev_backend)", - "norm_label": "\u2699\ufe0f backend technical review (05_dev_backend)", - "id": "ai_agency_specs_reviews_backend_review_backend_technical_review_05_dev_backend" - }, - { - "label": "Critical Review Findings & Required Enhancements", - "file_type": "document", - "source_file": ".ai_agency/specs/reviews/backend_review.md", - "source_location": "L8", - "_origin": "ast", - "community": 170, - "community_name": "\u2699\ufe0f Backend Technical Review (05_dev_backend)", - "norm_label": "critical review findings & required enhancements", - "id": "ai_agency_specs_reviews_backend_review_critical_review_findings_required_enhancements" - }, - { - "label": "frontend_review.md", - "file_type": "document", - "source_file": ".ai_agency/specs/reviews/frontend_review.md", - "source_location": "L1", - "_origin": "ast", - "community": 171, - "community_name": "\ud83c\udfa8 Frontend & Admin Panel Technical Review (06_dev_frontend)", - "norm_label": "frontend_review.md", - "id": "ai_agency_specs_reviews_frontend_review" - }, - { - "label": "Architectural Overview", - "file_type": "document", - "source_file": ".ai_agency/specs/reviews/frontend_review.md", - "source_location": "L3", - "_origin": "ast", - "community": 171, - "community_name": "\ud83c\udfa8 Frontend & Admin Panel Technical Review (06_dev_frontend)", - "norm_label": "architectural overview", - "id": "ai_agency_specs_reviews_frontend_review_architectural_overview" - }, - { - "label": "Critical Review Findings & Required Enhancements", - "file_type": "document", - "source_file": ".ai_agency/specs/reviews/frontend_review.md", - "source_location": "L7", - "_origin": "ast", - "community": 171, - "community_name": "\ud83c\udfa8 Frontend & Admin Panel Technical Review (06_dev_frontend)", - "norm_label": "critical review findings & required enhancements", - "id": "ai_agency_specs_reviews_frontend_review_critical_review_findings_required_enhancements" - }, - { - "label": "\ud83c\udfa8 Frontend & Admin Panel Technical Review (06_dev_frontend)", - "file_type": "document", - "source_file": ".ai_agency/specs/reviews/frontend_review.md", - "source_location": "L1", - "_origin": "ast", - "community": 171, - "community_name": "\ud83c\udfa8 Frontend & Admin Panel Technical Review (06_dev_frontend)", - "norm_label": "\ud83c\udfa8 frontend & admin panel technical review (06_dev_frontend)", - "id": "ai_agency_specs_reviews_frontend_review_frontend_admin_panel_technical_review_06_dev_frontend" - }, - { - "label": "seo_content_review.md", - "file_type": "document", - "source_file": ".ai_agency/specs/reviews/seo_content_review.md", - "source_location": "L1", - "_origin": "ast", - "community": 172, - "community_name": "\ud83d\ude80 SEO & Content Strategy Review (12_seo_content)", - "norm_label": "seo_content_review.md", - "id": "ai_agency_specs_reviews_seo_content_review" - }, - { - "label": "Overview & Content Foundation", - "file_type": "document", - "source_file": ".ai_agency/specs/reviews/seo_content_review.md", - "source_location": "L3", - "_origin": "ast", - "community": 172, - "community_name": "\ud83d\ude80 SEO & Content Strategy Review (12_seo_content)", - "norm_label": "overview & content foundation", - "id": "ai_agency_specs_reviews_seo_content_review_overview_content_foundation" - }, - { - "label": "SEO & Content Requirements", - "file_type": "document", - "source_file": ".ai_agency/specs/reviews/seo_content_review.md", - "source_location": "L6", - "_origin": "ast", - "community": 172, - "community_name": "\ud83d\ude80 SEO & Content Strategy Review (12_seo_content)", - "norm_label": "seo & content requirements", - "id": "ai_agency_specs_reviews_seo_content_review_seo_content_requirements" - }, - { - "label": "\ud83d\ude80 SEO & Content Strategy Review (12_seo_content)", - "file_type": "document", - "source_file": ".ai_agency/specs/reviews/seo_content_review.md", - "source_location": "L1", - "_origin": "ast", - "community": 172, - "community_name": "\ud83d\ude80 SEO & Content Strategy Review (12_seo_content)", - "norm_label": "\ud83d\ude80 seo & content strategy review (12_seo_content)", - "id": "ai_agency_specs_reviews_seo_content_review_seo_content_strategy_review_12_seo_content" - }, - { - "label": "@types/node", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L57", - "_origin": "ast", - "community": 173, - "community_name": "@types/node", - "norm_label": "@types/node", - "id": "backend_package_devdependencies_types_node" - }, - { - "label": "@types/node", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L57", - "_origin": "ast", - "community": 173, - "community_name": "@types/node", - "norm_label": "@types/node", - "id": "backend_package_json_types_node" - }, - { - "label": "seed-ui-texts.ts", - "file_type": "code", - "source_file": "backend/prisma/seed-ui-texts.ts", - "source_location": "L1", - "_origin": "ast", - "community": 175, - "community_name": "seed-ui-texts.ts", - "norm_label": "seed-ui-texts.ts", - "id": "backend_prisma_seed_ui_texts" - }, - { - "label": "prisma", - "file_type": "code", - "source_file": "backend/prisma/seed-ui-texts.ts", - "source_location": "L3", - "_origin": "ast", - "community": 175, - "community_name": "seed-ui-texts.ts", - "norm_label": "prisma", - "id": "backend_prisma_seed_ui_texts_prisma" - }, - { - "label": "UI_TEXTS", - "file_type": "code", - "source_file": "backend/prisma/seed-ui-texts.ts", - "source_location": "L5", - "_origin": "ast", - "community": 175, - "community_name": "seed-ui-texts.ts", - "norm_label": "ui_texts", - "id": "backend_prisma_seed_ui_texts_ui_texts" - }, - { - "label": "seed-wiki.ts", - "file_type": "code", - "source_file": "backend/prisma/seed-wiki.ts", - "source_location": "L1", - "_origin": "ast", - "community": 176, - "community_name": "seed-wiki.ts", - "norm_label": "seed-wiki.ts", - "id": "backend_prisma_seed_wiki" - }, - { - "label": "CANONICAL_WIKI_TERMS", - "file_type": "code", - "source_file": "backend/prisma/seed-wiki.ts", - "source_location": "L7", - "_origin": "ast", - "community": 176, - "community_name": "seed-wiki.ts", - "norm_label": "canonical_wiki_terms", - "id": "backend_prisma_seed_wiki_canonical_wiki_terms" - }, - { - "label": "prisma", - "file_type": "code", - "source_file": "backend/prisma/seed-wiki.ts", - "source_location": "L5", - "_origin": "ast", - "community": 176, - "community_name": "seed-wiki.ts", - "norm_label": "prisma", - "id": "backend_prisma_seed_wiki_prisma" - }, - { - "label": "create-blog.dto.ts", - "file_type": "code", - "source_file": "backend/src/blogs/dto/create-blog.dto.ts", - "source_location": "L1", - "_origin": "ast", - "community": 177, - "community_name": "update-blog.dto.ts", - "norm_label": "create-blog.dto.ts", - "id": "backend_src_blogs_dto_create_blog_dto" - }, - { - "label": "update-blog.dto.ts", - "file_type": "code", - "source_file": "backend/src/blogs/dto/update-blog.dto.ts", - "source_location": "L1", - "_origin": "ast", - "community": 177, - "community_name": "update-blog.dto.ts", - "norm_label": "update-blog.dto.ts", - "id": "backend_src_blogs_dto_update_blog_dto" - }, - { - "label": "create-home.dto.ts", - "file_type": "code", - "source_file": "backend/src/home/dto/create-home.dto.ts", - "source_location": "L1", - "_origin": "ast", - "community": 178, - "community_name": "update-home.dto.ts", - "norm_label": "create-home.dto.ts", - "id": "backend_src_home_dto_create_home_dto" - }, - { - "label": "update-home.dto.ts", - "file_type": "code", - "source_file": "backend/src/home/dto/update-home.dto.ts", - "source_location": "L1", - "_origin": "ast", - "community": 178, - "community_name": "update-home.dto.ts", - "norm_label": "update-home.dto.ts", - "id": "backend_src_home_dto_update_home_dto" - }, - { - "label": "create-wiki.dto.ts", - "file_type": "code", - "source_file": "backend/src/wiki/dto/create-wiki.dto.ts", - "source_location": "L1", - "_origin": "ast", - "community": 179, - "community_name": "update-wiki.dto.ts", - "norm_label": "create-wiki.dto.ts", - "id": "backend_src_wiki_dto_create_wiki_dto" - }, - { - "label": "update-wiki.dto.ts", - "file_type": "code", - "source_file": "backend/src/wiki/dto/update-wiki.dto.ts", - "source_location": "L1", - "_origin": "ast", - "community": 179, - "community_name": "update-wiki.dto.ts", - "norm_label": "update-wiki.dto.ts", - "id": "backend_src_wiki_dto_update_wiki_dto" - }, - { - "label": "ProtectedRoute.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 18, - "community_name": "src/services/api.ts", - "norm_label": "protectedroute.tsx", - "id": "frontend_admin_panel_src_components_protectedroute" - }, - { - "label": "Topbar.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Topbar.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 18, - "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": 18, - "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": 18, - "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": 18, - "community_name": "src/services/api.ts", - "norm_label": "login.tsx", - "id": "frontend_admin_panel_src_pages_login" - }, - { - "label": "SmartAdvisorManager.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 18, - "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": 18, - "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": 18, - "community_name": "src/services/api.ts", - "norm_label": "b2bmanager", - "id": "frontend_admin_panel_src_routes_adminroutes_b2bmanager" - }, - { - "label": "SmartAdvisorManager", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L28", - "_origin": "ast", - "community": 18, - "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": "L35", - "_origin": "ast", - "community": 18, - "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": 18, - "community_name": "src/services/api.ts", - "norm_label": "src/services/api.ts", - "id": "frontend_admin_panel_src_services_api" - }, - { - "label": "failedQueue", - "file_type": "code", - "source_file": "frontend/admin-panel/src/services/api.ts", - "source_location": "L32", - "_origin": "ast", - "community": 18, - "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": 18, - "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": 18, - "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": 18, - "community_name": "src/services/api.ts", - "norm_label": "admin.ts", - "id": "frontend_admin_panel_src_types_admin" - }, - { - "label": "add-watch.md", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/add-watch.md", - "source_location": "L1", - "_origin": "ast", - "community": 180, - "community_name": "graphify reference: add a URL and watch a folder", - "norm_label": "add-watch.md", - "id": "claude_skills_graphify_references_add_watch" - }, - { - "label": "For /graphify add", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/add-watch.md", - "source_location": "L5", - "_origin": "ast", - "community": 180, - "community_name": "graphify reference: add a URL and watch a folder", - "norm_label": "for /graphify add", - "id": "claude_skills_graphify_references_add_watch_for_graphify_add" - }, - { - "label": "For --watch", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/add-watch.md", - "source_location": "L39", - "_origin": "ast", - "community": 180, - "community_name": "graphify reference: add a URL and watch a folder", - "norm_label": "for --watch", - "id": "claude_skills_graphify_references_add_watch_for_watch" - }, - { - "label": "graphify reference: add a URL and watch a folder", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/add-watch.md", - "source_location": "L1", - "_origin": "ast", - "community": 180, - "community_name": "graphify reference: add a URL and watch a folder", - "norm_label": "graphify reference: add a url and watch a folder", - "id": "claude_skills_graphify_references_add_watch_graphify_reference_add_a_url_and_watch_a_folder" - }, - { - "label": "hooks.md", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/hooks.md", - "source_location": "L1", - "_origin": "ast", - "community": 181, - "community_name": "graphify reference: commit hook and native CLAUDE.md integration", - "norm_label": "hooks.md", - "id": "claude_skills_graphify_references_hooks" - }, - { - "label": "For git commit hook", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/hooks.md", - "source_location": "L5", - "_origin": "ast", - "community": 181, - "community_name": "graphify reference: commit hook and native CLAUDE.md integration", - "norm_label": "for git commit hook", - "id": "claude_skills_graphify_references_hooks_for_git_commit_hook" - }, - { - "label": "For native CLAUDE.md integration", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/hooks.md", - "source_location": "L21", - "_origin": "ast", - "community": 181, - "community_name": "graphify reference: commit hook and native CLAUDE.md integration", - "norm_label": "for native claude.md integration", - "id": "claude_skills_graphify_references_hooks_for_native_claude_md_integration" - }, - { - "label": "graphify reference: commit hook and native CLAUDE.md integration", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/hooks.md", - "source_location": "L1", - "_origin": "ast", - "community": 181, - "community_name": "graphify reference: commit hook and native CLAUDE.md integration", - "norm_label": "graphify reference: commit hook and native claude.md integration", - "id": "claude_skills_graphify_references_hooks_graphify_reference_commit_hook_and_native_claude_md_integration" - }, - { - "label": "update.md", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/update.md", - "source_location": "L1", - "_origin": "ast", - "community": 182, - "community_name": "graphify reference: incremental update and cluster-only", - "norm_label": "update.md", - "id": "claude_skills_graphify_references_update" - }, - { - "label": "For --cluster-only", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/update.md", - "source_location": "L202", - "_origin": "ast", - "community": 182, - "community_name": "graphify reference: incremental update and cluster-only", - "norm_label": "for --cluster-only", - "id": "claude_skills_graphify_references_update_for_cluster_only" - }, - { - "label": "For --update (incremental re-extraction)", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/update.md", - "source_location": "L5", - "_origin": "ast", - "community": 182, - "community_name": "graphify reference: incremental update and cluster-only", - "norm_label": "for --update (incremental re-extraction)", - "id": "claude_skills_graphify_references_update_for_update_incremental_re_extraction" - }, - { - "label": "graphify reference: incremental update and cluster-only", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/update.md", - "source_location": "L1", - "_origin": "ast", - "community": 182, - "community_name": "graphify reference: incremental update and cluster-only", - "norm_label": "graphify reference: incremental update and cluster-only", - "id": "claude_skills_graphify_references_update_graphify_reference_incremental_update_and_cluster_only" - }, - { - "label": "19-finding-verification-report.md", - "file_type": "document", - "source_file": "docs/audit/19-finding-verification-report.md", - "source_location": "L1", - "_origin": "ast", - "community": 183, - "community_name": "Raw Finding Verification & Disposition Report", - "norm_label": "19-finding-verification-report.md", - "id": "docs_audit_19_finding_verification_report" - }, - { - "label": "1. Executive Summary & Verification Reconciliation Table", - "file_type": "document", - "source_file": "docs/audit/19-finding-verification-report.md", - "source_location": "L3", - "_origin": "ast", - "community": 183, - "community_name": "Raw Finding Verification & Disposition Report", - "norm_label": "1. executive summary & verification reconciliation table", - "id": "docs_audit_19_finding_verification_report_1_executive_summary_verification_reconciliation_table" - }, - { - "label": "2. Newly Discovered & Split Findings (Canonical IDs)", - "file_type": "document", - "source_file": "docs/audit/19-finding-verification-report.md", - "source_location": "L22", - "_origin": "ast", - "community": 183, - "community_name": "Raw Finding Verification & Disposition Report", - "norm_label": "2. newly discovered & split findings (canonical ids)", - "id": "docs_audit_19_finding_verification_report_2_newly_discovered_split_findings_canonical_ids" - }, - { - "label": "Raw Finding Verification & Disposition Report", - "file_type": "document", - "source_file": "docs/audit/19-finding-verification-report.md", - "source_location": "L1", - "_origin": "ast", - "community": 183, - "community_name": "Raw Finding Verification & Disposition Report", - "norm_label": "raw finding verification & disposition report", - "id": "docs_audit_19_finding_verification_report_raw_finding_verification_disposition_report" - }, - { - "label": "admin-panel/README.md", - "file_type": "document", - "source_file": "frontend/admin-panel/README.md", - "source_location": "L1", - "_origin": "ast", - "community": 184, - "community_name": "React + TypeScript + Vite", - "norm_label": "admin-panel/readme.md", - "id": "frontend_admin_panel_readme" - }, - { - "label": "Expanding the ESLint configuration", - "file_type": "document", - "source_file": "frontend/admin-panel/README.md", - "source_location": "L14", - "_origin": "ast", - "community": 184, - "community_name": "React + TypeScript + Vite", - "norm_label": "expanding the eslint configuration", - "id": "frontend_admin_panel_readme_expanding_the_eslint_configuration" - }, - { - "label": "React Compiler", - "file_type": "document", - "source_file": "frontend/admin-panel/README.md", - "source_location": "L10", - "_origin": "ast", - "community": 184, - "community_name": "React + TypeScript + Vite", - "norm_label": "react compiler", - "id": "frontend_admin_panel_readme_react_compiler" - }, - { - "label": "React + TypeScript + Vite", - "file_type": "document", - "source_file": "frontend/admin-panel/README.md", - "source_location": "L1", - "_origin": "ast", - "community": 184, - "community_name": "React + TypeScript + Vite", - "norm_label": "react + typescript + vite", - "id": "frontend_admin_panel_readme_react_typescript_vite" - }, - { - "label": "Select.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Select.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 185, - "community_name": "Select.tsx", - "norm_label": "select.tsx", - "id": "frontend_admin_panel_src_components_ui_select" - }, - { - "label": "Select", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Select.tsx", - "source_location": "L16", - "_origin": "ast", - "community": 185, - "community_name": "Select.tsx", - "norm_label": "select", - "id": "frontend_admin_panel_src_components_ui_select_select" - }, - { - "label": "wiki/[slug]/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/wiki/[slug]/page.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 186, - "community_name": "wiki/[slug]/page.tsx", - "norm_label": "wiki/[slug]/page.tsx", - "id": "frontend_application_app_wiki_slug_page" - }, - { - "label": "ts-node", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L71", - "_origin": "ast", - "community": 187, - "community_name": "ts-node", - "norm_label": "ts-node", - "id": "backend_package_devdependencies_ts_node" - }, - { - "label": "ts-node", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L71", - "_origin": "ast", - "community": 187, - "community_name": "ts-node", - "norm_label": "ts-node", - "id": "ts_node" - }, - { - "label": "application/README.md", - "file_type": "document", - "source_file": "frontend/application/README.md", - "source_location": "L1", - "_origin": "ast", - "community": 188, - "community_name": "application/README.md", - "norm_label": "application/readme.md", - "id": "frontend_application_readme" - }, - { - "label": "Deploy on Vercel", - "file_type": "document", - "source_file": "frontend/application/README.md", - "source_location": "L32", - "_origin": "ast", - "community": 188, - "community_name": "application/README.md", - "norm_label": "deploy on vercel", - "id": "frontend_application_readme_deploy_on_vercel" - }, - { - "label": "Getting Started", - "file_type": "document", - "source_file": "frontend/application/README.md", - "source_location": "L3", - "_origin": "ast", - "community": 188, - "community_name": "application/README.md", - "norm_label": "getting started", - "id": "frontend_application_readme_getting_started" - }, - { - "label": "Learn More", - "file_type": "document", - "source_file": "frontend/application/README.md", - "source_location": "L23", - "_origin": "ast", - "community": 188, - "community_name": "application/README.md", - "norm_label": "learn more", - "id": "frontend_application_readme_learn_more" - }, - { - "label": "@types/express", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L53", - "_origin": "ast", - "community": 189, - "community_name": "@types/express", - "norm_label": "@types/express", - "id": "backend_package_devdependencies_types_express" - }, - { - "label": "@types/express", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L53", - "_origin": "ast", - "community": 189, - "community_name": "@types/express", - "norm_label": "@types/express", - "id": "types_express" - }, - { - "label": "b2b.controller.ts", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 19, - "community_name": "B2BService", - "norm_label": "b2b.controller.ts", - "id": "backend_src_b2b_b2b_controller" - }, - { - "label": "b2b.module.ts", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.module.ts", - "source_location": "L1", - "_origin": "ast", - "community": 19, - "community_name": "B2BService", - "norm_label": "b2b.module.ts", - "id": "backend_src_b2b_b2b_module" + "norm_label": "videos.module.ts" }, { "label": "Module", @@ -22064,21 +21275,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 19, - "community_name": "B2BService", - "norm_label": "module", - "id": "backend_src_b2b_b2b_module_ts_module" - }, - { - "label": "b2b.service.ts", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L1", - "_origin": "ast", - "community": 19, - "community_name": "B2BService", - "norm_label": "b2b.service.ts", - "id": "backend_src_b2b_b2b_service" + "id": "backend_src_videos_videos_module_ts_module", + "community": 17, + "community_name": "CreateVideoDto", + "norm_label": "module" }, { "label": "Injectable", @@ -22086,10 +21286,1022 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_videos_videos_service_ts_injectable", + "community": 17, + "community_name": "CreateVideoDto", + "norm_label": "injectable" + }, + { + "label": "Transform", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "transform", + "community": 17, + "community_name": "CreateVideoDto", + "norm_label": "transform" + }, + { + "label": "backend_review.md", + "file_type": "document", + "source_file": ".ai_agency/specs/reviews/backend_review.md", + "source_location": "L1", + "_origin": "ast", + "id": "ai_agency_specs_reviews_backend_review", + "community": 170, + "community_name": "\u2699\ufe0f Backend Technical Review (05_dev_backend)", + "norm_label": "backend_review.md" + }, + { + "label": "Architectural Overview", + "file_type": "document", + "source_file": ".ai_agency/specs/reviews/backend_review.md", + "source_location": "L3", + "_origin": "ast", + "id": "ai_agency_specs_reviews_backend_review_architectural_overview", + "community": 170, + "community_name": "\u2699\ufe0f Backend Technical Review (05_dev_backend)", + "norm_label": "architectural overview" + }, + { + "label": "\u2699\ufe0f Backend Technical Review (05_dev_backend)", + "file_type": "document", + "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": 170, + "community_name": "\u2699\ufe0f Backend Technical Review (05_dev_backend)", + "norm_label": "\u2699\ufe0f backend technical review (05_dev_backend)" + }, + { + "label": "Critical Review Findings & Required Enhancements", + "file_type": "document", + "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": 170, + "community_name": "\u2699\ufe0f Backend Technical Review (05_dev_backend)", + "norm_label": "critical review findings & required enhancements" + }, + { + "label": "frontend_review.md", + "file_type": "document", + "source_file": ".ai_agency/specs/reviews/frontend_review.md", + "source_location": "L1", + "_origin": "ast", + "id": "ai_agency_specs_reviews_frontend_review", + "community": 171, + "community_name": "\ud83c\udfa8 Frontend & Admin Panel Technical Review (06_dev_frontend)", + "norm_label": "frontend_review.md" + }, + { + "label": "Architectural Overview", + "file_type": "document", + "source_file": ".ai_agency/specs/reviews/frontend_review.md", + "source_location": "L3", + "_origin": "ast", + "id": "ai_agency_specs_reviews_frontend_review_architectural_overview", + "community": 171, + "community_name": "\ud83c\udfa8 Frontend & Admin Panel Technical Review (06_dev_frontend)", + "norm_label": "architectural overview" + }, + { + "label": "Critical Review Findings & Required Enhancements", + "file_type": "document", + "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": 171, + "community_name": "\ud83c\udfa8 Frontend & Admin Panel Technical Review (06_dev_frontend)", + "norm_label": "critical review findings & required enhancements" + }, + { + "label": "\ud83c\udfa8 Frontend & Admin Panel Technical Review (06_dev_frontend)", + "file_type": "document", + "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": 171, + "community_name": "\ud83c\udfa8 Frontend & Admin Panel Technical Review (06_dev_frontend)", + "norm_label": "\ud83c\udfa8 frontend & admin panel technical review (06_dev_frontend)" + }, + { + "label": "seo_content_review.md", + "file_type": "document", + "source_file": ".ai_agency/specs/reviews/seo_content_review.md", + "source_location": "L1", + "_origin": "ast", + "id": "ai_agency_specs_reviews_seo_content_review", + "community": 172, + "community_name": "\ud83d\ude80 SEO & Content Strategy Review (12_seo_content)", + "norm_label": "seo_content_review.md" + }, + { + "label": "Overview & Content Foundation", + "file_type": "document", + "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": 172, + "community_name": "\ud83d\ude80 SEO & Content Strategy Review (12_seo_content)", + "norm_label": "overview & content foundation" + }, + { + "label": "SEO & Content Requirements", + "file_type": "document", + "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": 172, + "community_name": "\ud83d\ude80 SEO & Content Strategy Review (12_seo_content)", + "norm_label": "seo & content requirements" + }, + { + "label": "\ud83d\ude80 SEO & Content Strategy Review (12_seo_content)", + "file_type": "document", + "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": 172, + "community_name": "\ud83d\ude80 SEO & Content Strategy Review (12_seo_content)", + "norm_label": "\ud83d\ude80 seo & content strategy review (12_seo_content)" + }, + { + "label": "@types/node", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L57", + "_origin": "ast", + "id": "backend_package_devdependencies_types_node", + "community": 173, + "community_name": "@types/node", + "norm_label": "@types/node" + }, + { + "label": "@types/node", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L57", + "_origin": "ast", + "id": "backend_package_json_types_node", + "community": 173, + "community_name": "@types/node", + "norm_label": "@types/node" + }, + { + "label": "verify-payment.dto.ts", + "file_type": "code", + "source_file": "backend/src/payment/dto/verify-payment.dto.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_payment_dto_verify_payment_dto", + "community": 174, + "community_name": "ZibalCallbackQueryDto", + "norm_label": "verify-payment.dto.ts" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_payment_dto_verify_payment_dto_ts_apipropertyoptional", + "community": 174, + "community_name": "ZibalCallbackQueryDto", + "norm_label": "apipropertyoptional" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_payment_dto_verify_payment_dto_ts_isoptional", + "community": 174, + "community_name": "ZibalCallbackQueryDto", + "norm_label": "isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_payment_dto_verify_payment_dto_ts_isstring", + "community": 174, + "community_name": "ZibalCallbackQueryDto", + "norm_label": "isstring" + }, + { + "label": "seed-ui-texts.ts", + "file_type": "code", + "source_file": "backend/prisma/seed-ui-texts.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_prisma_seed_ui_texts", + "community": 175, + "community_name": "seed-ui-texts.ts", + "norm_label": "seed-ui-texts.ts" + }, + { + "label": "prisma", + "file_type": "code", + "source_file": "backend/prisma/seed-ui-texts.ts", + "source_location": "L3", + "_origin": "ast", + "id": "backend_prisma_seed_ui_texts_prisma", + "community": 175, + "community_name": "seed-ui-texts.ts", + "norm_label": "prisma" + }, + { + "label": "UI_TEXTS", + "file_type": "code", + "source_file": "backend/prisma/seed-ui-texts.ts", + "source_location": "L5", + "_origin": "ast", + "id": "backend_prisma_seed_ui_texts_ui_texts", + "community": 175, + "community_name": "seed-ui-texts.ts", + "norm_label": "ui_texts" + }, + { + "label": "seed-wiki.ts", + "file_type": "code", + "source_file": "backend/prisma/seed-wiki.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_prisma_seed_wiki", + "community": 176, + "community_name": "seed-wiki.ts", + "norm_label": "seed-wiki.ts" + }, + { + "label": "CANONICAL_WIKI_TERMS", + "file_type": "code", + "source_file": "backend/prisma/seed-wiki.ts", + "source_location": "L7", + "_origin": "ast", + "id": "backend_prisma_seed_wiki_canonical_wiki_terms", + "community": 176, + "community_name": "seed-wiki.ts", + "norm_label": "canonical_wiki_terms" + }, + { + "label": "prisma", + "file_type": "code", + "source_file": "backend/prisma/seed-wiki.ts", + "source_location": "L5", + "_origin": "ast", + "id": "backend_prisma_seed_wiki_prisma", + "community": 176, + "community_name": "seed-wiki.ts", + "norm_label": "prisma" + }, + { + "label": "create-blog.dto.ts", + "file_type": "code", + "source_file": "backend/src/blogs/dto/create-blog.dto.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_blogs_dto_create_blog_dto", + "community": 177, + "community_name": "update-blog.dto.ts", + "norm_label": "create-blog.dto.ts" + }, + { + "label": "update-blog.dto.ts", + "file_type": "code", + "source_file": "backend/src/blogs/dto/update-blog.dto.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_blogs_dto_update_blog_dto", + "community": 177, + "community_name": "update-blog.dto.ts", + "norm_label": "update-blog.dto.ts" + }, + { + "label": "create-home.dto.ts", + "file_type": "code", + "source_file": "backend/src/home/dto/create-home.dto.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_home_dto_create_home_dto", + "community": 178, + "community_name": "update-home.dto.ts", + "norm_label": "create-home.dto.ts" + }, + { + "label": "update-home.dto.ts", + "file_type": "code", + "source_file": "backend/src/home/dto/update-home.dto.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_home_dto_update_home_dto", + "community": 178, + "community_name": "update-home.dto.ts", + "norm_label": "update-home.dto.ts" + }, + { + "label": "create-wiki.dto.ts", + "file_type": "code", + "source_file": "backend/src/wiki/dto/create-wiki.dto.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_wiki_dto_create_wiki_dto", + "community": 179, + "community_name": "update-wiki.dto.ts", + "norm_label": "create-wiki.dto.ts" + }, + { + "label": "update-wiki.dto.ts", + "file_type": "code", + "source_file": "backend/src/wiki/dto/update-wiki.dto.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_wiki_dto_update_wiki_dto", + "community": 179, + "community_name": "update-wiki.dto.ts", + "norm_label": "update-wiki.dto.ts" + }, + { + "label": "ProtectedRoute.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_src_components_protectedroute", + "community": 18, + "community_name": "src/services/api.ts", + "norm_label": "protectedroute.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": 18, + "community_name": "src/services/api.ts", + "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": 18, + "community_name": "src/services/api.ts", + "norm_label": "searchable_pages" + }, + { + "label": "B2BManager.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_b2bmanager", + "community": 18, + "community_name": "src/services/api.ts", + "norm_label": "b2bmanager.tsx" + }, + { + "label": "Login.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Login.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_login", + "community": 18, + "community_name": "src/services/api.ts", + "norm_label": "login.tsx" + }, + { + "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": 18, + "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": 18, + "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": 18, + "community_name": "src/services/api.ts", + "norm_label": "b2bmanager" + }, + { + "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": 18, + "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": "L35", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_systemsettingspage", + "community": 18, + "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": 18, + "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": 18, + "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": 18, + "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": 18, + "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": 18, + "community_name": "src/services/api.ts", + "norm_label": "admin.ts" + }, + { + "label": "add-watch.md", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/add-watch.md", + "source_location": "L1", + "_origin": "ast", + "id": "claude_skills_graphify_references_add_watch", + "community": 180, + "community_name": "graphify reference: add a URL and watch a folder", + "norm_label": "add-watch.md" + }, + { + "label": "For /graphify add", + "file_type": "document", + "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": 180, + "community_name": "graphify reference: add a URL and watch a folder", + "norm_label": "for /graphify add" + }, + { + "label": "For --watch", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/add-watch.md", + "source_location": "L39", + "_origin": "ast", + "id": "claude_skills_graphify_references_add_watch_for_watch", + "community": 180, + "community_name": "graphify reference: add a URL and watch a folder", + "norm_label": "for --watch" + }, + { + "label": "graphify reference: add a URL and watch a folder", + "file_type": "document", + "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": 180, + "community_name": "graphify reference: add a URL and watch a folder", + "norm_label": "graphify reference: add a url and watch a folder" + }, + { + "label": "hooks.md", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/hooks.md", + "source_location": "L1", + "_origin": "ast", + "id": "claude_skills_graphify_references_hooks", + "community": 181, + "community_name": "graphify reference: commit hook and native CLAUDE.md integration", + "norm_label": "hooks.md" + }, + { + "label": "For git commit hook", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/hooks.md", + "source_location": "L5", + "_origin": "ast", + "id": "claude_skills_graphify_references_hooks_for_git_commit_hook", + "community": 181, + "community_name": "graphify reference: commit hook and native CLAUDE.md integration", + "norm_label": "for git commit hook" + }, + { + "label": "For native CLAUDE.md integration", + "file_type": "document", + "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": 181, + "community_name": "graphify reference: commit hook and native CLAUDE.md integration", + "norm_label": "for native claude.md integration" + }, + { + "label": "graphify reference: commit hook and native CLAUDE.md integration", + "file_type": "document", + "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": 181, + "community_name": "graphify reference: commit hook and native CLAUDE.md integration", + "norm_label": "graphify reference: commit hook and native claude.md integration" + }, + { + "label": "update.md", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/update.md", + "source_location": "L1", + "_origin": "ast", + "id": "claude_skills_graphify_references_update", + "community": 182, + "community_name": "graphify reference: incremental update and cluster-only", + "norm_label": "update.md" + }, + { + "label": "For --cluster-only", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/update.md", + "source_location": "L202", + "_origin": "ast", + "id": "claude_skills_graphify_references_update_for_cluster_only", + "community": 182, + "community_name": "graphify reference: incremental update and cluster-only", + "norm_label": "for --cluster-only" + }, + { + "label": "For --update (incremental re-extraction)", + "file_type": "document", + "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": 182, + "community_name": "graphify reference: incremental update and cluster-only", + "norm_label": "for --update (incremental re-extraction)" + }, + { + "label": "graphify reference: incremental update and cluster-only", + "file_type": "document", + "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": 182, + "community_name": "graphify reference: incremental update and cluster-only", + "norm_label": "graphify reference: incremental update and cluster-only" + }, + { + "label": "19-finding-verification-report.md", + "file_type": "document", + "source_file": "docs/audit/19-finding-verification-report.md", + "source_location": "L1", + "_origin": "ast", + "id": "docs_audit_19_finding_verification_report", + "community": 183, + "community_name": "Raw Finding Verification & Disposition Report", + "norm_label": "19-finding-verification-report.md" + }, + { + "label": "1. Executive Summary & Verification Reconciliation Table", + "file_type": "document", + "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": 183, + "community_name": "Raw Finding Verification & Disposition Report", + "norm_label": "1. executive summary & verification reconciliation table" + }, + { + "label": "2. Newly Discovered & Split Findings (Canonical IDs)", + "file_type": "document", + "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": 183, + "community_name": "Raw Finding Verification & Disposition Report", + "norm_label": "2. newly discovered & split findings (canonical ids)" + }, + { + "label": "Raw Finding Verification & Disposition Report", + "file_type": "document", + "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": 183, + "community_name": "Raw Finding Verification & Disposition Report", + "norm_label": "raw finding verification & disposition report" + }, + { + "label": "admin-panel/README.md", + "file_type": "document", + "source_file": "frontend/admin-panel/README.md", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_readme", + "community": 184, + "community_name": "React + TypeScript + Vite", + "norm_label": "admin-panel/readme.md" + }, + { + "label": "Expanding the ESLint configuration", + "file_type": "document", + "source_file": "frontend/admin-panel/README.md", + "source_location": "L14", + "_origin": "ast", + "id": "frontend_admin_panel_readme_expanding_the_eslint_configuration", + "community": 184, + "community_name": "React + TypeScript + Vite", + "norm_label": "expanding the eslint configuration" + }, + { + "label": "React Compiler", + "file_type": "document", + "source_file": "frontend/admin-panel/README.md", + "source_location": "L10", + "_origin": "ast", + "id": "frontend_admin_panel_readme_react_compiler", + "community": 184, + "community_name": "React + TypeScript + Vite", + "norm_label": "react compiler" + }, + { + "label": "React + TypeScript + Vite", + "file_type": "document", + "source_file": "frontend/admin-panel/README.md", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_readme_react_typescript_vite", + "community": 184, + "community_name": "React + TypeScript + Vite", + "norm_label": "react + typescript + vite" + }, + { + "label": "Select.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/Select.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_src_components_ui_select", + "community": 185, + "community_name": "Select.tsx", + "norm_label": "select.tsx" + }, + { + "label": "Select", + "file_type": "code", + "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": 185, + "community_name": "Select.tsx", + "norm_label": "select" + }, + { + "label": "wiki/[slug]/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/wiki/[slug]/page.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_app_wiki_slug_page", + "community": 186, + "community_name": "wiki/[slug]/page.tsx", + "norm_label": "wiki/[slug]/page.tsx" + }, + { + "label": "ts-node", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L71", + "_origin": "ast", + "id": "backend_package_devdependencies_ts_node", + "community": 187, + "community_name": "ts-node", + "norm_label": "ts-node" + }, + { + "label": "ts-node", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L71", + "_origin": "ast", + "id": "ts_node", + "community": 187, + "community_name": "ts-node", + "norm_label": "ts-node" + }, + { + "label": "application/README.md", + "file_type": "document", + "source_file": "frontend/application/README.md", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_readme", + "community": 188, + "community_name": "application/README.md", + "norm_label": "application/readme.md" + }, + { + "label": "Deploy on Vercel", + "file_type": "document", + "source_file": "frontend/application/README.md", + "source_location": "L32", + "_origin": "ast", + "id": "frontend_application_readme_deploy_on_vercel", + "community": 188, + "community_name": "application/README.md", + "norm_label": "deploy on vercel" + }, + { + "label": "Getting Started", + "file_type": "document", + "source_file": "frontend/application/README.md", + "source_location": "L3", + "_origin": "ast", + "id": "frontend_application_readme_getting_started", + "community": 188, + "community_name": "application/README.md", + "norm_label": "getting started" + }, + { + "label": "Learn More", + "file_type": "document", + "source_file": "frontend/application/README.md", + "source_location": "L23", + "_origin": "ast", + "id": "frontend_application_readme_learn_more", + "community": 188, + "community_name": "application/README.md", + "norm_label": "learn more" + }, + { + "label": "@types/express", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L53", + "_origin": "ast", + "id": "backend_package_devdependencies_types_express", + "community": 189, + "community_name": "@types/express", + "norm_label": "@types/express" + }, + { + "label": "@types/express", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L53", + "_origin": "ast", + "id": "types_express", + "community": 189, + "community_name": "@types/express", + "norm_label": "@types/express" + }, + { + "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": 19, - "community_name": "B2BService", - "norm_label": "injectable", - "id": "backend_src_b2b_b2b_service_ts_injectable" + "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": 19, + "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": 19, + "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": 19, + "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": 19, + "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": 19, + "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": 19, + "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": 19, + "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": 19, + "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": 19, + "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": 19, + "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": 19, + "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": 19, + "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": 19, + "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": 19, + "community_name": "pets/pets.controller.ts", + "norm_label": "injectable" }, { "label": "deploy.sh", @@ -22101,10 +22313,10 @@ "kind": "file" }, "_origin": "ast", + "id": "scripts_deploy", "community": 190, "community_name": "deploy.sh", - "norm_label": "deploy.sh", - "id": "scripts_deploy" + "norm_label": "deploy.sh" }, { "label": "COMPOSE_DOCKER_CLI_BUILD", @@ -22116,10 +22328,10 @@ "kind": "code" }, "_origin": "ast", + "id": "scripts_deploy_compose_docker_cli_build", "community": 190, "community_name": "deploy.sh", - "norm_label": "compose_docker_cli_build", - "id": "scripts_deploy_compose_docker_cli_build" + "norm_label": "compose_docker_cli_build" }, { "label": "DOCKER_BUILDKIT", @@ -22131,10 +22343,10 @@ "kind": "code" }, "_origin": "ast", + "id": "scripts_deploy_docker_buildkit", "community": 190, "community_name": "deploy.sh", - "norm_label": "docker_buildkit", - "id": "scripts_deploy_docker_buildkit" + "norm_label": "docker_buildkit" }, { "label": "deploy.sh script", @@ -22146,10 +22358,10 @@ "kind": "bash_entrypoint" }, "_origin": "ast", + "id": "scripts_deploy_sh__entry", "community": 190, "community_name": "deploy.sh", - "norm_label": "deploy.sh script", - "id": "scripts_deploy_sh__entry" + "norm_label": "deploy.sh script" }, { "label": "security_review.md", @@ -22157,10 +22369,10 @@ "source_file": ".ai_agency/specs/reviews/security_review.md", "source_location": "L1", "_origin": "ast", + "id": "ai_agency_specs_reviews_security_review", "community": 191, "community_name": "\ud83d\udd12 Security & Performance Review (09_devops_security)", - "norm_label": "security_review.md", - "id": "ai_agency_specs_reviews_security_review" + "norm_label": "security_review.md" }, { "label": "Security Architecture & Best Practices", @@ -22168,10 +22380,10 @@ "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": 191, "community_name": "\ud83d\udd12 Security & Performance Review (09_devops_security)", - "norm_label": "security architecture & best practices", - "id": "ai_agency_specs_reviews_security_review_security_architecture_best_practices" + "norm_label": "security architecture & best practices" }, { "label": "\ud83d\udd12 Security & Performance Review (09_devops_security)", @@ -22179,10 +22391,10 @@ "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": 191, "community_name": "\ud83d\udd12 Security & Performance Review (09_devops_security)", - "norm_label": "\ud83d\udd12 security & performance review (09_devops_security)", - "id": "ai_agency_specs_reviews_security_review_security_performance_review_09_devops_security" + "norm_label": "\ud83d\udd12 security & performance review (09_devops_security)" }, { "label": "ux_review.md", @@ -22190,10 +22402,10 @@ "source_file": ".ai_agency/specs/reviews/ux_review.md", "source_location": "L1", "_origin": "ast", + "id": "ai_agency_specs_reviews_ux_review", "community": 192, "community_name": "\ud83d\udc41\ufe0f UX & Persona Interface Review (08_visual_qa)", - "norm_label": "ux_review.md", - "id": "ai_agency_specs_reviews_ux_review" + "norm_label": "ux_review.md" }, { "label": "Persona Experience Alignment", @@ -22201,10 +22413,10 @@ "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": 192, "community_name": "\ud83d\udc41\ufe0f UX & Persona Interface Review (08_visual_qa)", - "norm_label": "persona experience alignment", - "id": "ai_agency_specs_reviews_ux_review_persona_experience_alignment" + "norm_label": "persona experience alignment" }, { "label": "\ud83d\udc41\ufe0f UX & Persona Interface Review (08_visual_qa)", @@ -22212,10 +22424,10 @@ "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": 192, "community_name": "\ud83d\udc41\ufe0f UX & Persona Interface Review (08_visual_qa)", - "norm_label": "\ud83d\udc41\ufe0f ux & persona interface review (08_visual_qa)", - "id": "ai_agency_specs_reviews_ux_review_ux_persona_interface_review_08_visual_qa" + "norm_label": "\ud83d\udc41\ufe0f ux & persona interface review (08_visual_qa)" }, { "label": "@types/jest", @@ -22223,10 +22435,10 @@ "source_file": "backend/package.json", "source_location": "L54", "_origin": "ast", + "id": "backend_package_devdependencies_types_jest", "community": 193, "community_name": "@types/jest", - "norm_label": "@types/jest", - "id": "backend_package_devdependencies_types_jest" + "norm_label": "@types/jest" }, { "label": "@types/jest", @@ -22234,10 +22446,10 @@ "source_file": "backend/package.json", "source_location": "L54", "_origin": "ast", + "id": "types_jest", "community": 193, "community_name": "@types/jest", - "norm_label": "@types/jest", - "id": "types_jest" + "norm_label": "@types/jest" }, { "label": "typescript-eslint", @@ -22245,10 +22457,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L39", "_origin": "ast", + "id": "frontend_admin_panel_package_devdependencies_typescript_eslint", "community": 194, "community_name": "typescript-eslint", - "norm_label": "typescript-eslint", - "id": "frontend_admin_panel_package_devdependencies_typescript_eslint" + "norm_label": "typescript-eslint" }, { "label": "typescript-eslint", @@ -22256,10 +22468,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L39", "_origin": "ast", + "id": "frontend_admin_panel_package_json_typescript_eslint", "community": 194, "community_name": "typescript-eslint", - "norm_label": "typescript-eslint", - "id": "frontend_admin_panel_package_json_typescript_eslint" + "norm_label": "typescript-eslint" }, { "label": "20260526160916_add_ui_texts_and_scientific_terms/migration.sql", @@ -22267,10 +22479,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": 195, "community_name": "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" + "norm_label": "20260526160916_add_ui_texts_and_scientific_terms/migration.sql" }, { "label": "\"scientific_terms\"", @@ -22278,10 +22490,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": 195, "community_name": "20260526160916_add_ui_texts_and_scientific_terms/migration.sql", - "norm_label": "\"scientific_terms\"", - "id": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration_scientific_terms" + "norm_label": "\"scientific_terms\"" }, { "label": "\"ui_texts\"", @@ -22289,10 +22501,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": 195, "community_name": "20260526160916_add_ui_texts_and_scientific_terms/migration.sql", - "norm_label": "\"ui_texts\"", - "id": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration_ui_texts" + "norm_label": "\"ui_texts\"" }, { "label": "prisma/scientificTerms.ts", @@ -22300,10 +22512,10 @@ "source_file": "backend/prisma/scientificTerms.ts", "source_location": "L1", "_origin": "ast", + "id": "backend_prisma_scientificterms", "community": 196, "community_name": "prisma/scientificTerms.ts", - "norm_label": "prisma/scientificterms.ts", - "id": "backend_prisma_scientificterms" + "norm_label": "prisma/scientificterms.ts" }, { "label": "SCIENTIFIC_TERMS", @@ -22311,10 +22523,10 @@ "source_file": "backend/prisma/scientificTerms.ts", "source_location": "L7", "_origin": "ast", + "id": "backend_prisma_scientificterms_scientific_terms", "community": 196, "community_name": "prisma/scientificTerms.ts", - "norm_label": "scientific_terms", - "id": "backend_prisma_scientificterms_scientific_terms" + "norm_label": "scientific_terms" }, { "label": "seed-blogs.ts", @@ -22322,10 +22534,10 @@ "source_file": "backend/prisma/seed-blogs.ts", "source_location": "L1", "_origin": "ast", + "id": "backend_prisma_seed_blogs", "community": 197, "community_name": "seed-blogs.ts", - "norm_label": "seed-blogs.ts", - "id": "backend_prisma_seed_blogs" + "norm_label": "seed-blogs.ts" }, { "label": "prisma", @@ -22333,10 +22545,10 @@ "source_file": "backend/prisma/seed-blogs.ts", "source_location": "L3", "_origin": "ast", + "id": "backend_prisma_seed_blogs_prisma", "community": 197, "community_name": "seed-blogs.ts", - "norm_label": "prisma", - "id": "backend_prisma_seed_blogs_prisma" + "norm_label": "prisma" }, { "label": "seed-custom.ts", @@ -22344,10 +22556,10 @@ "source_file": "backend/prisma/seed-custom.ts", "source_location": "L1", "_origin": "ast", + "id": "backend_prisma_seed_custom", "community": 198, "community_name": "seed-custom.ts", - "norm_label": "seed-custom.ts", - "id": "backend_prisma_seed_custom" + "norm_label": "seed-custom.ts" }, { "label": "prisma", @@ -22355,10 +22567,10 @@ "source_file": "backend/prisma/seed-custom.ts", "source_location": "L5", "_origin": "ast", + "id": "backend_prisma_seed_custom_prisma", "community": 198, "community_name": "seed-custom.ts", - "norm_label": "prisma", - "id": "backend_prisma_seed_custom_prisma" + "norm_label": "prisma" }, { "label": "@types/js-yaml", @@ -22366,10 +22578,10 @@ "source_file": "backend/package.json", "source_location": "L55", "_origin": "ast", + "id": "backend_package_devdependencies_types_js_yaml", "community": 199, "community_name": "@types/js-yaml", - "norm_label": "@types/js-yaml", - "id": "backend_package_devdependencies_types_js_yaml" + "norm_label": "@types/js-yaml" }, { "label": "@types/js-yaml", @@ -22377,10 +22589,10 @@ "source_file": "backend/package.json", "source_location": "L55", "_origin": "ast", + "id": "types_js_yaml", "community": 199, "community_name": "@types/js-yaml", - "norm_label": "@types/js-yaml", - "id": "types_js_yaml" + "norm_label": "@types/js-yaml" }, { "label": "cms.controller.ts", @@ -22388,10 +22600,10 @@ "source_file": "backend/src/cms/cms.controller.ts", "source_location": "L1", "_origin": "ast", + "id": "backend_src_cms_cms_controller", "community": 2, "community_name": "CmsController", - "norm_label": "cms.controller.ts", - "id": "backend_src_cms_cms_controller" + "norm_label": "cms.controller.ts" }, { "label": "ApiBearerAuth", @@ -22399,10 +22611,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_cms_cms_controller_ts_apibearerauth", "community": 2, "community_name": "CmsController", - "norm_label": "apibearerauth", - "id": "backend_src_cms_cms_controller_ts_apibearerauth" + "norm_label": "apibearerauth" }, { "label": "ApiOperation", @@ -22410,10 +22622,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_cms_cms_controller_ts_apioperation", "community": 2, "community_name": "CmsController", - "norm_label": "apioperation", - "id": "backend_src_cms_cms_controller_ts_apioperation" + "norm_label": "apioperation" }, { "label": "ApiTags", @@ -22421,10 +22633,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_cms_cms_controller_ts_apitags", "community": 2, "community_name": "CmsController", - "norm_label": "apitags", - "id": "backend_src_cms_cms_controller_ts_apitags" + "norm_label": "apitags" }, { "label": "Body", @@ -22432,10 +22644,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_cms_cms_controller_ts_body", "community": 2, "community_name": "CmsController", - "norm_label": "body", - "id": "backend_src_cms_cms_controller_ts_body" + "norm_label": "body" }, { "label": "Controller", @@ -22443,10 +22655,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_cms_cms_controller_ts_controller", "community": 2, "community_name": "CmsController", - "norm_label": "controller", - "id": "backend_src_cms_cms_controller_ts_controller" + "norm_label": "controller" }, { "label": "Delete", @@ -22454,10 +22666,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_cms_cms_controller_ts_delete", "community": 2, "community_name": "CmsController", - "norm_label": "delete", - "id": "backend_src_cms_cms_controller_ts_delete" + "norm_label": "delete" }, { "label": "Get", @@ -22465,10 +22677,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_cms_cms_controller_ts_get", "community": 2, "community_name": "CmsController", - "norm_label": "get", - "id": "backend_src_cms_cms_controller_ts_get" + "norm_label": "get" }, { "label": "Param", @@ -22476,10 +22688,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_cms_cms_controller_ts_param", "community": 2, "community_name": "CmsController", - "norm_label": "param", - "id": "backend_src_cms_cms_controller_ts_param" + "norm_label": "param" }, { "label": "Post", @@ -22487,10 +22699,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_cms_cms_controller_ts_post", "community": 2, "community_name": "CmsController", - "norm_label": "post", - "id": "backend_src_cms_cms_controller_ts_post" + "norm_label": "post" }, { "label": "Put", @@ -22498,10 +22710,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_cms_cms_controller_ts_put", "community": 2, "community_name": "CmsController", - "norm_label": "put", - "id": "backend_src_cms_cms_controller_ts_put" + "norm_label": "put" }, { "label": "UseGuards", @@ -22509,10 +22721,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_cms_cms_controller_ts_useguards", "community": 2, "community_name": "CmsController", - "norm_label": "useguards", - "id": "backend_src_cms_cms_controller_ts_useguards" + "norm_label": "useguards" }, { "label": "cms.service.ts", @@ -22520,10 +22732,10 @@ "source_file": "backend/src/cms/cms.service.ts", "source_location": "L1", "_origin": "ast", + "id": "backend_src_cms_cms_service", "community": 2, "community_name": "CmsController", - "norm_label": "cms.service.ts", - "id": "backend_src_cms_cms_service" + "norm_label": "cms.service.ts" }, { "label": "Injectable", @@ -22531,10 +22743,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_cms_cms_service_ts_injectable", "community": 2, "community_name": "CmsController", - "norm_label": "injectable", - "id": "backend_src_cms_cms_service_ts_injectable" + "norm_label": "injectable" }, { "label": "cms.dto.ts", @@ -22542,10 +22754,10 @@ "source_file": "backend/src/cms/dto/cms.dto.ts", "source_location": "L1", "_origin": "ast", + "id": "backend_src_cms_dto_cms_dto", "community": 2, "community_name": "CmsController", - "norm_label": "cms.dto.ts", - "id": "backend_src_cms_dto_cms_dto" + "norm_label": "cms.dto.ts" }, { "label": "ApiProperty", @@ -22553,10 +22765,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_cms_dto_cms_dto_ts_apiproperty", "community": 2, "community_name": "CmsController", - "norm_label": "apiproperty", - "id": "backend_src_cms_dto_cms_dto_ts_apiproperty" + "norm_label": "apiproperty" }, { "label": "ApiPropertyOptional", @@ -22564,10 +22776,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_cms_dto_cms_dto_ts_apipropertyoptional", "community": 2, "community_name": "CmsController", - "norm_label": "apipropertyoptional", - "id": "backend_src_cms_dto_cms_dto_ts_apipropertyoptional" + "norm_label": "apipropertyoptional" }, { "label": "IsBoolean", @@ -22575,10 +22787,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_cms_dto_cms_dto_ts_isboolean", "community": 2, "community_name": "CmsController", - "norm_label": "isboolean", - "id": "backend_src_cms_dto_cms_dto_ts_isboolean" + "norm_label": "isboolean" }, { "label": "IsNumber", @@ -22586,10 +22798,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_cms_dto_cms_dto_ts_isnumber", "community": 2, "community_name": "CmsController", - "norm_label": "isnumber", - "id": "backend_src_cms_dto_cms_dto_ts_isnumber" + "norm_label": "isnumber" }, { "label": "IsOptional", @@ -22597,10 +22809,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_cms_dto_cms_dto_ts_isoptional", "community": 2, "community_name": "CmsController", - "norm_label": "isoptional", - "id": "backend_src_cms_dto_cms_dto_ts_isoptional" + "norm_label": "isoptional" }, { "label": "IsString", @@ -22608,10 +22820,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_cms_dto_cms_dto_ts_isstring", "community": 2, "community_name": "CmsController", - "norm_label": "isstring", - "id": "backend_src_cms_dto_cms_dto_ts_isstring" + "norm_label": "isstring" }, { "label": "IsUUID", @@ -22619,10 +22831,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "isuuid", "community": 2, "community_name": "CmsController", - "norm_label": "isuuid", - "id": "isuuid" + "norm_label": "isuuid" }, { "label": "07-backend-audit.md", @@ -22630,10 +22842,10 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L1", "_origin": "ast", + "id": "docs_audit_07_backend_audit", "community": 20, "community_name": "BE-001", - "norm_label": "07-backend-audit.md", - "id": "docs_audit_07_backend_audit" + "norm_label": "07-backend-audit.md" }, { "label": "Acceptance Criteria", @@ -22641,10 +22853,10 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L113", "_origin": "ast", + "id": "docs_audit_07_backend_audit_acceptance_criteria", "community": 20, "community_name": "BE-001", - "norm_label": "acceptance criteria", - "id": "docs_audit_07_backend_audit_acceptance_criteria" + "norm_label": "acceptance criteria" }, { "label": "Affected Application", @@ -22652,10 +22864,10 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L53", "_origin": "ast", + "id": "docs_audit_07_backend_audit_affected_application", "community": 20, "community_name": "BE-001", - "norm_label": "affected application", - "id": "docs_audit_07_backend_audit_affected_application" + "norm_label": "affected application" }, { "label": "Affected Files", @@ -22663,10 +22875,10 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L56", "_origin": "ast", + "id": "docs_audit_07_backend_audit_affected_files", "community": 20, "community_name": "BE-001", - "norm_label": "affected files", - "id": "docs_audit_07_backend_audit_affected_files" + "norm_label": "affected files" }, { "label": "Alternative Direction", @@ -22674,10 +22886,10 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L95", "_origin": "ast", + "id": "docs_audit_07_backend_audit_alternative_direction", "community": 20, "community_name": "BE-001", - "norm_label": "alternative direction", - "id": "docs_audit_07_backend_audit_alternative_direction" + "norm_label": "alternative direction" }, { "label": "BE-001", @@ -22685,10 +22897,10 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L33", "_origin": "ast", + "id": "docs_audit_07_backend_audit_be_001", "community": 20, "community_name": "BE-001", - "norm_label": "be-001", - "id": "docs_audit_07_backend_audit_be_001" + "norm_label": "be-001" }, { "label": "Category", @@ -22696,10 +22908,10 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L41", "_origin": "ast", + "id": "docs_audit_07_backend_audit_category", "community": 20, "community_name": "BE-001", - "norm_label": "category", - "id": "docs_audit_07_backend_audit_category" + "norm_label": "category" }, { "label": "Completion Statement", @@ -22707,10 +22919,10 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L133", "_origin": "ast", + "id": "docs_audit_07_backend_audit_completion_statement", "community": 20, "community_name": "BE-001", - "norm_label": "completion statement", - "id": "docs_audit_07_backend_audit_completion_statement" + "norm_label": "completion statement" }, { "label": "Confidence", @@ -22718,10 +22930,10 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L47", "_origin": "ast", + "id": "docs_audit_07_backend_audit_confidence", "community": 20, "community_name": "BE-001", - "norm_label": "confidence", - "id": "docs_audit_07_backend_audit_confidence" + "norm_label": "confidence" }, { "label": "Dependencies", @@ -22729,10 +22941,10 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L101", "_origin": "ast", + "id": "docs_audit_07_backend_audit_dependencies", "community": 20, "community_name": "BE-001", - "norm_label": "dependencies", - "id": "docs_audit_07_backend_audit_dependencies" + "norm_label": "dependencies" }, { "label": "Domain", @@ -22740,10 +22952,10 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L38", "_origin": "ast", + "id": "docs_audit_07_backend_audit_domain", "community": 20, "community_name": "BE-001", - "norm_label": "domain", - "id": "docs_audit_07_backend_audit_domain" + "norm_label": "domain" }, { "label": "Domain Overview & Confirmed Strengths", @@ -22751,10 +22963,10 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L15", "_origin": "ast", + "id": "docs_audit_07_backend_audit_domain_overview_confirmed_strengths", "community": 20, "community_name": "BE-001", - "norm_label": "domain overview & confirmed strengths", - "id": "docs_audit_07_backend_audit_domain_overview_confirmed_strengths" + "norm_label": "domain overview & confirmed strengths" }, { "label": "Evaluation of 6 Existing TypeScript Compiler Diagnostics", @@ -22762,10 +22974,10 @@ "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": 20, "community_name": "BE-001", - "norm_label": "evaluation of 6 existing typescript compiler diagnostics", - "id": "docs_audit_07_backend_audit_evaluation_of_6_existing_typescript_compiler_diagnostics" + "norm_label": "evaluation of 6 existing typescript compiler diagnostics" }, { "label": "Evidence", @@ -22773,10 +22985,10 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L62", "_origin": "ast", + "id": "docs_audit_07_backend_audit_evidence", "community": 20, "community_name": "BE-001", - "norm_label": "evidence", - "id": "docs_audit_07_backend_audit_evidence" + "norm_label": "evidence" }, { "label": "Finding Summary", @@ -22784,10 +22996,10 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L121", "_origin": "ast", + "id": "docs_audit_07_backend_audit_finding_summary", "community": 20, "community_name": "BE-001", - "norm_label": "finding summary", - "id": "docs_audit_07_backend_audit_finding_summary" + "norm_label": "finding summary" }, { "label": "Findings", @@ -22795,10 +23007,10 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L31", "_origin": "ast", + "id": "docs_audit_07_backend_audit_findings", "community": 20, "community_name": "BE-001", - "norm_label": "findings", - "id": "docs_audit_07_backend_audit_findings" + "norm_label": "findings" }, { "label": "Implementation Complexity", @@ -22806,10 +23018,10 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L98", "_origin": "ast", + "id": "docs_audit_07_backend_audit_implementation_complexity", "community": 20, "community_name": "BE-001", - "norm_label": "implementation complexity", - "id": "docs_audit_07_backend_audit_implementation_complexity" + "norm_label": "implementation complexity" }, { "label": "NestJS Backend Audit Report", @@ -22817,10 +23029,10 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L1", "_origin": "ast", + "id": "docs_audit_07_backend_audit_nestjs_backend_audit_report", "community": 20, "community_name": "BE-001", - "norm_label": "nestjs backend audit report", - "id": "docs_audit_07_backend_audit_nestjs_backend_audit_report" + "norm_label": "nestjs backend audit report" }, { "label": "Notes and Limitations", @@ -22828,10 +23040,10 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L116", "_origin": "ast", + "id": "docs_audit_07_backend_audit_notes_and_limitations", "community": 20, "community_name": "BE-001", - "norm_label": "notes and limitations", - "id": "docs_audit_07_backend_audit_notes_and_limitations" + "norm_label": "notes and limitations" }, { "label": "Problem", @@ -22839,10 +23051,10 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L73", "_origin": "ast", + "id": "docs_audit_07_backend_audit_problem", "community": 20, "community_name": "BE-001", - "norm_label": "problem", - "id": "docs_audit_07_backend_audit_problem" + "norm_label": "problem" }, { "label": "Recommended Direction", @@ -22850,10 +23062,10 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L92", "_origin": "ast", + "id": "docs_audit_07_backend_audit_recommended_direction", "community": 20, "community_name": "BE-001", - "norm_label": "recommended direction", - "id": "docs_audit_07_backend_audit_recommended_direction" + "norm_label": "recommended direction" }, { "label": "Relevant Symbols or Lines", @@ -22861,10 +23073,10 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L59", "_origin": "ast", + "id": "docs_audit_07_backend_audit_relevant_symbols_or_lines", "community": 20, "community_name": "BE-001", - "norm_label": "relevant symbols or lines", - "id": "docs_audit_07_backend_audit_relevant_symbols_or_lines" + "norm_label": "relevant symbols or lines" }, { "label": "Risks", @@ -22872,10 +23084,10 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L104", "_origin": "ast", + "id": "docs_audit_07_backend_audit_risks", "community": 20, "community_name": "BE-001", - "norm_label": "risks", - "id": "docs_audit_07_backend_audit_risks" + "norm_label": "risks" }, { "label": "Root Cause", @@ -22883,10 +23095,10 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L77", "_origin": "ast", + "id": "docs_audit_07_backend_audit_root_cause", "community": 20, "community_name": "BE-001", - "norm_label": "root cause", - "id": "docs_audit_07_backend_audit_root_cause" + "norm_label": "root cause" }, { "label": "Security or Data-Integrity Impact", @@ -22894,10 +23106,10 @@ "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": 20, "community_name": "BE-001", - "norm_label": "security or data-integrity impact", - "id": "docs_audit_07_backend_audit_security_or_data_integrity_impact" + "norm_label": "security or data-integrity impact" }, { "label": "Severity", @@ -22905,10 +23117,10 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L44", "_origin": "ast", + "id": "docs_audit_07_backend_audit_severity", "community": 20, "community_name": "BE-001", - "norm_label": "severity", - "id": "docs_audit_07_backend_audit_severity" + "norm_label": "severity" }, { "label": "Status", @@ -22916,10 +23128,10 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L50", "_origin": "ast", + "id": "docs_audit_07_backend_audit_status", "community": 20, "community_name": "BE-001", - "norm_label": "status", - "id": "docs_audit_07_backend_audit_status" + "norm_label": "status" }, { "label": "Technical Impact", @@ -22927,10 +23139,10 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L86", "_origin": "ast", + "id": "docs_audit_07_backend_audit_technical_impact", "community": 20, "community_name": "BE-001", - "norm_label": "technical impact", - "id": "docs_audit_07_backend_audit_technical_impact" + "norm_label": "technical impact" }, { "label": "Testing Requirements", @@ -22938,10 +23150,10 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L110", "_origin": "ast", + "id": "docs_audit_07_backend_audit_testing_requirements", "community": 20, "community_name": "BE-001", - "norm_label": "testing requirements", - "id": "docs_audit_07_backend_audit_testing_requirements" + "norm_label": "testing requirements" }, { "label": "Title", @@ -22949,10 +23161,10 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L35", "_origin": "ast", + "id": "docs_audit_07_backend_audit_title", "community": 20, "community_name": "BE-001", - "norm_label": "title", - "id": "docs_audit_07_backend_audit_title" + "norm_label": "title" }, { "label": "User or Business Impact", @@ -22960,10 +23172,10 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L83", "_origin": "ast", + "id": "docs_audit_07_backend_audit_user_or_business_impact", "community": 20, "community_name": "BE-001", - "norm_label": "user or business impact", - "id": "docs_audit_07_backend_audit_user_or_business_impact" + "norm_label": "user or business impact" }, { "label": "Verification Requirements", @@ -22971,10 +23183,10 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L107", "_origin": "ast", + "id": "docs_audit_07_backend_audit_verification_requirements", "community": 20, "community_name": "BE-001", - "norm_label": "verification requirements", - "id": "docs_audit_07_backend_audit_verification_requirements" + "norm_label": "verification requirements" }, { "label": "Why It Matters", @@ -22982,10 +23194,10 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L80", "_origin": "ast", + "id": "docs_audit_07_backend_audit_why_it_matters", "community": 20, "community_name": "BE-001", - "norm_label": "why it matters", - "id": "docs_audit_07_backend_audit_why_it_matters" + "norm_label": "why it matters" }, { "label": "github-and-merge.md", @@ -22993,10 +23205,10 @@ "source_file": ".claude/skills/graphify/references/github-and-merge.md", "source_location": "L1", "_origin": "ast", + "id": "claude_skills_graphify_references_github_and_merge", "community": 200, "community_name": "graphify reference: GitHub clone and cross-repo merge", - "norm_label": "github-and-merge.md", - "id": "claude_skills_graphify_references_github_and_merge" + "norm_label": "github-and-merge.md" }, { "label": "graphify reference: GitHub clone and cross-repo merge", @@ -23004,10 +23216,10 @@ "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": 200, "community_name": "graphify reference: GitHub clone and cross-repo merge", - "norm_label": "graphify reference: github clone and cross-repo merge", - "id": "claude_skills_graphify_references_github_and_merge_graphify_reference_github_clone_and_cross_repo_merge" + "norm_label": "graphify reference: github clone and cross-repo merge" }, { "label": "Step 0 - Clone GitHub repo(s) (only if a GitHub URL was given)", @@ -23015,10 +23227,10 @@ "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": 200, "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)", - "id": "claude_skills_graphify_references_github_and_merge_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)" }, { "label": "transcribe.md", @@ -23026,10 +23238,10 @@ "source_file": ".claude/skills/graphify/references/transcribe.md", "source_location": "L1", "_origin": "ast", + "id": "claude_skills_graphify_references_transcribe", "community": 201, "community_name": "graphify reference: transcribe video and audio", - "norm_label": "transcribe.md", - "id": "claude_skills_graphify_references_transcribe" + "norm_label": "transcribe.md" }, { "label": "graphify reference: transcribe video and audio", @@ -23037,10 +23249,10 @@ "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": 201, "community_name": "graphify reference: transcribe video and audio", - "norm_label": "graphify reference: transcribe video and audio", - "id": "claude_skills_graphify_references_transcribe_graphify_reference_transcribe_video_and_audio" + "norm_label": "graphify reference: transcribe video and audio" }, { "label": "Step 2.5 - Transcribe video / audio files (only if video files detected)", @@ -23048,10 +23260,10 @@ "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": 201, "community_name": "graphify reference: transcribe video and audio", - "norm_label": "step 2.5 - transcribe video / audio files (only if video files detected)", - "id": "claude_skills_graphify_references_transcribe_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)" }, { "label": "18-compiler-diagnostic-dispositions.md", @@ -23059,10 +23271,10 @@ "source_file": "docs/audit/18-compiler-diagnostic-dispositions.md", "source_location": "L1", "_origin": "ast", + "id": "docs_audit_18_compiler_diagnostic_dispositions", "community": 202, "community_name": "Compiler Diagnostic Dispositions", - "norm_label": "18-compiler-diagnostic-dispositions.md", - "id": "docs_audit_18_compiler_diagnostic_dispositions" + "norm_label": "18-compiler-diagnostic-dispositions.md" }, { "label": "Compiler Diagnostic Dispositions", @@ -23070,10 +23282,10 @@ "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": 202, "community_name": "Compiler Diagnostic Dispositions", - "norm_label": "compiler diagnostic dispositions", - "id": "docs_audit_18_compiler_diagnostic_dispositions_compiler_diagnostic_dispositions" + "norm_label": "compiler diagnostic dispositions" }, { "label": "Reconciled Compiler Diagnostic Table", @@ -23081,10 +23293,10 @@ "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": 202, "community_name": "Compiler Diagnostic Dispositions", - "norm_label": "reconciled compiler diagnostic table", - "id": "docs_audit_18_compiler_diagnostic_dispositions_reconciled_compiler_diagnostic_table" + "norm_label": "reconciled compiler diagnostic table" }, { "label": "build_manifest.js", @@ -23092,10 +23304,10 @@ "source_file": "docs/audit/build_manifest.js", "source_location": "L1", "_origin": "ast", + "id": "docs_audit_build_manifest", "community": 204, "community_name": "build_manifest.js", - "norm_label": "build_manifest.js", - "id": "docs_audit_build_manifest" + "norm_label": "build_manifest.js" }, { "label": "entries", @@ -23103,10 +23315,10 @@ "source_file": "docs/audit/build_manifest.js", "source_location": "L8", "_origin": "ast", + "id": "docs_audit_build_manifest_entries", "community": 204, "community_name": "build_manifest.js", - "norm_label": "entries", - "id": "docs_audit_build_manifest_entries" + "norm_label": "entries" }, { "label": "lines", @@ -23114,10 +23326,10 @@ "source_file": "docs/audit/build_manifest.js", "source_location": "L3", "_origin": "ast", + "id": "docs_audit_build_manifest_lines", "community": 204, "community_name": "build_manifest.js", - "norm_label": "lines", - "id": "docs_audit_build_manifest_lines" + "norm_label": "lines" }, { "label": "generate_classification.js", @@ -23125,10 +23337,10 @@ "source_file": "docs/audit/generate_classification.js", "source_location": "L1", "_origin": "ast", + "id": "docs_audit_generate_classification", "community": 205, "community_name": "generate_classification.js", - "norm_label": "generate_classification.js", - "id": "docs_audit_generate_classification" + "norm_label": "generate_classification.js" }, { "label": "classified", @@ -23136,10 +23348,10 @@ "source_file": "docs/audit/generate_classification.js", "source_location": "L8", "_origin": "ast", + "id": "docs_audit_generate_classification_classified", "community": 205, "community_name": "generate_classification.js", - "norm_label": "classified", - "id": "docs_audit_generate_classification_classified" + "norm_label": "classified" }, { "label": "lines", @@ -23147,10 +23359,10 @@ "source_file": "docs/audit/generate_classification.js", "source_location": "L3", "_origin": "ast", + "id": "docs_audit_generate_classification_lines", "community": 205, "community_name": "generate_classification.js", - "norm_label": "lines", - "id": "docs_audit_generate_classification_lines" + "norm_label": "lines" }, { "label": "generate_evidence.js", @@ -23158,10 +23370,10 @@ "source_file": "docs/audit/generate_evidence.js", "source_location": "L1", "_origin": "ast", + "id": "docs_audit_generate_evidence", "community": 206, "community_name": "generate_evidence.js", - "norm_label": "generate_evidence.js", - "id": "docs_audit_generate_evidence" + "norm_label": "generate_evidence.js" }, { "label": "classification", @@ -23169,10 +23381,10 @@ "source_file": "docs/audit/generate_evidence.js", "source_location": "L4", "_origin": "ast", + "id": "docs_audit_generate_evidence_classification", "community": 206, "community_name": "generate_evidence.js", - "norm_label": "classification", - "id": "docs_audit_generate_evidence_classification" + "norm_label": "classification" }, { "label": "evidenceEntries", @@ -23180,10 +23392,10 @@ "source_file": "docs/audit/generate_evidence.js", "source_location": "L6", "_origin": "ast", + "id": "docs_audit_generate_evidence_evidenceentries", "community": 206, "community_name": "generate_evidence.js", - "norm_label": "evidenceentries", - "id": "docs_audit_generate_evidence_evidenceentries" + "norm_label": "evidenceentries" }, { "label": "generate_ledger.js", @@ -23191,10 +23403,10 @@ "source_file": "docs/audit/generate_ledger.js", "source_location": "L1", "_origin": "ast", + "id": "docs_audit_generate_ledger", "community": 207, "community_name": "generate_ledger.js", - "norm_label": "generate_ledger.js", - "id": "docs_audit_generate_ledger" + "norm_label": "generate_ledger.js" }, { "label": "evidence", @@ -23202,10 +23414,10 @@ "source_file": "docs/audit/generate_ledger.js", "source_location": "L3", "_origin": "ast", + "id": "docs_audit_generate_ledger_evidence", "community": 207, "community_name": "generate_ledger.js", - "norm_label": "evidence", - "id": "docs_audit_generate_ledger_evidence" + "norm_label": "evidence" }, { "label": "ledgerEntries", @@ -23213,10 +23425,10 @@ "source_file": "docs/audit/generate_ledger.js", "source_location": "L5", "_origin": "ast", + "id": "docs_audit_generate_ledger_ledgerentries", "community": 207, "community_name": "generate_ledger.js", - "norm_label": "ledgerentries", - "id": "docs_audit_generate_ledger_ledgerentries" + "norm_label": "ledgerentries" }, { "label": "generate_manifest.js", @@ -23224,10 +23436,10 @@ "source_file": "docs/audit/generate_manifest.js", "source_location": "L1", "_origin": "ast", + "id": "docs_audit_generate_manifest", "community": 208, "community_name": "generate_manifest.js", - "norm_label": "generate_manifest.js", - "id": "docs_audit_generate_manifest" + "norm_label": "generate_manifest.js" }, { "label": "evidence", @@ -23235,10 +23447,10 @@ "source_file": "docs/audit/generate_manifest.js", "source_location": "L3", "_origin": "ast", + "id": "docs_audit_generate_manifest_evidence", "community": 208, "community_name": "generate_manifest.js", - "norm_label": "evidence", - "id": "docs_audit_generate_manifest_evidence" + "norm_label": "evidence" }, { "label": "manifestEntries", @@ -23246,10 +23458,10 @@ "source_file": "docs/audit/generate_manifest.js", "source_location": "L5", "_origin": "ast", + "id": "docs_audit_generate_manifest_manifestentries", "community": 208, "community_name": "generate_manifest.js", - "norm_label": "manifestentries", - "id": "docs_audit_generate_manifest_manifestentries" + "norm_label": "manifestentries" }, { "label": "sync_honest_manifest.js", @@ -23257,10 +23469,10 @@ "source_file": "docs/audit/sync_honest_manifest.js", "source_location": "L1", "_origin": "ast", + "id": "docs_audit_sync_honest_manifest", "community": 209, "community_name": "sync_honest_manifest.js", - "norm_label": "sync_honest_manifest.js", - "id": "docs_audit_sync_honest_manifest" + "norm_label": "sync_honest_manifest.js" }, { "label": "ledger", @@ -23268,10 +23480,10 @@ "source_file": "docs/audit/sync_honest_manifest.js", "source_location": "L3", "_origin": "ast", + "id": "docs_audit_sync_honest_manifest_ledger", "community": 209, "community_name": "sync_honest_manifest.js", - "norm_label": "ledger", - "id": "docs_audit_sync_honest_manifest_ledger" + "norm_label": "ledger" }, { "label": "manifest", @@ -23279,10 +23491,10 @@ "source_file": "docs/audit/sync_honest_manifest.js", "source_location": "L5", "_origin": "ast", + "id": "docs_audit_sync_honest_manifest_manifest", "community": 209, "community_name": "sync_honest_manifest.js", - "norm_label": "manifest", - "id": "docs_audit_sync_honest_manifest_manifest" + "norm_label": "manifest" }, { "label": "ApiBearerAuth", @@ -23290,10 +23502,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_settings_settings_controller_ts_apibearerauth", "community": 21, "community_name": "Roles", - "norm_label": "apibearerauth", - "id": "backend_src_banners_banners_controller_ts_apibearerauth" + "norm_label": "apibearerauth" }, { "label": "ApiOperation", @@ -23301,10 +23513,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_settings_settings_controller_ts_apioperation", "community": 21, "community_name": "Roles", - "norm_label": "apioperation", - "id": "backend_src_banners_banners_controller_ts_apioperation" + "norm_label": "apioperation" }, { "label": "ApiTags", @@ -23312,10 +23524,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_settings_settings_controller_ts_apitags", "community": 21, "community_name": "Roles", - "norm_label": "apitags", - "id": "backend_src_banners_banners_controller_ts_apitags" + "norm_label": "apitags" }, { "label": "Body", @@ -23323,10 +23535,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_settings_settings_controller_ts_body", "community": 21, "community_name": "Roles", - "norm_label": "body", - "id": "backend_src_banners_banners_controller_ts_body" + "norm_label": "body" }, { "label": "Controller", @@ -23334,10 +23546,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_settings_settings_controller_ts_controller", "community": 21, "community_name": "Roles", - "norm_label": "controller", - "id": "backend_src_banners_banners_controller_ts_controller" + "norm_label": "controller" }, { "label": "Delete", @@ -23345,10 +23557,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_settings_settings_controller_ts_delete", "community": 21, "community_name": "Roles", - "norm_label": "delete", - "id": "backend_src_banners_banners_controller_ts_delete" + "norm_label": "delete" }, { "label": "Get", @@ -23356,10 +23568,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_settings_settings_controller_ts_get", "community": 21, "community_name": "Roles", - "norm_label": "get", - "id": "backend_src_banners_banners_controller_ts_get" + "norm_label": "get" }, { "label": "Param", @@ -23367,10 +23579,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_settings_settings_controller_ts_param", "community": 21, "community_name": "Roles", - "norm_label": "param", - "id": "backend_src_banners_banners_controller_ts_param" + "norm_label": "param" }, { "label": "Patch", @@ -23378,10 +23590,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_settings_settings_controller_ts_patch", "community": 21, "community_name": "Roles", - "norm_label": "patch", - "id": "backend_src_banners_banners_controller_ts_patch" + "norm_label": "patch" }, { "label": "Post", @@ -23389,10 +23601,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_settings_settings_controller_ts_post", "community": 21, "community_name": "Roles", - "norm_label": "post", - "id": "backend_src_banners_banners_controller_ts_post" + "norm_label": "post" }, { "label": "Put", @@ -23400,230 +23612,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_settings_settings_controller_ts_put", "community": 21, "community_name": "Roles", - "norm_label": "put", - "id": "backend_src_banners_banners_controller_ts_put" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "norm_label": "useguards", - "id": "backend_src_banners_banners_controller_ts_useguards" - }, - { - "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": 21, - "community_name": "Roles", - "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": 21, - "community_name": "Roles", - "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": 21, - "community_name": "Roles", - "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": 21, - "community_name": "Roles", - "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": 21, - "community_name": "Roles", - "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": 21, - "community_name": "Roles", - "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": 21, - "community_name": "Roles", - "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": 21, - "community_name": "Roles", - "norm_label": "apibearerauth", - "id": "backend_src_settings_settings_controller_ts_apibearerauth" - }, - { - "label": "ApiOkResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "norm_label": "apiokresponse", - "id": "backend_src_settings_settings_controller_ts_apiokresponse" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "norm_label": "apioperation", - "id": "backend_src_settings_settings_controller_ts_apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "norm_label": "apitags", - "id": "backend_src_settings_settings_controller_ts_apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "norm_label": "body", - "id": "backend_src_settings_settings_controller_ts_body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "norm_label": "controller", - "id": "backend_src_settings_settings_controller_ts_controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "norm_label": "delete", - "id": "backend_src_settings_settings_controller_ts_delete" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "norm_label": "get", - "id": "backend_src_settings_settings_controller_ts_get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "norm_label": "param", - "id": "backend_src_settings_settings_controller_ts_param" - }, - { - "label": "Patch", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "norm_label": "patch", - "id": "backend_src_settings_settings_controller_ts_patch" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "norm_label": "post", - "id": "backend_src_settings_settings_controller_ts_post" - }, - { - "label": "Put", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "norm_label": "put", - "id": "backend_src_settings_settings_controller_ts_put" + "norm_label": "put" }, { "label": "Query", @@ -23631,10 +23623,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_settings_settings_controller_ts_query", "community": 21, "community_name": "Roles", - "norm_label": "query", - "id": "backend_src_settings_settings_controller_ts_query" + "norm_label": "query" }, { "label": "UseGuards", @@ -23642,21 +23634,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_settings_settings_controller_ts_useguards", "community": 21, "community_name": "Roles", - "norm_label": "useguards", - "id": "backend_src_settings_settings_controller_ts_useguards" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 21, - "community_name": "Roles", - "norm_label": "injectable", - "id": "backend_src_settings_settings_service_ts_injectable" + "norm_label": "useguards" }, { "label": "sync_manifest.js", @@ -23664,10 +23645,10 @@ "source_file": "docs/audit/sync_manifest.js", "source_location": "L1", "_origin": "ast", + "id": "docs_audit_sync_manifest", "community": 210, "community_name": "sync_manifest.js", - "norm_label": "sync_manifest.js", - "id": "docs_audit_sync_manifest" + "norm_label": "sync_manifest.js" }, { "label": "ledger", @@ -23675,10 +23656,10 @@ "source_file": "docs/audit/sync_manifest.js", "source_location": "L3", "_origin": "ast", + "id": "docs_audit_sync_manifest_ledger", "community": 210, "community_name": "sync_manifest.js", - "norm_label": "ledger", - "id": "docs_audit_sync_manifest_ledger" + "norm_label": "ledger" }, { "label": "manifestEntries", @@ -23686,10 +23667,10 @@ "source_file": "docs/audit/sync_manifest.js", "source_location": "L5", "_origin": "ast", + "id": "docs_audit_sync_manifest_manifestentries", "community": 210, "community_name": "sync_manifest.js", - "norm_label": "manifestentries", - "id": "docs_audit_sync_manifest_manifestentries" + "norm_label": "manifestentries" }, { "label": "@types/multer", @@ -23697,10 +23678,10 @@ "source_file": "backend/package.json", "source_location": "L56", "_origin": "ast", + "id": "backend_package_devdependencies_types_multer", "community": 211, "community_name": "@types/multer", - "norm_label": "@types/multer", - "id": "backend_package_devdependencies_types_multer" + "norm_label": "@types/multer" }, { "label": "@types/multer", @@ -23708,10 +23689,32 @@ "source_file": "backend/package.json", "source_location": "L56", "_origin": "ast", + "id": "types_multer", "community": 211, "community_name": "@types/multer", - "norm_label": "@types/multer", - "id": "types_multer" + "norm_label": "@types/multer" + }, + { + "label": "bcryptjs", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L33", + "_origin": "ast", + "id": "backend_package_dependencies_bcryptjs", + "community": 212, + "community_name": "bcryptjs", + "norm_label": "bcryptjs" + }, + { + "label": "bcryptjs", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L33", + "_origin": "ast", + "id": "bcryptjs", + "community": 212, + "community_name": "bcryptjs", + "norm_label": "bcryptjs" }, { "label": "@testing-library/jest-dom", @@ -23719,10 +23722,10 @@ "source_file": "frontend/application/package.json", "source_location": "L23", "_origin": "ast", + "id": "frontend_application_package_devdependencies_testing_library_jest_dom", "community": 213, "community_name": "@testing-library/jest-dom", - "norm_label": "@testing-library/jest-dom", - "id": "frontend_application_package_devdependencies_testing_library_jest_dom" + "norm_label": "@testing-library/jest-dom" }, { "label": "@testing-library/jest-dom", @@ -23730,10 +23733,54 @@ "source_file": "frontend/application/package.json", "source_location": "L23", "_origin": "ast", + "id": "testing_library_jest_dom", "community": 213, "community_name": "@testing-library/jest-dom", - "norm_label": "@testing-library/jest-dom", - "id": "testing_library_jest_dom" + "norm_label": "@testing-library/jest-dom" + }, + { + "label": "helmet", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L36", + "_origin": "ast", + "id": "backend_package_dependencies_helmet", + "community": 214, + "community_name": "helmet", + "norm_label": "helmet" + }, + { + "label": "helmet", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L36", + "_origin": "ast", + "id": "helmet", + "community": 214, + "community_name": "helmet", + "norm_label": "helmet" + }, + { + "label": "js-yaml", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L38", + "_origin": "ast", + "id": "backend_package_dependencies_js_yaml", + "community": 215, + "community_name": "js-yaml", + "norm_label": "js-yaml" + }, + { + "label": "js-yaml", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L38", + "_origin": "ast", + "id": "js_yaml", + "community": 215, + "community_name": "js-yaml", + "norm_label": "js-yaml" }, { "label": "FormField.tsx", @@ -23741,10 +23788,10 @@ "source_file": "frontend/admin-panel/src/components/ui/FormField.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_admin_panel_src_components_ui_formfield", "community": 216, "community_name": "FormField.tsx", - "norm_label": "formfield.tsx", - "id": "frontend_admin_panel_src_components_ui_formfield" + "norm_label": "formfield.tsx" }, { "label": "Input.tsx", @@ -23752,10 +23799,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": 217, "community_name": "Input.tsx", - "norm_label": "input.tsx", - "id": "frontend_admin_panel_src_components_ui_input" + "norm_label": "input.tsx" }, { "label": "Input", @@ -23763,10 +23810,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": 217, "community_name": "Input.tsx", - "norm_label": "input", - "id": "frontend_admin_panel_src_components_ui_input_input" + "norm_label": "input" }, { "label": "Textarea.tsx", @@ -23774,10 +23821,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": 218, "community_name": "Textarea.tsx", - "norm_label": "textarea.tsx", - "id": "frontend_admin_panel_src_components_ui_textarea" + "norm_label": "textarea.tsx" }, { "label": "Textarea", @@ -23785,10 +23832,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": 218, "community_name": "Textarea.tsx", - "norm_label": "textarea", - "id": "frontend_admin_panel_src_components_ui_textarea_textarea" + "norm_label": "textarea" }, { "label": "admin-panel/tsconfig.json", @@ -23796,10 +23843,10 @@ "source_file": "frontend/admin-panel/tsconfig.json", "source_location": "L1", "_origin": "ast", + "id": "frontend_admin_panel_tsconfig", "community": 219, "community_name": "admin-panel/tsconfig.json", - "norm_label": "admin-panel/tsconfig.json", - "id": "frontend_admin_panel_tsconfig" + "norm_label": "admin-panel/tsconfig.json" }, { "label": "files", @@ -23807,10 +23854,10 @@ "source_file": "frontend/admin-panel/tsconfig.json", "source_location": "L2", "_origin": "ast", + "id": "frontend_admin_panel_tsconfig_files", "community": 219, "community_name": "admin-panel/tsconfig.json", - "norm_label": "files", - "id": "frontend_admin_panel_tsconfig_files" + "norm_label": "files" }, { "label": "references", @@ -23818,10 +23865,10 @@ "source_file": "frontend/admin-panel/tsconfig.json", "source_location": "L3", "_origin": "ast", + "id": "frontend_admin_panel_tsconfig_references", "community": 219, "community_name": "admin-panel/tsconfig.json", - "norm_label": "references", - "id": "frontend_admin_panel_tsconfig_references" + "norm_label": "references" }, { "label": "06-storefront-audit.md", @@ -23829,10 +23876,10 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L1", "_origin": "ast", + "id": "docs_audit_06_storefront_audit", "community": 22, "community_name": "FE-001", - "norm_label": "06-storefront-audit.md", - "id": "docs_audit_06_storefront_audit" + "norm_label": "06-storefront-audit.md" }, { "label": "Acceptance Criteria", @@ -23840,10 +23887,10 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L96", "_origin": "ast", + "id": "docs_audit_06_storefront_audit_acceptance_criteria", "community": 22, "community_name": "FE-001", - "norm_label": "acceptance criteria", - "id": "docs_audit_06_storefront_audit_acceptance_criteria" + "norm_label": "acceptance criteria" }, { "label": "Affected Application", @@ -23851,10 +23898,10 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L44", "_origin": "ast", + "id": "docs_audit_06_storefront_audit_affected_application", "community": 22, "community_name": "FE-001", - "norm_label": "affected application", - "id": "docs_audit_06_storefront_audit_affected_application" + "norm_label": "affected application" }, { "label": "Affected Files", @@ -23862,10 +23909,10 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L47", "_origin": "ast", + "id": "docs_audit_06_storefront_audit_affected_files", "community": 22, "community_name": "FE-001", - "norm_label": "affected files", - "id": "docs_audit_06_storefront_audit_affected_files" + "norm_label": "affected files" }, { "label": "Alternative Direction", @@ -23873,10 +23920,10 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L78", "_origin": "ast", + "id": "docs_audit_06_storefront_audit_alternative_direction", "community": 22, "community_name": "FE-001", - "norm_label": "alternative direction", - "id": "docs_audit_06_storefront_audit_alternative_direction" + "norm_label": "alternative direction" }, { "label": "Architecture Overview & Confirmed Strengths", @@ -23884,10 +23931,10 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L15", "_origin": "ast", + "id": "docs_audit_06_storefront_audit_architecture_overview_confirmed_strengths", "community": 22, "community_name": "FE-001", - "norm_label": "architecture overview & confirmed strengths", - "id": "docs_audit_06_storefront_audit_architecture_overview_confirmed_strengths" + "norm_label": "architecture overview & confirmed strengths" }, { "label": "Category", @@ -23895,10 +23942,10 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L32", "_origin": "ast", + "id": "docs_audit_06_storefront_audit_category", "community": 22, "community_name": "FE-001", - "norm_label": "category", - "id": "docs_audit_06_storefront_audit_category" + "norm_label": "category" }, { "label": "Completion Statement", @@ -23906,10 +23953,10 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L116", "_origin": "ast", + "id": "docs_audit_06_storefront_audit_completion_statement", "community": 22, "community_name": "FE-001", - "norm_label": "completion statement", - "id": "docs_audit_06_storefront_audit_completion_statement" + "norm_label": "completion statement" }, { "label": "Confidence", @@ -23917,10 +23964,10 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L38", "_origin": "ast", + "id": "docs_audit_06_storefront_audit_confidence", "community": 22, "community_name": "FE-001", - "norm_label": "confidence", - "id": "docs_audit_06_storefront_audit_confidence" + "norm_label": "confidence" }, { "label": "Dependencies", @@ -23928,10 +23975,10 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L84", "_origin": "ast", + "id": "docs_audit_06_storefront_audit_dependencies", "community": 22, "community_name": "FE-001", - "norm_label": "dependencies", - "id": "docs_audit_06_storefront_audit_dependencies" + "norm_label": "dependencies" }, { "label": "Domain", @@ -23939,10 +23986,10 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L29", "_origin": "ast", + "id": "docs_audit_06_storefront_audit_domain", "community": 22, "community_name": "FE-001", - "norm_label": "domain", - "id": "docs_audit_06_storefront_audit_domain" + "norm_label": "domain" }, { "label": "Evidence", @@ -23950,10 +23997,10 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L54", "_origin": "ast", + "id": "docs_audit_06_storefront_audit_evidence", "community": 22, "community_name": "FE-001", - "norm_label": "evidence", - "id": "docs_audit_06_storefront_audit_evidence" + "norm_label": "evidence" }, { "label": "FE-001", @@ -23961,10 +24008,10 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L24", "_origin": "ast", + "id": "docs_audit_06_storefront_audit_fe_001", "community": 22, "community_name": "FE-001", - "norm_label": "fe-001", - "id": "docs_audit_06_storefront_audit_fe_001" + "norm_label": "fe-001" }, { "label": "Finding Summary", @@ -23972,10 +24019,10 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L104", "_origin": "ast", + "id": "docs_audit_06_storefront_audit_finding_summary", "community": 22, "community_name": "FE-001", - "norm_label": "finding summary", - "id": "docs_audit_06_storefront_audit_finding_summary" + "norm_label": "finding summary" }, { "label": "Findings", @@ -23983,10 +24030,10 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L22", "_origin": "ast", + "id": "docs_audit_06_storefront_audit_findings", "community": 22, "community_name": "FE-001", - "norm_label": "findings", - "id": "docs_audit_06_storefront_audit_findings" + "norm_label": "findings" }, { "label": "Implementation Complexity", @@ -23994,10 +24041,10 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L81", "_origin": "ast", + "id": "docs_audit_06_storefront_audit_implementation_complexity", "community": 22, "community_name": "FE-001", - "norm_label": "implementation complexity", - "id": "docs_audit_06_storefront_audit_implementation_complexity" + "norm_label": "implementation complexity" }, { "label": "Notes and Limitations", @@ -24005,10 +24052,10 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L99", "_origin": "ast", + "id": "docs_audit_06_storefront_audit_notes_and_limitations", "community": 22, "community_name": "FE-001", - "norm_label": "notes and limitations", - "id": "docs_audit_06_storefront_audit_notes_and_limitations" + "norm_label": "notes and limitations" }, { "label": "Problem", @@ -24016,10 +24063,10 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L57", "_origin": "ast", + "id": "docs_audit_06_storefront_audit_problem", "community": 22, "community_name": "FE-001", - "norm_label": "problem", - "id": "docs_audit_06_storefront_audit_problem" + "norm_label": "problem" }, { "label": "React / Vite Storefront Audit Report", @@ -24027,10 +24074,10 @@ "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": 22, "community_name": "FE-001", - "norm_label": "react / vite storefront audit report", - "id": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report" + "norm_label": "react / vite storefront audit report" }, { "label": "Recommended Direction", @@ -24038,10 +24085,10 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L75", "_origin": "ast", + "id": "docs_audit_06_storefront_audit_recommended_direction", "community": 22, "community_name": "FE-001", - "norm_label": "recommended direction", - "id": "docs_audit_06_storefront_audit_recommended_direction" + "norm_label": "recommended direction" }, { "label": "Relevant Symbols or Lines", @@ -24049,10 +24096,10 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L51", "_origin": "ast", + "id": "docs_audit_06_storefront_audit_relevant_symbols_or_lines", "community": 22, "community_name": "FE-001", - "norm_label": "relevant symbols or lines", - "id": "docs_audit_06_storefront_audit_relevant_symbols_or_lines" + "norm_label": "relevant symbols or lines" }, { "label": "Risks", @@ -24060,10 +24107,10 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L87", "_origin": "ast", + "id": "docs_audit_06_storefront_audit_risks", "community": 22, "community_name": "FE-001", - "norm_label": "risks", - "id": "docs_audit_06_storefront_audit_risks" + "norm_label": "risks" }, { "label": "Root Cause", @@ -24071,10 +24118,10 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L60", "_origin": "ast", + "id": "docs_audit_06_storefront_audit_root_cause", "community": 22, "community_name": "FE-001", - "norm_label": "root cause", - "id": "docs_audit_06_storefront_audit_root_cause" + "norm_label": "root cause" }, { "label": "Security or Data-Integrity Impact", @@ -24082,10 +24129,10 @@ "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": 22, "community_name": "FE-001", - "norm_label": "security or data-integrity impact", - "id": "docs_audit_06_storefront_audit_security_or_data_integrity_impact" + "norm_label": "security or data-integrity impact" }, { "label": "Severity", @@ -24093,10 +24140,10 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L35", "_origin": "ast", + "id": "docs_audit_06_storefront_audit_severity", "community": 22, "community_name": "FE-001", - "norm_label": "severity", - "id": "docs_audit_06_storefront_audit_severity" + "norm_label": "severity" }, { "label": "Status", @@ -24104,10 +24151,10 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L41", "_origin": "ast", + "id": "docs_audit_06_storefront_audit_status", "community": 22, "community_name": "FE-001", - "norm_label": "status", - "id": "docs_audit_06_storefront_audit_status" + "norm_label": "status" }, { "label": "Technical Impact", @@ -24115,10 +24162,10 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L69", "_origin": "ast", + "id": "docs_audit_06_storefront_audit_technical_impact", "community": 22, "community_name": "FE-001", - "norm_label": "technical impact", - "id": "docs_audit_06_storefront_audit_technical_impact" + "norm_label": "technical impact" }, { "label": "Testing Requirements", @@ -24126,10 +24173,10 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L93", "_origin": "ast", + "id": "docs_audit_06_storefront_audit_testing_requirements", "community": 22, "community_name": "FE-001", - "norm_label": "testing requirements", - "id": "docs_audit_06_storefront_audit_testing_requirements" + "norm_label": "testing requirements" }, { "label": "Title", @@ -24137,10 +24184,10 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L26", "_origin": "ast", + "id": "docs_audit_06_storefront_audit_title", "community": 22, "community_name": "FE-001", - "norm_label": "title", - "id": "docs_audit_06_storefront_audit_title" + "norm_label": "title" }, { "label": "User or Business Impact", @@ -24148,10 +24195,10 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L66", "_origin": "ast", + "id": "docs_audit_06_storefront_audit_user_or_business_impact", "community": 22, "community_name": "FE-001", - "norm_label": "user or business impact", - "id": "docs_audit_06_storefront_audit_user_or_business_impact" + "norm_label": "user or business impact" }, { "label": "Verification Requirements", @@ -24159,10 +24206,10 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L90", "_origin": "ast", + "id": "docs_audit_06_storefront_audit_verification_requirements", "community": 22, "community_name": "FE-001", - "norm_label": "verification requirements", - "id": "docs_audit_06_storefront_audit_verification_requirements" + "norm_label": "verification requirements" }, { "label": "Why It Matters", @@ -24170,10 +24217,10 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L63", "_origin": "ast", + "id": "docs_audit_06_storefront_audit_why_it_matters", "community": 22, "community_name": "FE-001", - "norm_label": "why it matters", - "id": "docs_audit_06_storefront_audit_why_it_matters" + "norm_label": "why it matters" }, { "label": "about/page.tsx", @@ -24181,10 +24228,10 @@ "source_file": "frontend/application/app/about/page.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_app_about_page", "community": 220, "community_name": "about/page.tsx", - "norm_label": "about/page.tsx", - "id": "frontend_application_app_about_page" + "norm_label": "about/page.tsx" }, { "label": "metadata", @@ -24192,10 +24239,10 @@ "source_file": "frontend/application/app/about/page.tsx", "source_location": "L4", "_origin": "ast", + "id": "frontend_application_app_about_page_metadata", "community": 220, "community_name": "about/page.tsx", - "norm_label": "metadata", - "id": "frontend_application_app_about_page_metadata" + "norm_label": "metadata" }, { "label": "privacy/page.tsx", @@ -24203,10 +24250,10 @@ "source_file": "frontend/application/app/privacy/page.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_app_privacy_page", "community": 221, "community_name": "privacy/page.tsx", - "norm_label": "privacy/page.tsx", - "id": "frontend_application_app_privacy_page" + "norm_label": "privacy/page.tsx" }, { "label": "metadata", @@ -24214,10 +24261,10 @@ "source_file": "frontend/application/app/privacy/page.tsx", "source_location": "L4", "_origin": "ast", + "id": "frontend_application_app_privacy_page_metadata", "community": 221, "community_name": "privacy/page.tsx", - "norm_label": "metadata", - "id": "frontend_application_app_privacy_page_metadata" + "norm_label": "metadata" }, { "label": "next.config.ts", @@ -24225,10 +24272,10 @@ "source_file": "frontend/application/next.config.ts", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_next_config", "community": 222, "community_name": "next.config.ts", - "norm_label": "next.config.ts", - "id": "frontend_application_next_config" + "norm_label": "next.config.ts" }, { "label": "nextConfig", @@ -24236,10 +24283,10 @@ "source_file": "frontend/application/next.config.ts", "source_location": "L12", "_origin": "ast", + "id": "frontend_application_next_config_nextconfig", "community": 222, "community_name": "next.config.ts", - "norm_label": "nextconfig", - "id": "frontend_application_next_config_nextconfig" + "norm_label": "nextconfig" }, { "label": "securityHeaders", @@ -24247,10 +24294,10 @@ "source_file": "frontend/application/next.config.ts", "source_location": "L3", "_origin": "ast", + "id": "frontend_application_next_config_securityheaders", "community": 222, "community_name": "next.config.ts", - "norm_label": "securityheaders", - "id": "frontend_application_next_config_securityheaders" + "norm_label": "securityheaders" }, { "label": "AGENTS.md", @@ -24258,10 +24305,10 @@ "source_file": "AGENTS.md", "source_location": "L1", "_origin": "ast", + "id": "agents", "community": 224, "community_name": "AGENTS.md", - "norm_label": "agents.md", - "id": "agents" + "norm_label": "agents.md" }, { "label": "graphify", @@ -24269,10 +24316,10 @@ "source_file": "AGENTS.md", "source_location": "L1", "_origin": "ast", + "id": "agents_graphify", "community": 224, "community_name": "AGENTS.md", - "norm_label": "graphify", - "id": "agents_graphify" + "norm_label": "graphify" }, { "label": "rules/graphify.md", @@ -24280,10 +24327,10 @@ "source_file": ".agents/rules/graphify.md", "source_location": "L1", "_origin": "ast", + "id": "agents_rules_graphify", "community": 225, "community_name": "rules/graphify.md", - "norm_label": "rules/graphify.md", - "id": "agents_rules_graphify" + "norm_label": "rules/graphify.md" }, { "label": "graphify", @@ -24291,10 +24338,10 @@ "source_file": ".agents/rules/graphify.md", "source_location": "L6", "_origin": "ast", + "id": "agents_rules_graphify_graphify", "community": 225, "community_name": "rules/graphify.md", - "norm_label": "graphify", - "id": "agents_rules_graphify_graphify" + "norm_label": "graphify" }, { "label": ".agents/workflows/graphify.md", @@ -24302,10 +24349,10 @@ "source_file": ".agents/workflows/graphify.md", "source_location": "L1", "_origin": "ast", + "id": "agents_workflows_graphify", "community": 226, "community_name": ".agents/workflows/graphify.md", - "norm_label": ".agents/workflows/graphify.md", - "id": "agents_workflows_graphify" + "norm_label": ".agents/workflows/graphify.md" }, { "label": "Workflow: graphify", @@ -24313,10 +24360,10 @@ "source_file": ".agents/workflows/graphify.md", "source_location": "L6", "_origin": "ast", + "id": "agents_workflows_graphify_workflow_graphify", "community": 226, "community_name": ".agents/workflows/graphify.md", - "norm_label": "workflow: graphify", - "id": "agents_workflows_graphify_workflow_graphify" + "norm_label": "workflow: graphify" }, { "label": "instructions.md", @@ -24324,10 +24371,10 @@ "source_file": ".antigravity/instructions.md", "source_location": "L1", "_origin": "ast", + "id": "antigravity_instructions", "community": 227, "community_name": "instructions.md", - "norm_label": "instructions.md", - "id": "antigravity_instructions" + "norm_label": "instructions.md" }, { "label": "graphify", @@ -24335,10 +24382,10 @@ "source_file": ".antigravity/instructions.md", "source_location": "L1", "_origin": "ast", + "id": "antigravity_instructions_graphify", "community": 227, "community_name": "instructions.md", - "norm_label": "graphify", - "id": "antigravity_instructions_graphify" + "norm_label": "graphify" }, { "label": "eslint-plugin-react-hooks", @@ -24346,10 +24393,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L33", "_origin": "ast", + "id": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_hooks", "community": 228, "community_name": "eslint-plugin-react-hooks", - "norm_label": "eslint-plugin-react-hooks", - "id": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_hooks" + "norm_label": "eslint-plugin-react-hooks" }, { "label": "eslint-plugin-react-hooks", @@ -24357,10 +24404,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L33", "_origin": "ast", + "id": "eslint_plugin_react_hooks", "community": 228, "community_name": "eslint-plugin-react-hooks", - "norm_label": "eslint-plugin-react-hooks", - "id": "eslint_plugin_react_hooks" + "norm_label": "eslint-plugin-react-hooks" }, { "label": "eslint-plugin-react-refresh", @@ -24368,10 +24415,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L34", "_origin": "ast", + "id": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_refresh", "community": 229, "community_name": "eslint-plugin-react-refresh", - "norm_label": "eslint-plugin-react-refresh", - "id": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_refresh" + "norm_label": "eslint-plugin-react-refresh" }, { "label": "eslint-plugin-react-refresh", @@ -24379,10 +24426,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L34", "_origin": "ast", + "id": "eslint_plugin_react_refresh", "community": 229, "community_name": "eslint-plugin-react-refresh", - "norm_label": "eslint-plugin-react-refresh", - "id": "eslint_plugin_react_refresh" + "norm_label": "eslint-plugin-react-refresh" }, { "label": "08-admin-features-audit.md", @@ -24390,10 +24437,10 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L1", "_origin": "ast", + "id": "docs_audit_08_admin_features_audit", "community": 23, "community_name": "ADM-001", - "norm_label": "08-admin-features-audit.md", - "id": "docs_audit_08_admin_features_audit" + "norm_label": "08-admin-features-audit.md" }, { "label": "Acceptance Criteria", @@ -24401,10 +24448,10 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L101", "_origin": "ast", + "id": "docs_audit_08_admin_features_audit_acceptance_criteria", "community": 23, "community_name": "ADM-001", - "norm_label": "acceptance criteria", - "id": "docs_audit_08_admin_features_audit_acceptance_criteria" + "norm_label": "acceptance criteria" }, { "label": "ADM-001", @@ -24412,10 +24459,10 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L23", "_origin": "ast", + "id": "docs_audit_08_admin_features_audit_adm_001", "community": 23, "community_name": "ADM-001", - "norm_label": "adm-001", - "id": "docs_audit_08_admin_features_audit_adm_001" + "norm_label": "adm-001" }, { "label": "Admin Features Audit Report", @@ -24423,10 +24470,10 @@ "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": 23, "community_name": "ADM-001", - "norm_label": "admin features audit report", - "id": "docs_audit_08_admin_features_audit_admin_features_audit_report" + "norm_label": "admin features audit report" }, { "label": "Affected Application", @@ -24434,10 +24481,10 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L43", "_origin": "ast", + "id": "docs_audit_08_admin_features_audit_affected_application", "community": 23, "community_name": "ADM-001", - "norm_label": "affected application", - "id": "docs_audit_08_admin_features_audit_affected_application" + "norm_label": "affected application" }, { "label": "Affected Files", @@ -24445,10 +24492,10 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L46", "_origin": "ast", + "id": "docs_audit_08_admin_features_audit_affected_files", "community": 23, "community_name": "ADM-001", - "norm_label": "affected files", - "id": "docs_audit_08_admin_features_audit_affected_files" + "norm_label": "affected files" }, { "label": "Alternative Direction", @@ -24456,10 +24503,10 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L83", "_origin": "ast", + "id": "docs_audit_08_admin_features_audit_alternative_direction", "community": 23, "community_name": "ADM-001", - "norm_label": "alternative direction", - "id": "docs_audit_08_admin_features_audit_alternative_direction" + "norm_label": "alternative direction" }, { "label": "Category", @@ -24467,10 +24514,10 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L31", "_origin": "ast", + "id": "docs_audit_08_admin_features_audit_category", "community": 23, "community_name": "ADM-001", - "norm_label": "category", - "id": "docs_audit_08_admin_features_audit_category" + "norm_label": "category" }, { "label": "Completion Statement", @@ -24478,10 +24525,10 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L121", "_origin": "ast", + "id": "docs_audit_08_admin_features_audit_completion_statement", "community": 23, "community_name": "ADM-001", - "norm_label": "completion statement", - "id": "docs_audit_08_admin_features_audit_completion_statement" + "norm_label": "completion statement" }, { "label": "Confidence", @@ -24489,10 +24536,10 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L37", "_origin": "ast", + "id": "docs_audit_08_admin_features_audit_confidence", "community": 23, "community_name": "ADM-001", - "norm_label": "confidence", - "id": "docs_audit_08_admin_features_audit_confidence" + "norm_label": "confidence" }, { "label": "Dependencies", @@ -24500,10 +24547,10 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L89", "_origin": "ast", + "id": "docs_audit_08_admin_features_audit_dependencies", "community": 23, "community_name": "ADM-001", - "norm_label": "dependencies", - "id": "docs_audit_08_admin_features_audit_dependencies" + "norm_label": "dependencies" }, { "label": "Domain", @@ -24511,10 +24558,10 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L28", "_origin": "ast", + "id": "docs_audit_08_admin_features_audit_domain", "community": 23, "community_name": "ADM-001", - "norm_label": "domain", - "id": "docs_audit_08_admin_features_audit_domain" + "norm_label": "domain" }, { "label": "Domain Overview & Confirmed Strengths", @@ -24522,10 +24569,10 @@ "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": 23, "community_name": "ADM-001", - "norm_label": "domain overview & confirmed strengths", - "id": "docs_audit_08_admin_features_audit_domain_overview_confirmed_strengths" + "norm_label": "domain overview & confirmed strengths" }, { "label": "Evidence", @@ -24533,10 +24580,10 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L53", "_origin": "ast", + "id": "docs_audit_08_admin_features_audit_evidence", "community": 23, "community_name": "ADM-001", - "norm_label": "evidence", - "id": "docs_audit_08_admin_features_audit_evidence" + "norm_label": "evidence" }, { "label": "Finding Summary", @@ -24544,10 +24591,10 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L109", "_origin": "ast", + "id": "docs_audit_08_admin_features_audit_finding_summary", "community": 23, "community_name": "ADM-001", - "norm_label": "finding summary", - "id": "docs_audit_08_admin_features_audit_finding_summary" + "norm_label": "finding summary" }, { "label": "Findings", @@ -24555,10 +24602,10 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L21", "_origin": "ast", + "id": "docs_audit_08_admin_features_audit_findings", "community": 23, "community_name": "ADM-001", - "norm_label": "findings", - "id": "docs_audit_08_admin_features_audit_findings" + "norm_label": "findings" }, { "label": "Implementation Complexity", @@ -24566,10 +24613,10 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L86", "_origin": "ast", + "id": "docs_audit_08_admin_features_audit_implementation_complexity", "community": 23, "community_name": "ADM-001", - "norm_label": "implementation complexity", - "id": "docs_audit_08_admin_features_audit_implementation_complexity" + "norm_label": "implementation complexity" }, { "label": "Notes and Limitations", @@ -24577,10 +24624,10 @@ "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": 23, "community_name": "ADM-001", - "norm_label": "notes and limitations", - "id": "docs_audit_08_admin_features_audit_notes_and_limitations" + "norm_label": "notes and limitations" }, { "label": "Problem", @@ -24588,10 +24635,10 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L62", "_origin": "ast", + "id": "docs_audit_08_admin_features_audit_problem", "community": 23, "community_name": "ADM-001", - "norm_label": "problem", - "id": "docs_audit_08_admin_features_audit_problem" + "norm_label": "problem" }, { "label": "Recommended Direction", @@ -24599,10 +24646,10 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L80", "_origin": "ast", + "id": "docs_audit_08_admin_features_audit_recommended_direction", "community": 23, "community_name": "ADM-001", - "norm_label": "recommended direction", - "id": "docs_audit_08_admin_features_audit_recommended_direction" + "norm_label": "recommended direction" }, { "label": "Relevant Symbols or Lines", @@ -24610,10 +24657,10 @@ "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": 23, "community_name": "ADM-001", - "norm_label": "relevant symbols or lines", - "id": "docs_audit_08_admin_features_audit_relevant_symbols_or_lines" + "norm_label": "relevant symbols or lines" }, { "label": "Risks", @@ -24621,10 +24668,10 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L92", "_origin": "ast", + "id": "docs_audit_08_admin_features_audit_risks", "community": 23, "community_name": "ADM-001", - "norm_label": "risks", - "id": "docs_audit_08_admin_features_audit_risks" + "norm_label": "risks" }, { "label": "Root Cause", @@ -24632,10 +24679,10 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L65", "_origin": "ast", + "id": "docs_audit_08_admin_features_audit_root_cause", "community": 23, "community_name": "ADM-001", - "norm_label": "root cause", - "id": "docs_audit_08_admin_features_audit_root_cause" + "norm_label": "root cause" }, { "label": "Security or Data-Integrity Impact", @@ -24643,10 +24690,10 @@ "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": 23, "community_name": "ADM-001", - "norm_label": "security or data-integrity impact", - "id": "docs_audit_08_admin_features_audit_security_or_data_integrity_impact" + "norm_label": "security or data-integrity impact" }, { "label": "Severity", @@ -24654,10 +24701,10 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L34", "_origin": "ast", + "id": "docs_audit_08_admin_features_audit_severity", "community": 23, "community_name": "ADM-001", - "norm_label": "severity", - "id": "docs_audit_08_admin_features_audit_severity" + "norm_label": "severity" }, { "label": "Status", @@ -24665,10 +24712,10 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L40", "_origin": "ast", + "id": "docs_audit_08_admin_features_audit_status", "community": 23, "community_name": "ADM-001", - "norm_label": "status", - "id": "docs_audit_08_admin_features_audit_status" + "norm_label": "status" }, { "label": "Technical Impact", @@ -24676,10 +24723,10 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L74", "_origin": "ast", + "id": "docs_audit_08_admin_features_audit_technical_impact", "community": 23, "community_name": "ADM-001", - "norm_label": "technical impact", - "id": "docs_audit_08_admin_features_audit_technical_impact" + "norm_label": "technical impact" }, { "label": "Testing Requirements", @@ -24687,10 +24734,10 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L98", "_origin": "ast", + "id": "docs_audit_08_admin_features_audit_testing_requirements", "community": 23, "community_name": "ADM-001", - "norm_label": "testing requirements", - "id": "docs_audit_08_admin_features_audit_testing_requirements" + "norm_label": "testing requirements" }, { "label": "Title", @@ -24698,10 +24745,10 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L25", "_origin": "ast", + "id": "docs_audit_08_admin_features_audit_title", "community": 23, "community_name": "ADM-001", - "norm_label": "title", - "id": "docs_audit_08_admin_features_audit_title" + "norm_label": "title" }, { "label": "User or Business Impact", @@ -24709,10 +24756,10 @@ "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": 23, "community_name": "ADM-001", - "norm_label": "user or business impact", - "id": "docs_audit_08_admin_features_audit_user_or_business_impact" + "norm_label": "user or business impact" }, { "label": "Verification Requirements", @@ -24720,10 +24767,10 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L95", "_origin": "ast", + "id": "docs_audit_08_admin_features_audit_verification_requirements", "community": 23, "community_name": "ADM-001", - "norm_label": "verification requirements", - "id": "docs_audit_08_admin_features_audit_verification_requirements" + "norm_label": "verification requirements" }, { "label": "Why It Matters", @@ -24731,10 +24778,10 @@ "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": 23, "community_name": "ADM-001", - "norm_label": "why it matters", - "id": "docs_audit_08_admin_features_audit_why_it_matters" + "norm_label": "why it matters" }, { "label": "@tailwindcss/postcss", @@ -24742,10 +24789,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L26", "_origin": "ast", + "id": "frontend_admin_panel_package_devdependencies_tailwindcss_postcss", "community": 230, "community_name": "@tailwindcss/postcss", - "norm_label": "@tailwindcss/postcss", - "id": "frontend_admin_panel_package_devdependencies_tailwindcss_postcss" + "norm_label": "@tailwindcss/postcss" }, { "label": "@tailwindcss/postcss", @@ -24753,10 +24800,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L26", "_origin": "ast", + "id": "frontend_admin_panel_package_json_tailwindcss_postcss", "community": 230, "community_name": "@tailwindcss/postcss", - "norm_label": "@tailwindcss/postcss", - "id": "frontend_admin_panel_package_json_tailwindcss_postcss" + "norm_label": "@tailwindcss/postcss" }, { "label": "typescript", @@ -24764,10 +24811,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L38", "_origin": "ast", + "id": "frontend_admin_panel_package_devdependencies_typescript", "community": 231, "community_name": "typescript", - "norm_label": "typescript", - "id": "frontend_admin_panel_package_devdependencies_typescript" + "norm_label": "typescript" }, { "label": "typescript", @@ -24775,10 +24822,32 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L38", "_origin": "ast", + "id": "frontend_admin_panel_package_json_typescript", "community": 231, "community_name": "typescript", - "norm_label": "typescript", - "id": "frontend_admin_panel_package_json_typescript" + "norm_label": "typescript" + }, + { + "label": "@nestjs/core", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L25", + "_origin": "ast", + "id": "backend_package_dependencies_nestjs_core", + "community": 232, + "community_name": "@nestjs/core", + "norm_label": "@nestjs/core" + }, + { + "label": "@nestjs/core", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L25", + "_origin": "ast", + "id": "nestjs_core", + "community": 232, + "community_name": "@nestjs/core", + "norm_label": "@nestjs/core" }, { "label": "@testing-library/react", @@ -24786,10 +24855,10 @@ "source_file": "frontend/application/package.json", "source_location": "L24", "_origin": "ast", + "id": "frontend_application_package_devdependencies_testing_library_react", "community": 233, "community_name": "@testing-library/react", - "norm_label": "@testing-library/react", - "id": "frontend_application_package_devdependencies_testing_library_react" + "norm_label": "@testing-library/react" }, { "label": "@testing-library/react", @@ -24797,10 +24866,10 @@ "source_file": "frontend/application/package.json", "source_location": "L24", "_origin": "ast", + "id": "testing_library_react", "community": 233, "community_name": "@testing-library/react", - "norm_label": "@testing-library/react", - "id": "testing_library_react" + "norm_label": "@testing-library/react" }, { "label": "@types/react", @@ -24808,10 +24877,10 @@ "source_file": "frontend/application/package.json", "source_location": "L26", "_origin": "ast", + "id": "frontend_application_package_devdependencies_types_react", "community": 234, "community_name": "@types/react", - "norm_label": "@types/react", - "id": "frontend_application_package_devdependencies_types_react" + "norm_label": "@types/react" }, { "label": "@types/react", @@ -24819,10 +24888,10 @@ "source_file": "frontend/application/package.json", "source_location": "L26", "_origin": "ast", + "id": "frontend_application_package_json_types_react", "community": 234, "community_name": "@types/react", - "norm_label": "@types/react", - "id": "frontend_application_package_json_types_react" + "norm_label": "@types/react" }, { "label": "typescript", @@ -24830,10 +24899,10 @@ "source_file": "frontend/application/package.json", "source_location": "L33", "_origin": "ast", + "id": "frontend_application_package_devdependencies_typescript", "community": 235, "community_name": "typescript", - "norm_label": "typescript", - "id": "frontend_application_package_devdependencies_typescript" + "norm_label": "typescript" }, { "label": "typescript", @@ -24841,10 +24910,10 @@ "source_file": "frontend/application/package.json", "source_location": "L33", "_origin": "ast", + "id": "frontend_application_package_json_typescript", "community": 235, "community_name": "typescript", - "norm_label": "typescript", - "id": "frontend_application_package_json_typescript" + "norm_label": "typescript" }, { "label": "vitest", @@ -24852,10 +24921,10 @@ "source_file": "frontend/application/package.json", "source_location": "L34", "_origin": "ast", + "id": "frontend_application_package_devdependencies_vitest", "community": 236, "community_name": "vitest", - "norm_label": "vitest", - "id": "frontend_application_package_devdependencies_vitest" + "norm_label": "vitest" }, { "label": "vitest", @@ -24863,10 +24932,76 @@ "source_file": "frontend/application/package.json", "source_location": "L34", "_origin": "ast", + "id": "vitest", "community": 236, "community_name": "vitest", - "norm_label": "vitest", - "id": "vitest" + "norm_label": "vitest" + }, + { + "label": "@nestjs/jwt", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L26", + "_origin": "ast", + "id": "backend_package_dependencies_nestjs_jwt", + "community": 237, + "community_name": "@nestjs/jwt", + "norm_label": "@nestjs/jwt" + }, + { + "label": "@nestjs/jwt", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L26", + "_origin": "ast", + "id": "nestjs_jwt", + "community": 237, + "community_name": "@nestjs/jwt", + "norm_label": "@nestjs/jwt" + }, + { + "label": "@nestjs/swagger", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L29", + "_origin": "ast", + "id": "backend_package_dependencies_nestjs_swagger", + "community": 238, + "community_name": "@nestjs/swagger", + "norm_label": "@nestjs/swagger" + }, + { + "label": "@nestjs/swagger", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L29", + "_origin": "ast", + "id": "nestjs_swagger", + "community": 238, + "community_name": "@nestjs/swagger", + "norm_label": "@nestjs/swagger" + }, + { + "label": "@nestjs/throttler", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L30", + "_origin": "ast", + "id": "backend_package_dependencies_nestjs_throttler", + "community": 239, + "community_name": "@nestjs/throttler", + "norm_label": "@nestjs/throttler" + }, + { + "label": "@nestjs/throttler", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L30", + "_origin": "ast", + "id": "nestjs_throttler", + "community": 239, + "community_name": "@nestjs/throttler", + "norm_label": "@nestjs/throttler" }, { "label": "09-database-audit.md", @@ -24874,10 +25009,10 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L1", "_origin": "ast", + "id": "docs_audit_09_database_audit", "community": 24, "community_name": "DB-001", - "norm_label": "09-database-audit.md", - "id": "docs_audit_09_database_audit" + "norm_label": "09-database-audit.md" }, { "label": "Acceptance Criteria", @@ -24885,10 +25020,10 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L103", "_origin": "ast", + "id": "docs_audit_09_database_audit_acceptance_criteria", "community": 24, "community_name": "DB-001", - "norm_label": "acceptance criteria", - "id": "docs_audit_09_database_audit_acceptance_criteria" + "norm_label": "acceptance criteria" }, { "label": "Affected Application", @@ -24896,10 +25031,10 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L43", "_origin": "ast", + "id": "docs_audit_09_database_audit_affected_application", "community": 24, "community_name": "DB-001", - "norm_label": "affected application", - "id": "docs_audit_09_database_audit_affected_application" + "norm_label": "affected application" }, { "label": "Affected Files", @@ -24907,10 +25042,10 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L46", "_origin": "ast", + "id": "docs_audit_09_database_audit_affected_files", "community": 24, "community_name": "DB-001", - "norm_label": "affected files", - "id": "docs_audit_09_database_audit_affected_files" + "norm_label": "affected files" }, { "label": "Alternative Direction", @@ -24918,10 +25053,10 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L85", "_origin": "ast", + "id": "docs_audit_09_database_audit_alternative_direction", "community": 24, "community_name": "DB-001", - "norm_label": "alternative direction", - "id": "docs_audit_09_database_audit_alternative_direction" + "norm_label": "alternative direction" }, { "label": "Category", @@ -24929,10 +25064,10 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L31", "_origin": "ast", + "id": "docs_audit_09_database_audit_category", "community": 24, "community_name": "DB-001", - "norm_label": "category", - "id": "docs_audit_09_database_audit_category" + "norm_label": "category" }, { "label": "Completion Statement", @@ -24940,10 +25075,10 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L123", "_origin": "ast", + "id": "docs_audit_09_database_audit_completion_statement", "community": 24, "community_name": "DB-001", - "norm_label": "completion statement", - "id": "docs_audit_09_database_audit_completion_statement" + "norm_label": "completion statement" }, { "label": "Confidence", @@ -24951,10 +25086,10 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L37", "_origin": "ast", + "id": "docs_audit_09_database_audit_confidence", "community": 24, "community_name": "DB-001", - "norm_label": "confidence", - "id": "docs_audit_09_database_audit_confidence" + "norm_label": "confidence" }, { "label": "Database and Data Integrity Audit Report", @@ -24962,10 +25097,10 @@ "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": 24, "community_name": "DB-001", - "norm_label": "database and data integrity audit report", - "id": "docs_audit_09_database_audit_database_and_data_integrity_audit_report" + "norm_label": "database and data integrity audit report" }, { "label": "DB-001", @@ -24973,10 +25108,10 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L23", "_origin": "ast", + "id": "docs_audit_09_database_audit_db_001", "community": 24, "community_name": "DB-001", - "norm_label": "db-001", - "id": "docs_audit_09_database_audit_db_001" + "norm_label": "db-001" }, { "label": "Dependencies", @@ -24984,10 +25119,10 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L91", "_origin": "ast", + "id": "docs_audit_09_database_audit_dependencies", "community": 24, "community_name": "DB-001", - "norm_label": "dependencies", - "id": "docs_audit_09_database_audit_dependencies" + "norm_label": "dependencies" }, { "label": "Domain", @@ -24995,10 +25130,10 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L28", "_origin": "ast", + "id": "docs_audit_09_database_audit_domain", "community": 24, "community_name": "DB-001", - "norm_label": "domain", - "id": "docs_audit_09_database_audit_domain" + "norm_label": "domain" }, { "label": "Domain Overview & Confirmed Strengths", @@ -25006,10 +25141,10 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L15", "_origin": "ast", + "id": "docs_audit_09_database_audit_domain_overview_confirmed_strengths", "community": 24, "community_name": "DB-001", - "norm_label": "domain overview & confirmed strengths", - "id": "docs_audit_09_database_audit_domain_overview_confirmed_strengths" + "norm_label": "domain overview & confirmed strengths" }, { "label": "Evidence", @@ -25017,10 +25152,10 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L52", "_origin": "ast", + "id": "docs_audit_09_database_audit_evidence", "community": 24, "community_name": "DB-001", - "norm_label": "evidence", - "id": "docs_audit_09_database_audit_evidence" + "norm_label": "evidence" }, { "label": "Finding Summary", @@ -25028,10 +25163,10 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L111", "_origin": "ast", + "id": "docs_audit_09_database_audit_finding_summary", "community": 24, "community_name": "DB-001", - "norm_label": "finding summary", - "id": "docs_audit_09_database_audit_finding_summary" + "norm_label": "finding summary" }, { "label": "Findings", @@ -25039,10 +25174,10 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L21", "_origin": "ast", + "id": "docs_audit_09_database_audit_findings", "community": 24, "community_name": "DB-001", - "norm_label": "findings", - "id": "docs_audit_09_database_audit_findings" + "norm_label": "findings" }, { "label": "Implementation Complexity", @@ -25050,10 +25185,10 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L88", "_origin": "ast", + "id": "docs_audit_09_database_audit_implementation_complexity", "community": 24, "community_name": "DB-001", - "norm_label": "implementation complexity", - "id": "docs_audit_09_database_audit_implementation_complexity" + "norm_label": "implementation complexity" }, { "label": "Notes and Limitations", @@ -25061,10 +25196,10 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L106", "_origin": "ast", + "id": "docs_audit_09_database_audit_notes_and_limitations", "community": 24, "community_name": "DB-001", - "norm_label": "notes and limitations", - "id": "docs_audit_09_database_audit_notes_and_limitations" + "norm_label": "notes and limitations" }, { "label": "Problem", @@ -25072,10 +25207,10 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L64", "_origin": "ast", + "id": "docs_audit_09_database_audit_problem", "community": 24, "community_name": "DB-001", - "norm_label": "problem", - "id": "docs_audit_09_database_audit_problem" + "norm_label": "problem" }, { "label": "Recommended Direction", @@ -25083,10 +25218,10 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L82", "_origin": "ast", + "id": "docs_audit_09_database_audit_recommended_direction", "community": 24, "community_name": "DB-001", - "norm_label": "recommended direction", - "id": "docs_audit_09_database_audit_recommended_direction" + "norm_label": "recommended direction" }, { "label": "Relevant Symbols or Lines", @@ -25094,10 +25229,10 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L49", "_origin": "ast", + "id": "docs_audit_09_database_audit_relevant_symbols_or_lines", "community": 24, "community_name": "DB-001", - "norm_label": "relevant symbols or lines", - "id": "docs_audit_09_database_audit_relevant_symbols_or_lines" + "norm_label": "relevant symbols or lines" }, { "label": "Risks", @@ -25105,10 +25240,10 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L94", "_origin": "ast", + "id": "docs_audit_09_database_audit_risks", "community": 24, "community_name": "DB-001", - "norm_label": "risks", - "id": "docs_audit_09_database_audit_risks" + "norm_label": "risks" }, { "label": "Root Cause", @@ -25116,10 +25251,10 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L67", "_origin": "ast", + "id": "docs_audit_09_database_audit_root_cause", "community": 24, "community_name": "DB-001", - "norm_label": "root cause", - "id": "docs_audit_09_database_audit_root_cause" + "norm_label": "root cause" }, { "label": "Security or Data-Integrity Impact", @@ -25127,10 +25262,10 @@ "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": 24, "community_name": "DB-001", - "norm_label": "security or data-integrity impact", - "id": "docs_audit_09_database_audit_security_or_data_integrity_impact" + "norm_label": "security or data-integrity impact" }, { "label": "Severity", @@ -25138,10 +25273,10 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L34", "_origin": "ast", + "id": "docs_audit_09_database_audit_severity", "community": 24, "community_name": "DB-001", - "norm_label": "severity", - "id": "docs_audit_09_database_audit_severity" + "norm_label": "severity" }, { "label": "Status", @@ -25149,10 +25284,10 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L40", "_origin": "ast", + "id": "docs_audit_09_database_audit_status", "community": 24, "community_name": "DB-001", - "norm_label": "status", - "id": "docs_audit_09_database_audit_status" + "norm_label": "status" }, { "label": "Technical Impact", @@ -25160,10 +25295,10 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L76", "_origin": "ast", + "id": "docs_audit_09_database_audit_technical_impact", "community": 24, "community_name": "DB-001", - "norm_label": "technical impact", - "id": "docs_audit_09_database_audit_technical_impact" + "norm_label": "technical impact" }, { "label": "Testing Requirements", @@ -25171,10 +25306,10 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L100", "_origin": "ast", + "id": "docs_audit_09_database_audit_testing_requirements", "community": 24, "community_name": "DB-001", - "norm_label": "testing requirements", - "id": "docs_audit_09_database_audit_testing_requirements" + "norm_label": "testing requirements" }, { "label": "Title", @@ -25182,10 +25317,10 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L25", "_origin": "ast", + "id": "docs_audit_09_database_audit_title", "community": 24, "community_name": "DB-001", - "norm_label": "title", - "id": "docs_audit_09_database_audit_title" + "norm_label": "title" }, { "label": "User or Business Impact", @@ -25193,10 +25328,10 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L73", "_origin": "ast", + "id": "docs_audit_09_database_audit_user_or_business_impact", "community": 24, "community_name": "DB-001", - "norm_label": "user or business impact", - "id": "docs_audit_09_database_audit_user_or_business_impact" + "norm_label": "user or business impact" }, { "label": "Verification Requirements", @@ -25204,10 +25339,10 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L97", "_origin": "ast", + "id": "docs_audit_09_database_audit_verification_requirements", "community": 24, "community_name": "DB-001", - "norm_label": "verification requirements", - "id": "docs_audit_09_database_audit_verification_requirements" + "norm_label": "verification requirements" }, { "label": "Why It Matters", @@ -25215,10 +25350,10 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L70", "_origin": "ast", + "id": "docs_audit_09_database_audit_why_it_matters", "community": 24, "community_name": "DB-001", - "norm_label": "why it matters", - "id": "docs_audit_09_database_audit_why_it_matters" + "norm_label": "why it matters" }, { "label": "ts-loader", @@ -25226,10 +25361,10 @@ "source_file": "backend/package.json", "source_location": "L70", "_origin": "ast", + "id": "backend_package_devdependencies_ts_loader", "community": 240, "community_name": "ts-loader", - "norm_label": "ts-loader", - "id": "backend_package_devdependencies_ts_loader" + "norm_label": "ts-loader" }, { "label": "ts-loader", @@ -25237,10 +25372,32 @@ "source_file": "backend/package.json", "source_location": "L70", "_origin": "ast", + "id": "ts_loader", "community": 240, "community_name": "ts-loader", - "norm_label": "ts-loader", - "id": "ts_loader" + "norm_label": "ts-loader" + }, + { + "label": "passport-jwt", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L40", + "_origin": "ast", + "id": "backend_package_dependencies_passport_jwt", + "community": 241, + "community_name": "passport-jwt", + "norm_label": "passport-jwt" + }, + { + "label": "passport-jwt", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L40", + "_origin": "ast", + "id": "passport_jwt", + "community": 241, + "community_name": "passport-jwt", + "norm_label": "passport-jwt" }, { "label": "@types/bcrypt", @@ -25248,10 +25405,10 @@ "source_file": "backend/package.json", "source_location": "L51", "_origin": "ast", + "id": "backend_package_devdependencies_types_bcrypt", "community": 242, "community_name": "@types/bcrypt", - "norm_label": "@types/bcrypt", - "id": "backend_package_devdependencies_types_bcrypt" + "norm_label": "@types/bcrypt" }, { "label": "@types/bcrypt", @@ -25259,10 +25416,10 @@ "source_file": "backend/package.json", "source_location": "L51", "_origin": "ast", + "id": "types_bcrypt", "community": 242, "community_name": "@types/bcrypt", - "norm_label": "@types/bcrypt", - "id": "types_bcrypt" + "norm_label": "@types/bcrypt" }, { "label": "ApiExcludeController", @@ -25270,10 +25427,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "apiexcludecontroller", "community": 243, "community_name": "MetricsController", - "norm_label": "apiexcludecontroller", - "id": "apiexcludecontroller" + "norm_label": "apiexcludecontroller" }, { "label": "Controller", @@ -25281,10 +25438,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_common_metrics_controller_ts_controller", "community": 243, "community_name": "MetricsController", - "norm_label": "controller", - "id": "backend_src_common_metrics_controller_ts_controller" + "norm_label": "controller" }, { "label": "Get", @@ -25292,10 +25449,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_common_metrics_controller_ts_get", "community": 243, "community_name": "MetricsController", - "norm_label": "get", - "id": "backend_src_common_metrics_controller_ts_get" + "norm_label": "get" }, { "label": "Res", @@ -25303,10 +25460,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_common_metrics_controller_ts_res", "community": 243, "community_name": "MetricsController", - "norm_label": "res", - "id": "backend_src_common_metrics_controller_ts_res" + "norm_label": "res" }, { "label": "blog.entity.ts", @@ -25314,10 +25471,10 @@ "source_file": "backend/src/blogs/entities/blog.entity.ts", "source_location": "L1", "_origin": "ast", + "id": "backend_src_blogs_entities_blog_entity", "community": 244, "community_name": "blog.entity.ts", - "norm_label": "blog.entity.ts", - "id": "backend_src_blogs_entities_blog_entity" + "norm_label": "blog.entity.ts" }, { "label": "home.entity.ts", @@ -25325,10 +25482,10 @@ "source_file": "backend/src/home/entities/home.entity.ts", "source_location": "L1", "_origin": "ast", + "id": "backend_src_home_entities_home_entity", "community": 245, "community_name": "home.entity.ts", - "norm_label": "home.entity.ts", - "id": "backend_src_home_entities_home_entity" + "norm_label": "home.entity.ts" }, { "label": "wiki.entity.ts", @@ -25336,10 +25493,10 @@ "source_file": "backend/src/wiki/entities/wiki.entity.ts", "source_location": "L1", "_origin": "ast", + "id": "backend_src_wiki_entities_wiki_entity", "community": 246, "community_name": "wiki.entity.ts", - "norm_label": "wiki.entity.ts", - "id": "backend_src_wiki_entities_wiki_entity" + "norm_label": "wiki.entity.ts" }, { "label": "CLAUDE.md", @@ -25347,10 +25504,10 @@ "source_file": "CLAUDE.md", "source_location": "L1", "_origin": "ast", + "id": "claude", "community": 248, "community_name": "CLAUDE.md", - "norm_label": "claude.md", - "id": "claude" + "norm_label": "claude.md" }, { "label": "graphify", @@ -25358,10 +25515,10 @@ "source_file": "CLAUDE.md", "source_location": "L1", "_origin": "ast", + "id": "claude_graphify", "community": 248, "community_name": "CLAUDE.md", - "norm_label": "graphify", - "id": "claude_graphify" + "norm_label": "graphify" }, { "label": ".claude/CLAUDE.md", @@ -25369,10 +25526,10 @@ "source_file": ".claude/CLAUDE.md", "source_location": "L1", "_origin": "ast", + "id": "claude_claude", "community": 249, "community_name": ".claude/CLAUDE.md", - "norm_label": ".claude/claude.md", - "id": "claude_claude" + "norm_label": ".claude/claude.md" }, { "label": "graphify", @@ -25380,10 +25537,10 @@ "source_file": ".claude/CLAUDE.md", "source_location": "L1", "_origin": "ast", + "id": "claude_claude_graphify", "community": 249, "community_name": ".claude/CLAUDE.md", - "norm_label": "graphify", - "id": "claude_claude_graphify" + "norm_label": "graphify" }, { "label": "11-code-quality-audit.md", @@ -25391,10 +25548,10 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L1", "_origin": "ast", + "id": "docs_audit_11_code_quality_audit", "community": 25, "community_name": "TS-001", - "norm_label": "11-code-quality-audit.md", - "id": "docs_audit_11_code_quality_audit" + "norm_label": "11-code-quality-audit.md" }, { "label": "Acceptance Criteria", @@ -25402,10 +25559,10 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L98", "_origin": "ast", + "id": "docs_audit_11_code_quality_audit_acceptance_criteria", "community": 25, "community_name": "TS-001", - "norm_label": "acceptance criteria", - "id": "docs_audit_11_code_quality_audit_acceptance_criteria" + "norm_label": "acceptance criteria" }, { "label": "Affected Application", @@ -25413,10 +25570,10 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L42", "_origin": "ast", + "id": "docs_audit_11_code_quality_audit_affected_application", "community": 25, "community_name": "TS-001", - "norm_label": "affected application", - "id": "docs_audit_11_code_quality_audit_affected_application" + "norm_label": "affected application" }, { "label": "Affected Files", @@ -25424,10 +25581,10 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L45", "_origin": "ast", + "id": "docs_audit_11_code_quality_audit_affected_files", "community": 25, "community_name": "TS-001", - "norm_label": "affected files", - "id": "docs_audit_11_code_quality_audit_affected_files" + "norm_label": "affected files" }, { "label": "Alternative Direction", @@ -25435,10 +25592,10 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L80", "_origin": "ast", + "id": "docs_audit_11_code_quality_audit_alternative_direction", "community": 25, "community_name": "TS-001", - "norm_label": "alternative direction", - "id": "docs_audit_11_code_quality_audit_alternative_direction" + "norm_label": "alternative direction" }, { "label": "Category", @@ -25446,10 +25603,10 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L30", "_origin": "ast", + "id": "docs_audit_11_code_quality_audit_category", "community": 25, "community_name": "TS-001", - "norm_label": "category", - "id": "docs_audit_11_code_quality_audit_category" + "norm_label": "category" }, { "label": "Completion Statement", @@ -25457,10 +25614,10 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L118", "_origin": "ast", + "id": "docs_audit_11_code_quality_audit_completion_statement", "community": 25, "community_name": "TS-001", - "norm_label": "completion statement", - "id": "docs_audit_11_code_quality_audit_completion_statement" + "norm_label": "completion statement" }, { "label": "Confidence", @@ -25468,10 +25625,10 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L36", "_origin": "ast", + "id": "docs_audit_11_code_quality_audit_confidence", "community": 25, "community_name": "TS-001", - "norm_label": "confidence", - "id": "docs_audit_11_code_quality_audit_confidence" + "norm_label": "confidence" }, { "label": "Dependencies", @@ -25479,10 +25636,10 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L86", "_origin": "ast", + "id": "docs_audit_11_code_quality_audit_dependencies", "community": 25, "community_name": "TS-001", - "norm_label": "dependencies", - "id": "docs_audit_11_code_quality_audit_dependencies" + "norm_label": "dependencies" }, { "label": "Domain", @@ -25490,10 +25647,10 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L27", "_origin": "ast", + "id": "docs_audit_11_code_quality_audit_domain", "community": 25, "community_name": "TS-001", - "norm_label": "domain", - "id": "docs_audit_11_code_quality_audit_domain" + "norm_label": "domain" }, { "label": "Domain Overview & Confirmed Strengths", @@ -25501,10 +25658,10 @@ "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": 25, "community_name": "TS-001", - "norm_label": "domain overview & confirmed strengths", - "id": "docs_audit_11_code_quality_audit_domain_overview_confirmed_strengths" + "norm_label": "domain overview & confirmed strengths" }, { "label": "Evidence", @@ -25512,10 +25669,10 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L51", "_origin": "ast", + "id": "docs_audit_11_code_quality_audit_evidence", "community": 25, "community_name": "TS-001", - "norm_label": "evidence", - "id": "docs_audit_11_code_quality_audit_evidence" + "norm_label": "evidence" }, { "label": "Finding Summary", @@ -25523,10 +25680,10 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L106", "_origin": "ast", + "id": "docs_audit_11_code_quality_audit_finding_summary", "community": 25, "community_name": "TS-001", - "norm_label": "finding summary", - "id": "docs_audit_11_code_quality_audit_finding_summary" + "norm_label": "finding summary" }, { "label": "Findings", @@ -25534,10 +25691,10 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L20", "_origin": "ast", + "id": "docs_audit_11_code_quality_audit_findings", "community": 25, "community_name": "TS-001", - "norm_label": "findings", - "id": "docs_audit_11_code_quality_audit_findings" + "norm_label": "findings" }, { "label": "Implementation Complexity", @@ -25545,10 +25702,10 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L83", "_origin": "ast", + "id": "docs_audit_11_code_quality_audit_implementation_complexity", "community": 25, "community_name": "TS-001", - "norm_label": "implementation complexity", - "id": "docs_audit_11_code_quality_audit_implementation_complexity" + "norm_label": "implementation complexity" }, { "label": "Notes and Limitations", @@ -25556,10 +25713,10 @@ "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": 25, "community_name": "TS-001", - "norm_label": "notes and limitations", - "id": "docs_audit_11_code_quality_audit_notes_and_limitations" + "norm_label": "notes and limitations" }, { "label": "Problem", @@ -25567,10 +25724,10 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L59", "_origin": "ast", + "id": "docs_audit_11_code_quality_audit_problem", "community": 25, "community_name": "TS-001", - "norm_label": "problem", - "id": "docs_audit_11_code_quality_audit_problem" + "norm_label": "problem" }, { "label": "Recommended Direction", @@ -25578,10 +25735,10 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L77", "_origin": "ast", + "id": "docs_audit_11_code_quality_audit_recommended_direction", "community": 25, "community_name": "TS-001", - "norm_label": "recommended direction", - "id": "docs_audit_11_code_quality_audit_recommended_direction" + "norm_label": "recommended direction" }, { "label": "Relevant Symbols or Lines", @@ -25589,10 +25746,10 @@ "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": 25, "community_name": "TS-001", - "norm_label": "relevant symbols or lines", - "id": "docs_audit_11_code_quality_audit_relevant_symbols_or_lines" + "norm_label": "relevant symbols or lines" }, { "label": "Risks", @@ -25600,10 +25757,10 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L89", "_origin": "ast", + "id": "docs_audit_11_code_quality_audit_risks", "community": 25, "community_name": "TS-001", - "norm_label": "risks", - "id": "docs_audit_11_code_quality_audit_risks" + "norm_label": "risks" }, { "label": "Root Cause", @@ -25611,10 +25768,10 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L62", "_origin": "ast", + "id": "docs_audit_11_code_quality_audit_root_cause", "community": 25, "community_name": "TS-001", - "norm_label": "root cause", - "id": "docs_audit_11_code_quality_audit_root_cause" + "norm_label": "root cause" }, { "label": "Security or Data-Integrity Impact", @@ -25622,10 +25779,10 @@ "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": 25, "community_name": "TS-001", - "norm_label": "security or data-integrity impact", - "id": "docs_audit_11_code_quality_audit_security_or_data_integrity_impact" + "norm_label": "security or data-integrity impact" }, { "label": "Severity", @@ -25633,10 +25790,10 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L33", "_origin": "ast", + "id": "docs_audit_11_code_quality_audit_severity", "community": 25, "community_name": "TS-001", - "norm_label": "severity", - "id": "docs_audit_11_code_quality_audit_severity" + "norm_label": "severity" }, { "label": "Status", @@ -25644,10 +25801,10 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L39", "_origin": "ast", + "id": "docs_audit_11_code_quality_audit_status", "community": 25, "community_name": "TS-001", - "norm_label": "status", - "id": "docs_audit_11_code_quality_audit_status" + "norm_label": "status" }, { "label": "Technical Impact", @@ -25655,10 +25812,10 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L71", "_origin": "ast", + "id": "docs_audit_11_code_quality_audit_technical_impact", "community": 25, "community_name": "TS-001", - "norm_label": "technical impact", - "id": "docs_audit_11_code_quality_audit_technical_impact" + "norm_label": "technical impact" }, { "label": "Testing Requirements", @@ -25666,10 +25823,10 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L95", "_origin": "ast", + "id": "docs_audit_11_code_quality_audit_testing_requirements", "community": 25, "community_name": "TS-001", - "norm_label": "testing requirements", - "id": "docs_audit_11_code_quality_audit_testing_requirements" + "norm_label": "testing requirements" }, { "label": "Title", @@ -25677,10 +25834,10 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L24", "_origin": "ast", + "id": "docs_audit_11_code_quality_audit_title", "community": 25, "community_name": "TS-001", - "norm_label": "title", - "id": "docs_audit_11_code_quality_audit_title" + "norm_label": "title" }, { "label": "TS-001", @@ -25688,10 +25845,10 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L22", "_origin": "ast", + "id": "docs_audit_11_code_quality_audit_ts_001", "community": 25, "community_name": "TS-001", - "norm_label": "ts-001", - "id": "docs_audit_11_code_quality_audit_ts_001" + "norm_label": "ts-001" }, { "label": "TypeScript and Code Quality Audit Report", @@ -25699,10 +25856,10 @@ "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": 25, "community_name": "TS-001", - "norm_label": "typescript and code quality audit report", - "id": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report" + "norm_label": "typescript and code quality audit report" }, { "label": "User or Business Impact", @@ -25710,10 +25867,10 @@ "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": 25, "community_name": "TS-001", - "norm_label": "user or business impact", - "id": "docs_audit_11_code_quality_audit_user_or_business_impact" + "norm_label": "user or business impact" }, { "label": "Verification Requirements", @@ -25721,10 +25878,10 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L92", "_origin": "ast", + "id": "docs_audit_11_code_quality_audit_verification_requirements", "community": 25, "community_name": "TS-001", - "norm_label": "verification requirements", - "id": "docs_audit_11_code_quality_audit_verification_requirements" + "norm_label": "verification requirements" }, { "label": "Why It Matters", @@ -25732,10 +25889,10 @@ "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": 25, "community_name": "TS-001", - "norm_label": "why it matters", - "id": "docs_audit_11_code_quality_audit_why_it_matters" + "norm_label": "why it matters" }, { "label": "extraction-spec.md", @@ -25743,10 +25900,10 @@ "source_file": ".claude/skills/graphify/references/extraction-spec.md", "source_location": "L1", "_origin": "ast", + "id": "claude_skills_graphify_references_extraction_spec", "community": 250, "community_name": "extraction-spec.md", - "norm_label": "extraction-spec.md", - "id": "claude_skills_graphify_references_extraction_spec" + "norm_label": "extraction-spec.md" }, { "label": "graphify reference: extraction subagent prompt", @@ -25754,10 +25911,10 @@ "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": 250, "community_name": "extraction-spec.md", - "norm_label": "graphify reference: extraction subagent prompt", - "id": "claude_skills_graphify_references_extraction_spec_graphify_reference_extraction_subagent_prompt" + "norm_label": "graphify reference: extraction subagent prompt" }, { "label": "robots.ts", @@ -25765,10 +25922,10 @@ "source_file": "frontend/application/app/robots.ts", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_app_robots", "community": 256, "community_name": "robots.ts", - "norm_label": "robots.ts", - "id": "frontend_application_app_robots" + "norm_label": "robots.ts" }, { "label": "application/eslint.config.mjs", @@ -25776,10 +25933,10 @@ "source_file": "frontend/application/eslint.config.mjs", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_eslint_config", "community": 257, "community_name": "application/eslint.config.mjs", - "norm_label": "application/eslint.config.mjs", - "id": "frontend_application_eslint_config" + "norm_label": "application/eslint.config.mjs" }, { "label": "eslintConfig", @@ -25787,10 +25944,10 @@ "source_file": "frontend/application/eslint.config.mjs", "source_location": "L5", "_origin": "ast", + "id": "frontend_application_eslint_config_eslintconfig", "community": 257, "community_name": "application/eslint.config.mjs", - "norm_label": "eslintconfig", - "id": "frontend_application_eslint_config_eslintconfig" + "norm_label": "eslintconfig" }, { "label": "postcss.config.mjs", @@ -25798,10 +25955,10 @@ "source_file": "frontend/application/postcss.config.mjs", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_postcss_config", "community": 258, "community_name": "postcss.config.mjs", - "norm_label": "postcss.config.mjs", - "id": "frontend_application_postcss_config" + "norm_label": "postcss.config.mjs" }, { "label": "config", @@ -25809,10 +25966,10 @@ "source_file": "frontend/application/postcss.config.mjs", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_postcss_config_config", "community": 258, "community_name": "postcss.config.mjs", - "norm_label": "config", - "id": "frontend_application_postcss_config_config" + "norm_label": "config" }, { "label": "vitest.setup.ts", @@ -25820,10 +25977,10 @@ "source_file": "frontend/application/vitest.setup.ts", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_vitest_setup", "community": 259, "community_name": "vitest.setup.ts", - "norm_label": "vitest.setup.ts", - "id": "frontend_application_vitest_setup" + "norm_label": "vitest.setup.ts" }, { "label": "12-testing-audit.md", @@ -25831,10 +25988,10 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L1", "_origin": "ast", + "id": "docs_audit_12_testing_audit", "community": 26, "community_name": "TEST-001", - "norm_label": "12-testing-audit.md", - "id": "docs_audit_12_testing_audit" + "norm_label": "12-testing-audit.md" }, { "label": "Acceptance Criteria", @@ -25842,10 +25999,10 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L102", "_origin": "ast", + "id": "docs_audit_12_testing_audit_acceptance_criteria", "community": 26, "community_name": "TEST-001", - "norm_label": "acceptance criteria", - "id": "docs_audit_12_testing_audit_acceptance_criteria" + "norm_label": "acceptance criteria" }, { "label": "Affected Application", @@ -25853,10 +26010,10 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L42", "_origin": "ast", + "id": "docs_audit_12_testing_audit_affected_application", "community": 26, "community_name": "TEST-001", - "norm_label": "affected application", - "id": "docs_audit_12_testing_audit_affected_application" + "norm_label": "affected application" }, { "label": "Affected Files", @@ -25864,10 +26021,10 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L45", "_origin": "ast", + "id": "docs_audit_12_testing_audit_affected_files", "community": 26, "community_name": "TEST-001", - "norm_label": "affected files", - "id": "docs_audit_12_testing_audit_affected_files" + "norm_label": "affected files" }, { "label": "Alternative Direction", @@ -25875,10 +26032,10 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L84", "_origin": "ast", + "id": "docs_audit_12_testing_audit_alternative_direction", "community": 26, "community_name": "TEST-001", - "norm_label": "alternative direction", - "id": "docs_audit_12_testing_audit_alternative_direction" + "norm_label": "alternative direction" }, { "label": "Category", @@ -25886,10 +26043,10 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L30", "_origin": "ast", + "id": "docs_audit_12_testing_audit_category", "community": 26, "community_name": "TEST-001", - "norm_label": "category", - "id": "docs_audit_12_testing_audit_category" + "norm_label": "category" }, { "label": "Completion Statement", @@ -25897,10 +26054,10 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L122", "_origin": "ast", + "id": "docs_audit_12_testing_audit_completion_statement", "community": 26, "community_name": "TEST-001", - "norm_label": "completion statement", - "id": "docs_audit_12_testing_audit_completion_statement" + "norm_label": "completion statement" }, { "label": "Confidence", @@ -25908,10 +26065,10 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L36", "_origin": "ast", + "id": "docs_audit_12_testing_audit_confidence", "community": 26, "community_name": "TEST-001", - "norm_label": "confidence", - "id": "docs_audit_12_testing_audit_confidence" + "norm_label": "confidence" }, { "label": "Dependencies", @@ -25919,10 +26076,10 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L90", "_origin": "ast", + "id": "docs_audit_12_testing_audit_dependencies", "community": 26, "community_name": "TEST-001", - "norm_label": "dependencies", - "id": "docs_audit_12_testing_audit_dependencies" + "norm_label": "dependencies" }, { "label": "Domain", @@ -25930,10 +26087,10 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L27", "_origin": "ast", + "id": "docs_audit_12_testing_audit_domain", "community": 26, "community_name": "TEST-001", - "norm_label": "domain", - "id": "docs_audit_12_testing_audit_domain" + "norm_label": "domain" }, { "label": "Domain Overview & Confirmed Strengths", @@ -25941,10 +26098,10 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L15", "_origin": "ast", + "id": "docs_audit_12_testing_audit_domain_overview_confirmed_strengths", "community": 26, "community_name": "TEST-001", - "norm_label": "domain overview & confirmed strengths", - "id": "docs_audit_12_testing_audit_domain_overview_confirmed_strengths" + "norm_label": "domain overview & confirmed strengths" }, { "label": "Evidence", @@ -25952,10 +26109,10 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L55", "_origin": "ast", + "id": "docs_audit_12_testing_audit_evidence", "community": 26, "community_name": "TEST-001", - "norm_label": "evidence", - "id": "docs_audit_12_testing_audit_evidence" + "norm_label": "evidence" }, { "label": "Finding Summary", @@ -25963,10 +26120,10 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L110", "_origin": "ast", + "id": "docs_audit_12_testing_audit_finding_summary", "community": 26, "community_name": "TEST-001", - "norm_label": "finding summary", - "id": "docs_audit_12_testing_audit_finding_summary" + "norm_label": "finding summary" }, { "label": "Findings", @@ -25974,10 +26131,10 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L20", "_origin": "ast", + "id": "docs_audit_12_testing_audit_findings", "community": 26, "community_name": "TEST-001", - "norm_label": "findings", - "id": "docs_audit_12_testing_audit_findings" + "norm_label": "findings" }, { "label": "Implementation Complexity", @@ -25985,10 +26142,10 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L87", "_origin": "ast", + "id": "docs_audit_12_testing_audit_implementation_complexity", "community": 26, "community_name": "TEST-001", - "norm_label": "implementation complexity", - "id": "docs_audit_12_testing_audit_implementation_complexity" + "norm_label": "implementation complexity" }, { "label": "Notes and Limitations", @@ -25996,10 +26153,10 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L105", "_origin": "ast", + "id": "docs_audit_12_testing_audit_notes_and_limitations", "community": 26, "community_name": "TEST-001", - "norm_label": "notes and limitations", - "id": "docs_audit_12_testing_audit_notes_and_limitations" + "norm_label": "notes and limitations" }, { "label": "Problem", @@ -26007,10 +26164,10 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L63", "_origin": "ast", + "id": "docs_audit_12_testing_audit_problem", "community": 26, "community_name": "TEST-001", - "norm_label": "problem", - "id": "docs_audit_12_testing_audit_problem" + "norm_label": "problem" }, { "label": "Recommended Direction", @@ -26018,10 +26175,10 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L81", "_origin": "ast", + "id": "docs_audit_12_testing_audit_recommended_direction", "community": 26, "community_name": "TEST-001", - "norm_label": "recommended direction", - "id": "docs_audit_12_testing_audit_recommended_direction" + "norm_label": "recommended direction" }, { "label": "Relevant Symbols or Lines", @@ -26029,10 +26186,10 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L50", "_origin": "ast", + "id": "docs_audit_12_testing_audit_relevant_symbols_or_lines", "community": 26, "community_name": "TEST-001", - "norm_label": "relevant symbols or lines", - "id": "docs_audit_12_testing_audit_relevant_symbols_or_lines" + "norm_label": "relevant symbols or lines" }, { "label": "Risks", @@ -26040,10 +26197,10 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L93", "_origin": "ast", + "id": "docs_audit_12_testing_audit_risks", "community": 26, "community_name": "TEST-001", - "norm_label": "risks", - "id": "docs_audit_12_testing_audit_risks" + "norm_label": "risks" }, { "label": "Root Cause", @@ -26051,10 +26208,10 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L66", "_origin": "ast", + "id": "docs_audit_12_testing_audit_root_cause", "community": 26, "community_name": "TEST-001", - "norm_label": "root cause", - "id": "docs_audit_12_testing_audit_root_cause" + "norm_label": "root cause" }, { "label": "Security or Data-Integrity Impact", @@ -26062,10 +26219,10 @@ "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": 26, "community_name": "TEST-001", - "norm_label": "security or data-integrity impact", - "id": "docs_audit_12_testing_audit_security_or_data_integrity_impact" + "norm_label": "security or data-integrity impact" }, { "label": "Severity", @@ -26073,10 +26230,10 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L33", "_origin": "ast", + "id": "docs_audit_12_testing_audit_severity", "community": 26, "community_name": "TEST-001", - "norm_label": "severity", - "id": "docs_audit_12_testing_audit_severity" + "norm_label": "severity" }, { "label": "Status", @@ -26084,10 +26241,10 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L39", "_origin": "ast", + "id": "docs_audit_12_testing_audit_status", "community": 26, "community_name": "TEST-001", - "norm_label": "status", - "id": "docs_audit_12_testing_audit_status" + "norm_label": "status" }, { "label": "Technical Impact", @@ -26095,10 +26252,10 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L75", "_origin": "ast", + "id": "docs_audit_12_testing_audit_technical_impact", "community": 26, "community_name": "TEST-001", - "norm_label": "technical impact", - "id": "docs_audit_12_testing_audit_technical_impact" + "norm_label": "technical impact" }, { "label": "TEST-001", @@ -26106,10 +26263,10 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L22", "_origin": "ast", + "id": "docs_audit_12_testing_audit_test_001", "community": 26, "community_name": "TEST-001", - "norm_label": "test-001", - "id": "docs_audit_12_testing_audit_test_001" + "norm_label": "test-001" }, { "label": "Testing and Reliability Audit Report", @@ -26117,10 +26274,10 @@ "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": 26, "community_name": "TEST-001", - "norm_label": "testing and reliability audit report", - "id": "docs_audit_12_testing_audit_testing_and_reliability_audit_report" + "norm_label": "testing and reliability audit report" }, { "label": "Testing Requirements", @@ -26128,10 +26285,10 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L99", "_origin": "ast", + "id": "docs_audit_12_testing_audit_testing_requirements", "community": 26, "community_name": "TEST-001", - "norm_label": "testing requirements", - "id": "docs_audit_12_testing_audit_testing_requirements" + "norm_label": "testing requirements" }, { "label": "Title", @@ -26139,10 +26296,10 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L24", "_origin": "ast", + "id": "docs_audit_12_testing_audit_title", "community": 26, "community_name": "TEST-001", - "norm_label": "title", - "id": "docs_audit_12_testing_audit_title" + "norm_label": "title" }, { "label": "User or Business Impact", @@ -26150,10 +26307,10 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L72", "_origin": "ast", + "id": "docs_audit_12_testing_audit_user_or_business_impact", "community": 26, "community_name": "TEST-001", - "norm_label": "user or business impact", - "id": "docs_audit_12_testing_audit_user_or_business_impact" + "norm_label": "user or business impact" }, { "label": "Verification Requirements", @@ -26161,10 +26318,10 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L96", "_origin": "ast", + "id": "docs_audit_12_testing_audit_verification_requirements", "community": 26, "community_name": "TEST-001", - "norm_label": "verification requirements", - "id": "docs_audit_12_testing_audit_verification_requirements" + "norm_label": "verification requirements" }, { "label": "Why It Matters", @@ -26172,10 +26329,10 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L69", "_origin": "ast", + "id": "docs_audit_12_testing_audit_why_it_matters", "community": 26, "community_name": "TEST-001", - "norm_label": "why it matters", - "id": "docs_audit_12_testing_audit_why_it_matters" + "norm_label": "why it matters" }, { "label": "backup_db.sh", @@ -26187,10 +26344,10 @@ "kind": "file" }, "_origin": "ast", + "id": "scripts_backup_db", "community": 260, "community_name": "backup_db.sh", - "norm_label": "backup_db.sh", - "id": "scripts_backup_db" + "norm_label": "backup_db.sh" }, { "label": "backup_db.sh script", @@ -26202,10 +26359,10 @@ "kind": "bash_entrypoint" }, "_origin": "ast", + "id": "scripts_backup_db_sh__entry", "community": 260, "community_name": "backup_db.sh", - "norm_label": "backup_db.sh script", - "id": "scripts_backup_db_sh__entry" + "norm_label": "backup_db.sh script" }, { "label": "start.sh", @@ -26217,10 +26374,10 @@ "kind": "file" }, "_origin": "ast", + "id": "start", "community": 261, "community_name": "start.sh", - "norm_label": "start.sh", - "id": "start" + "norm_label": "start.sh" }, { "label": "start.sh script", @@ -26232,10 +26389,10 @@ "kind": "bash_entrypoint" }, "_origin": "ast", + "id": "start_sh__entry", "community": 261, "community_name": "start.sh", - "norm_label": "start.sh script", - "id": "start_sh__entry" + "norm_label": "start.sh script" }, { "label": "reviews/README.md", @@ -26243,10 +26400,10 @@ "source_file": ".ai_agency/specs/reviews/README.md", "source_location": "L1", "_origin": "ast", + "id": "ai_agency_specs_reviews_readme", "community": 262, "community_name": "reviews/README.md", - "norm_label": "reviews/readme.md", - "id": "ai_agency_specs_reviews_readme" + "norm_label": "reviews/readme.md" }, { "label": "backend/eslint.config.mjs", @@ -26254,10 +26411,10 @@ "source_file": "backend/eslint.config.mjs", "source_location": "L1", "_origin": "ast", + "id": "backend_eslint_config", "community": 263, "community_name": "backend/eslint.config.mjs", - "norm_label": "backend/eslint.config.mjs", - "id": "backend_eslint_config" + "norm_label": "backend/eslint.config.mjs" }, { "label": "generate-openapi.d.ts", @@ -26265,10 +26422,10 @@ "source_file": "backend/scripts/generate-openapi.d.ts", "source_location": "L1", "_origin": "ast", + "id": "backend_scripts_generate_openapi_d", "community": 266, "community_name": "generate-openapi.d.ts", - "norm_label": "generate-openapi.d.ts", - "id": "backend_scripts_generate_openapi_d" + "norm_label": "generate-openapi.d.ts" }, { "label": "13-devops-audit.md", @@ -26276,10 +26433,10 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L1", "_origin": "ast", + "id": "docs_audit_13_devops_audit", "community": 27, "community_name": "DEVOPS-001", - "norm_label": "13-devops-audit.md", - "id": "docs_audit_13_devops_audit" + "norm_label": "13-devops-audit.md" }, { "label": "Acceptance Criteria", @@ -26287,10 +26444,10 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L94", "_origin": "ast", + "id": "docs_audit_13_devops_audit_acceptance_criteria", "community": 27, "community_name": "DEVOPS-001", - "norm_label": "acceptance criteria", - "id": "docs_audit_13_devops_audit_acceptance_criteria" + "norm_label": "acceptance criteria" }, { "label": "Affected Application", @@ -26298,10 +26455,10 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L43", "_origin": "ast", + "id": "docs_audit_13_devops_audit_affected_application", "community": 27, "community_name": "DEVOPS-001", - "norm_label": "affected application", - "id": "docs_audit_13_devops_audit_affected_application" + "norm_label": "affected application" }, { "label": "Affected Files", @@ -26309,10 +26466,10 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L46", "_origin": "ast", + "id": "docs_audit_13_devops_audit_affected_files", "community": 27, "community_name": "DEVOPS-001", - "norm_label": "affected files", - "id": "docs_audit_13_devops_audit_affected_files" + "norm_label": "affected files" }, { "label": "Alternative Direction", @@ -26320,10 +26477,10 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L76", "_origin": "ast", + "id": "docs_audit_13_devops_audit_alternative_direction", "community": 27, "community_name": "DEVOPS-001", - "norm_label": "alternative direction", - "id": "docs_audit_13_devops_audit_alternative_direction" + "norm_label": "alternative direction" }, { "label": "Category", @@ -26331,10 +26488,10 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L31", "_origin": "ast", + "id": "docs_audit_13_devops_audit_category", "community": 27, "community_name": "DEVOPS-001", - "norm_label": "category", - "id": "docs_audit_13_devops_audit_category" + "norm_label": "category" }, { "label": "Completion Statement", @@ -26342,10 +26499,10 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L114", "_origin": "ast", + "id": "docs_audit_13_devops_audit_completion_statement", "community": 27, "community_name": "DEVOPS-001", - "norm_label": "completion statement", - "id": "docs_audit_13_devops_audit_completion_statement" + "norm_label": "completion statement" }, { "label": "Confidence", @@ -26353,10 +26510,10 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L37", "_origin": "ast", + "id": "docs_audit_13_devops_audit_confidence", "community": 27, "community_name": "DEVOPS-001", - "norm_label": "confidence", - "id": "docs_audit_13_devops_audit_confidence" + "norm_label": "confidence" }, { "label": "Dependencies", @@ -26364,10 +26521,10 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L82", "_origin": "ast", + "id": "docs_audit_13_devops_audit_dependencies", "community": 27, "community_name": "DEVOPS-001", - "norm_label": "dependencies", - "id": "docs_audit_13_devops_audit_dependencies" + "norm_label": "dependencies" }, { "label": "DEVOPS-001", @@ -26375,10 +26532,10 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L23", "_origin": "ast", + "id": "docs_audit_13_devops_audit_devops_001", "community": 27, "community_name": "DEVOPS-001", - "norm_label": "devops-001", - "id": "docs_audit_13_devops_audit_devops_001" + "norm_label": "devops-001" }, { "label": "DevOps and CI/CD Audit Report", @@ -26386,10 +26543,10 @@ "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": 27, "community_name": "DEVOPS-001", - "norm_label": "devops and ci/cd audit report", - "id": "docs_audit_13_devops_audit_devops_and_ci_cd_audit_report" + "norm_label": "devops and ci/cd audit report" }, { "label": "Domain", @@ -26397,10 +26554,10 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L28", "_origin": "ast", + "id": "docs_audit_13_devops_audit_domain", "community": 27, "community_name": "DEVOPS-001", - "norm_label": "domain", - "id": "docs_audit_13_devops_audit_domain" + "norm_label": "domain" }, { "label": "Domain Overview & Confirmed Strengths", @@ -26408,10 +26565,10 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L15", "_origin": "ast", + "id": "docs_audit_13_devops_audit_domain_overview_confirmed_strengths", "community": 27, "community_name": "DEVOPS-001", - "norm_label": "domain overview & confirmed strengths", - "id": "docs_audit_13_devops_audit_domain_overview_confirmed_strengths" + "norm_label": "domain overview & confirmed strengths" }, { "label": "Evidence", @@ -26419,10 +26576,10 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L52", "_origin": "ast", + "id": "docs_audit_13_devops_audit_evidence", "community": 27, "community_name": "DEVOPS-001", - "norm_label": "evidence", - "id": "docs_audit_13_devops_audit_evidence" + "norm_label": "evidence" }, { "label": "Finding Summary", @@ -26430,10 +26587,10 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L102", "_origin": "ast", + "id": "docs_audit_13_devops_audit_finding_summary", "community": 27, "community_name": "DEVOPS-001", - "norm_label": "finding summary", - "id": "docs_audit_13_devops_audit_finding_summary" + "norm_label": "finding summary" }, { "label": "Findings", @@ -26441,10 +26598,10 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L21", "_origin": "ast", + "id": "docs_audit_13_devops_audit_findings", "community": 27, "community_name": "DEVOPS-001", - "norm_label": "findings", - "id": "docs_audit_13_devops_audit_findings" + "norm_label": "findings" }, { "label": "Implementation Complexity", @@ -26452,10 +26609,10 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L79", "_origin": "ast", + "id": "docs_audit_13_devops_audit_implementation_complexity", "community": 27, "community_name": "DEVOPS-001", - "norm_label": "implementation complexity", - "id": "docs_audit_13_devops_audit_implementation_complexity" + "norm_label": "implementation complexity" }, { "label": "Notes and Limitations", @@ -26463,10 +26620,10 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L97", "_origin": "ast", + "id": "docs_audit_13_devops_audit_notes_and_limitations", "community": 27, "community_name": "DEVOPS-001", - "norm_label": "notes and limitations", - "id": "docs_audit_13_devops_audit_notes_and_limitations" + "norm_label": "notes and limitations" }, { "label": "Problem", @@ -26474,10 +26631,10 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L55", "_origin": "ast", + "id": "docs_audit_13_devops_audit_problem", "community": 27, "community_name": "DEVOPS-001", - "norm_label": "problem", - "id": "docs_audit_13_devops_audit_problem" + "norm_label": "problem" }, { "label": "Recommended Direction", @@ -26485,10 +26642,10 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L73", "_origin": "ast", + "id": "docs_audit_13_devops_audit_recommended_direction", "community": 27, "community_name": "DEVOPS-001", - "norm_label": "recommended direction", - "id": "docs_audit_13_devops_audit_recommended_direction" + "norm_label": "recommended direction" }, { "label": "Relevant Symbols or Lines", @@ -26496,10 +26653,10 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L49", "_origin": "ast", + "id": "docs_audit_13_devops_audit_relevant_symbols_or_lines", "community": 27, "community_name": "DEVOPS-001", - "norm_label": "relevant symbols or lines", - "id": "docs_audit_13_devops_audit_relevant_symbols_or_lines" + "norm_label": "relevant symbols or lines" }, { "label": "Risks", @@ -26507,10 +26664,10 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L85", "_origin": "ast", + "id": "docs_audit_13_devops_audit_risks", "community": 27, "community_name": "DEVOPS-001", - "norm_label": "risks", - "id": "docs_audit_13_devops_audit_risks" + "norm_label": "risks" }, { "label": "Root Cause", @@ -26518,10 +26675,10 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L58", "_origin": "ast", + "id": "docs_audit_13_devops_audit_root_cause", "community": 27, "community_name": "DEVOPS-001", - "norm_label": "root cause", - "id": "docs_audit_13_devops_audit_root_cause" + "norm_label": "root cause" }, { "label": "Security or Data-Integrity Impact", @@ -26529,10 +26686,10 @@ "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": 27, "community_name": "DEVOPS-001", - "norm_label": "security or data-integrity impact", - "id": "docs_audit_13_devops_audit_security_or_data_integrity_impact" + "norm_label": "security or data-integrity impact" }, { "label": "Severity", @@ -26540,10 +26697,10 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L34", "_origin": "ast", + "id": "docs_audit_13_devops_audit_severity", "community": 27, "community_name": "DEVOPS-001", - "norm_label": "severity", - "id": "docs_audit_13_devops_audit_severity" + "norm_label": "severity" }, { "label": "Status", @@ -26551,10 +26708,10 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L40", "_origin": "ast", + "id": "docs_audit_13_devops_audit_status", "community": 27, "community_name": "DEVOPS-001", - "norm_label": "status", - "id": "docs_audit_13_devops_audit_status" + "norm_label": "status" }, { "label": "Technical Impact", @@ -26562,10 +26719,10 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L67", "_origin": "ast", + "id": "docs_audit_13_devops_audit_technical_impact", "community": 27, "community_name": "DEVOPS-001", - "norm_label": "technical impact", - "id": "docs_audit_13_devops_audit_technical_impact" + "norm_label": "technical impact" }, { "label": "Testing Requirements", @@ -26573,10 +26730,10 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L91", "_origin": "ast", + "id": "docs_audit_13_devops_audit_testing_requirements", "community": 27, "community_name": "DEVOPS-001", - "norm_label": "testing requirements", - "id": "docs_audit_13_devops_audit_testing_requirements" + "norm_label": "testing requirements" }, { "label": "Title", @@ -26584,10 +26741,10 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L25", "_origin": "ast", + "id": "docs_audit_13_devops_audit_title", "community": 27, "community_name": "DEVOPS-001", - "norm_label": "title", - "id": "docs_audit_13_devops_audit_title" + "norm_label": "title" }, { "label": "User or Business Impact", @@ -26595,10 +26752,10 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L64", "_origin": "ast", + "id": "docs_audit_13_devops_audit_user_or_business_impact", "community": 27, "community_name": "DEVOPS-001", - "norm_label": "user or business impact", - "id": "docs_audit_13_devops_audit_user_or_business_impact" + "norm_label": "user or business impact" }, { "label": "Verification Requirements", @@ -26606,10 +26763,10 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L88", "_origin": "ast", + "id": "docs_audit_13_devops_audit_verification_requirements", "community": 27, "community_name": "DEVOPS-001", - "norm_label": "verification requirements", - "id": "docs_audit_13_devops_audit_verification_requirements" + "norm_label": "verification requirements" }, { "label": "Why It Matters", @@ -26617,10 +26774,10 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L61", "_origin": "ast", + "id": "docs_audit_13_devops_audit_why_it_matters", "community": 27, "community_name": "DEVOPS-001", - "norm_label": "why it matters", - "id": "docs_audit_13_devops_audit_why_it_matters" + "norm_label": "why it matters" }, { "label": "eslint.config.js", @@ -26628,10 +26785,10 @@ "source_file": "frontend/admin-panel/eslint.config.js", "source_location": "L1", "_origin": "ast", + "id": "frontend_admin_panel_eslint_config", "community": 273, "community_name": "eslint.config.js", - "norm_label": "eslint.config.js", - "id": "frontend_admin_panel_eslint_config" + "norm_label": "eslint.config.js" }, { "label": "postcss.config.js", @@ -26639,10 +26796,10 @@ "source_file": "frontend/admin-panel/postcss.config.js", "source_location": "L1", "_origin": "ast", + "id": "frontend_admin_panel_postcss_config", "community": 274, "community_name": "postcss.config.js", - "norm_label": "postcss.config.js", - "id": "frontend_admin_panel_postcss_config" + "norm_label": "postcss.config.js" }, { "label": "admin-panel/public/fonts/sahel-font-v3.4.0/CHANGELOG.md", @@ -26650,10 +26807,10 @@ "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": 275, "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", - "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_changelog" + "norm_label": "admin-panel/public/fonts/sahel-font-v3.4.0/changelog.md" }, { "label": "shabnam-font-v5.0.1/CHANGELOG.md", @@ -26661,10 +26818,10 @@ "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": 276, "community_name": "shabnam-font-v5.0.1/CHANGELOG.md", - "norm_label": "shabnam-font-v5.0.1/changelog.md", - "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_changelog" + "norm_label": "shabnam-font-v5.0.1/changelog.md" }, { "label": "tailwind.config.js", @@ -26672,10 +26829,10 @@ "source_file": "frontend/admin-panel/tailwind.config.js", "source_location": "L1", "_origin": "ast", + "id": "frontend_admin_panel_tailwind_config", "community": 277, "community_name": "tailwind.config.js", - "norm_label": "tailwind.config.js", - "id": "frontend_admin_panel_tailwind_config" + "norm_label": "tailwind.config.js" }, { "label": "vite.config.ts", @@ -26683,10 +26840,10 @@ "source_file": "frontend/admin-panel/vite.config.ts", "source_location": "L1", "_origin": "ast", + "id": "frontend_admin_panel_vite_config", "community": 278, "community_name": "vite.config.ts", - "norm_label": "vite.config.ts", - "id": "frontend_admin_panel_vite_config" + "norm_label": "vite.config.ts" }, { "label": "application/CLAUDE.md", @@ -26694,10 +26851,10 @@ "source_file": "frontend/application/CLAUDE.md", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_claude", "community": 279, "community_name": "application/CLAUDE.md", - "norm_label": "application/claude.md", - "id": "frontend_application_claude" + "norm_label": "application/claude.md" }, { "label": "14-documentation-audit.md", @@ -26705,10 +26862,10 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L1", "_origin": "ast", + "id": "docs_audit_14_documentation_audit", "community": 28, "community_name": "DOC-001", - "norm_label": "14-documentation-audit.md", - "id": "docs_audit_14_documentation_audit" + "norm_label": "14-documentation-audit.md" }, { "label": "Acceptance Criteria", @@ -26716,10 +26873,10 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L95", "_origin": "ast", + "id": "docs_audit_14_documentation_audit_acceptance_criteria", "community": 28, "community_name": "DOC-001", - "norm_label": "acceptance criteria", - "id": "docs_audit_14_documentation_audit_acceptance_criteria" + "norm_label": "acceptance criteria" }, { "label": "Affected Application", @@ -26727,10 +26884,10 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L42", "_origin": "ast", + "id": "docs_audit_14_documentation_audit_affected_application", "community": 28, "community_name": "DOC-001", - "norm_label": "affected application", - "id": "docs_audit_14_documentation_audit_affected_application" + "norm_label": "affected application" }, { "label": "Affected Files", @@ -26738,10 +26895,10 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L45", "_origin": "ast", + "id": "docs_audit_14_documentation_audit_affected_files", "community": 28, "community_name": "DOC-001", - "norm_label": "affected files", - "id": "docs_audit_14_documentation_audit_affected_files" + "norm_label": "affected files" }, { "label": "Alternative Direction", @@ -26749,10 +26906,10 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L77", "_origin": "ast", + "id": "docs_audit_14_documentation_audit_alternative_direction", "community": 28, "community_name": "DOC-001", - "norm_label": "alternative direction", - "id": "docs_audit_14_documentation_audit_alternative_direction" + "norm_label": "alternative direction" }, { "label": "Category", @@ -26760,10 +26917,10 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L30", "_origin": "ast", + "id": "docs_audit_14_documentation_audit_category", "community": 28, "community_name": "DOC-001", - "norm_label": "category", - "id": "docs_audit_14_documentation_audit_category" + "norm_label": "category" }, { "label": "Completion Statement", @@ -26771,10 +26928,10 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L115", "_origin": "ast", + "id": "docs_audit_14_documentation_audit_completion_statement", "community": 28, "community_name": "DOC-001", - "norm_label": "completion statement", - "id": "docs_audit_14_documentation_audit_completion_statement" + "norm_label": "completion statement" }, { "label": "Confidence", @@ -26782,10 +26939,10 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L36", "_origin": "ast", + "id": "docs_audit_14_documentation_audit_confidence", "community": 28, "community_name": "DOC-001", - "norm_label": "confidence", - "id": "docs_audit_14_documentation_audit_confidence" + "norm_label": "confidence" }, { "label": "Dependencies", @@ -26793,10 +26950,10 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L83", "_origin": "ast", + "id": "docs_audit_14_documentation_audit_dependencies", "community": 28, "community_name": "DOC-001", - "norm_label": "dependencies", - "id": "docs_audit_14_documentation_audit_dependencies" + "norm_label": "dependencies" }, { "label": "DOC-001", @@ -26804,10 +26961,10 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L22", "_origin": "ast", + "id": "docs_audit_14_documentation_audit_doc_001", "community": 28, "community_name": "DOC-001", - "norm_label": "doc-001", - "id": "docs_audit_14_documentation_audit_doc_001" + "norm_label": "doc-001" }, { "label": "Documentation Audit Report", @@ -26815,10 +26972,10 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L1", "_origin": "ast", + "id": "docs_audit_14_documentation_audit_documentation_audit_report", "community": 28, "community_name": "DOC-001", - "norm_label": "documentation audit report", - "id": "docs_audit_14_documentation_audit_documentation_audit_report" + "norm_label": "documentation audit report" }, { "label": "Domain", @@ -26826,10 +26983,10 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L27", "_origin": "ast", + "id": "docs_audit_14_documentation_audit_domain", "community": 28, "community_name": "DOC-001", - "norm_label": "domain", - "id": "docs_audit_14_documentation_audit_domain" + "norm_label": "domain" }, { "label": "Domain Overview & Confirmed Strengths", @@ -26837,10 +26994,10 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L15", "_origin": "ast", + "id": "docs_audit_14_documentation_audit_domain_overview_confirmed_strengths", "community": 28, "community_name": "DOC-001", - "norm_label": "domain overview & confirmed strengths", - "id": "docs_audit_14_documentation_audit_domain_overview_confirmed_strengths" + "norm_label": "domain overview & confirmed strengths" }, { "label": "Evidence", @@ -26848,10 +27005,10 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L53", "_origin": "ast", + "id": "docs_audit_14_documentation_audit_evidence", "community": 28, "community_name": "DOC-001", - "norm_label": "evidence", - "id": "docs_audit_14_documentation_audit_evidence" + "norm_label": "evidence" }, { "label": "Finding Summary", @@ -26859,10 +27016,10 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L103", "_origin": "ast", + "id": "docs_audit_14_documentation_audit_finding_summary", "community": 28, "community_name": "DOC-001", - "norm_label": "finding summary", - "id": "docs_audit_14_documentation_audit_finding_summary" + "norm_label": "finding summary" }, { "label": "Findings", @@ -26870,10 +27027,10 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L20", "_origin": "ast", + "id": "docs_audit_14_documentation_audit_findings", "community": 28, "community_name": "DOC-001", - "norm_label": "findings", - "id": "docs_audit_14_documentation_audit_findings" + "norm_label": "findings" }, { "label": "Implementation Complexity", @@ -26881,10 +27038,10 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L80", "_origin": "ast", + "id": "docs_audit_14_documentation_audit_implementation_complexity", "community": 28, "community_name": "DOC-001", - "norm_label": "implementation complexity", - "id": "docs_audit_14_documentation_audit_implementation_complexity" + "norm_label": "implementation complexity" }, { "label": "Notes and Limitations", @@ -26892,10 +27049,10 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L98", "_origin": "ast", + "id": "docs_audit_14_documentation_audit_notes_and_limitations", "community": 28, "community_name": "DOC-001", - "norm_label": "notes and limitations", - "id": "docs_audit_14_documentation_audit_notes_and_limitations" + "norm_label": "notes and limitations" }, { "label": "Problem", @@ -26903,10 +27060,10 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L56", "_origin": "ast", + "id": "docs_audit_14_documentation_audit_problem", "community": 28, "community_name": "DOC-001", - "norm_label": "problem", - "id": "docs_audit_14_documentation_audit_problem" + "norm_label": "problem" }, { "label": "Recommended Direction", @@ -26914,10 +27071,10 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L74", "_origin": "ast", + "id": "docs_audit_14_documentation_audit_recommended_direction", "community": 28, "community_name": "DOC-001", - "norm_label": "recommended direction", - "id": "docs_audit_14_documentation_audit_recommended_direction" + "norm_label": "recommended direction" }, { "label": "Relevant Symbols or Lines", @@ -26925,10 +27082,10 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L49", "_origin": "ast", + "id": "docs_audit_14_documentation_audit_relevant_symbols_or_lines", "community": 28, "community_name": "DOC-001", - "norm_label": "relevant symbols or lines", - "id": "docs_audit_14_documentation_audit_relevant_symbols_or_lines" + "norm_label": "relevant symbols or lines" }, { "label": "Risks", @@ -26936,10 +27093,10 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L86", "_origin": "ast", + "id": "docs_audit_14_documentation_audit_risks", "community": 28, "community_name": "DOC-001", - "norm_label": "risks", - "id": "docs_audit_14_documentation_audit_risks" + "norm_label": "risks" }, { "label": "Root Cause", @@ -26947,10 +27104,10 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L59", "_origin": "ast", + "id": "docs_audit_14_documentation_audit_root_cause", "community": 28, "community_name": "DOC-001", - "norm_label": "root cause", - "id": "docs_audit_14_documentation_audit_root_cause" + "norm_label": "root cause" }, { "label": "Security or Data-Integrity Impact", @@ -26958,10 +27115,10 @@ "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": 28, "community_name": "DOC-001", - "norm_label": "security or data-integrity impact", - "id": "docs_audit_14_documentation_audit_security_or_data_integrity_impact" + "norm_label": "security or data-integrity impact" }, { "label": "Severity", @@ -26969,10 +27126,10 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L33", "_origin": "ast", + "id": "docs_audit_14_documentation_audit_severity", "community": 28, "community_name": "DOC-001", - "norm_label": "severity", - "id": "docs_audit_14_documentation_audit_severity" + "norm_label": "severity" }, { "label": "Status", @@ -26980,10 +27137,10 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L39", "_origin": "ast", + "id": "docs_audit_14_documentation_audit_status", "community": 28, "community_name": "DOC-001", - "norm_label": "status", - "id": "docs_audit_14_documentation_audit_status" + "norm_label": "status" }, { "label": "Technical Impact", @@ -26991,10 +27148,10 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L68", "_origin": "ast", + "id": "docs_audit_14_documentation_audit_technical_impact", "community": 28, "community_name": "DOC-001", - "norm_label": "technical impact", - "id": "docs_audit_14_documentation_audit_technical_impact" + "norm_label": "technical impact" }, { "label": "Testing Requirements", @@ -27002,10 +27159,10 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L92", "_origin": "ast", + "id": "docs_audit_14_documentation_audit_testing_requirements", "community": 28, "community_name": "DOC-001", - "norm_label": "testing requirements", - "id": "docs_audit_14_documentation_audit_testing_requirements" + "norm_label": "testing requirements" }, { "label": "Title", @@ -27013,10 +27170,10 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L24", "_origin": "ast", + "id": "docs_audit_14_documentation_audit_title", "community": 28, "community_name": "DOC-001", - "norm_label": "title", - "id": "docs_audit_14_documentation_audit_title" + "norm_label": "title" }, { "label": "User or Business Impact", @@ -27024,10 +27181,10 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L65", "_origin": "ast", + "id": "docs_audit_14_documentation_audit_user_or_business_impact", "community": 28, "community_name": "DOC-001", - "norm_label": "user or business impact", - "id": "docs_audit_14_documentation_audit_user_or_business_impact" + "norm_label": "user or business impact" }, { "label": "Verification Requirements", @@ -27035,10 +27192,10 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L89", "_origin": "ast", + "id": "docs_audit_14_documentation_audit_verification_requirements", "community": 28, "community_name": "DOC-001", - "norm_label": "verification requirements", - "id": "docs_audit_14_documentation_audit_verification_requirements" + "norm_label": "verification requirements" }, { "label": "Why It Matters", @@ -27046,10 +27203,10 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L62", "_origin": "ast", + "id": "docs_audit_14_documentation_audit_why_it_matters", "community": 28, "community_name": "DOC-001", - "norm_label": "why it matters", - "id": "docs_audit_14_documentation_audit_why_it_matters" + "norm_label": "why it matters" }, { "label": "application/public/fonts/sahel-font-v3.4.0/CHANGELOG.md", @@ -27057,10 +27214,10 @@ "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": 280, "community_name": "application/public/fonts/sahel-font-v3.4.0/CHANGELOG.md", - "norm_label": "application/public/fonts/sahel-font-v3.4.0/changelog.md", - "id": "frontend_application_public_fonts_sahel_font_v3_4_0_changelog" + "norm_label": "application/public/fonts/sahel-font-v3.4.0/changelog.md" }, { "label": "vitest.config.ts", @@ -27068,65 +27225,32 @@ "source_file": "frontend/application/vitest.config.ts", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_vitest_config", "community": 284, "community_name": "vitest.config.ts", - "norm_label": "vitest.config.ts", - "id": "frontend_application_vitest_config" + "norm_label": "vitest.config.ts" }, { - "label": "ApiProperty", + "label": "@prisma/client", "file_type": "code", - "source_file": "", - "source_location": "", + "source_file": "backend/package.json", + "source_location": "L31", "_origin": "ast", - "community": 29, - "community_name": "WholesaleApplyDto", - "norm_label": "apiproperty", - "id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_apiproperty" + "id": "backend_package_dependencies_prisma_client", + "community": 289, + "community_name": "@prisma/client", + "norm_label": "@prisma/client" }, { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", + "label": "@prisma/client", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L31", "_origin": "ast", - "community": 29, - "community_name": "WholesaleApplyDto", - "norm_label": "apipropertyoptional", - "id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_apipropertyoptional" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 29, - "community_name": "WholesaleApplyDto", - "norm_label": "isnotempty", - "id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isnotempty" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 29, - "community_name": "WholesaleApplyDto", - "norm_label": "isoptional", - "id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 29, - "community_name": "WholesaleApplyDto", - "norm_label": "isstring", - "id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isstring" + "id": "prisma_client", + "community": 289, + "community_name": "@prisma/client", + "norm_label": "@prisma/client" }, { "label": "ApiBearerAuth", @@ -27134,10 +27258,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_wholesale_wholesale_controller_ts_apibearerauth", "community": 29, - "community_name": "WholesaleApplyDto", - "norm_label": "apibearerauth", - "id": "backend_src_wholesale_wholesale_controller_ts_apibearerauth" + "community_name": "WholesaleService", + "norm_label": "apibearerauth" }, { "label": "ApiOperation", @@ -27145,10 +27269,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_wholesale_wholesale_controller_ts_apioperation", "community": 29, - "community_name": "WholesaleApplyDto", - "norm_label": "apioperation", - "id": "backend_src_wholesale_wholesale_controller_ts_apioperation" + "community_name": "WholesaleService", + "norm_label": "apioperation" }, { "label": "ApiTags", @@ -27156,10 +27280,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_wholesale_wholesale_controller_ts_apitags", "community": 29, - "community_name": "WholesaleApplyDto", - "norm_label": "apitags", - "id": "backend_src_wholesale_wholesale_controller_ts_apitags" + "community_name": "WholesaleService", + "norm_label": "apitags" }, { "label": "Body", @@ -27167,10 +27291,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_wholesale_wholesale_controller_ts_body", "community": 29, - "community_name": "WholesaleApplyDto", - "norm_label": "body", - "id": "backend_src_wholesale_wholesale_controller_ts_body" + "community_name": "WholesaleService", + "norm_label": "body" }, { "label": "Controller", @@ -27178,10 +27302,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_wholesale_wholesale_controller_ts_controller", "community": 29, - "community_name": "WholesaleApplyDto", - "norm_label": "controller", - "id": "backend_src_wholesale_wholesale_controller_ts_controller" + "community_name": "WholesaleService", + "norm_label": "controller" }, { "label": "Get", @@ -27189,10 +27313,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_wholesale_wholesale_controller_ts_get", "community": 29, - "community_name": "WholesaleApplyDto", - "norm_label": "get", - "id": "backend_src_wholesale_wholesale_controller_ts_get" + "community_name": "WholesaleService", + "norm_label": "get" }, { "label": "Param", @@ -27200,10 +27324,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_wholesale_wholesale_controller_ts_param", "community": 29, - "community_name": "WholesaleApplyDto", - "norm_label": "param", - "id": "backend_src_wholesale_wholesale_controller_ts_param" + "community_name": "WholesaleService", + "norm_label": "param" }, { "label": "Post", @@ -27211,10 +27335,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_wholesale_wholesale_controller_ts_post", "community": 29, - "community_name": "WholesaleApplyDto", - "norm_label": "post", - "id": "backend_src_wholesale_wholesale_controller_ts_post" + "community_name": "WholesaleService", + "norm_label": "post" }, { "label": "Put", @@ -27222,10 +27346,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_wholesale_wholesale_controller_ts_put", "community": 29, - "community_name": "WholesaleApplyDto", - "norm_label": "put", - "id": "backend_src_wholesale_wholesale_controller_ts_put" + "community_name": "WholesaleService", + "norm_label": "put" }, { "label": "Request", @@ -27233,10 +27357,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_wholesale_wholesale_controller_ts_request", "community": 29, - "community_name": "WholesaleApplyDto", - "norm_label": "request", - "id": "backend_src_wholesale_wholesale_controller_ts_request" + "community_name": "WholesaleService", + "norm_label": "request" }, { "label": "UseGuards", @@ -27244,10 +27368,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_wholesale_wholesale_controller_ts_useguards", "community": 29, - "community_name": "WholesaleApplyDto", - "norm_label": "useguards", - "id": "backend_src_wholesale_wholesale_controller_ts_useguards" + "community_name": "WholesaleService", + "norm_label": "useguards" }, { "label": "Injectable", @@ -27255,10 +27379,32 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_wholesale_wholesale_service_ts_injectable", "community": 29, - "community_name": "WholesaleApplyDto", - "norm_label": "injectable", - "id": "backend_src_wholesale_wholesale_service_ts_injectable" + "community_name": "WholesaleService", + "norm_label": "injectable" + }, + { + "label": "swagger-ui-express", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L43", + "_origin": "ast", + "id": "backend_package_dependencies_swagger_ui_express", + "community": 290, + "community_name": "swagger-ui-express", + "norm_label": "swagger-ui-express" + }, + { + "label": "swagger-ui-express", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L43", + "_origin": "ast", + "id": "swagger_ui_express", + "community": 290, + "community_name": "swagger-ui-express", + "norm_label": "swagger-ui-express" }, { "label": "NetworkBanner.tsx", @@ -27266,10 +27412,10 @@ "source_file": "frontend/application/components/NetworkBanner.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_components_networkbanner", "community": 291, "community_name": "NetworkBanner.tsx", - "norm_label": "networkbanner.tsx", - "id": "frontend_application_components_networkbanner" + "norm_label": "networkbanner.tsx" }, { "label": "useNetworkStatus.ts", @@ -27277,10 +27423,186 @@ "source_file": "frontend/application/lib/hooks/useNetworkStatus.ts", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_lib_hooks_usenetworkstatus", "community": 291, "community_name": "NetworkBanner.tsx", - "norm_label": "usenetworkstatus.ts", - "id": "frontend_application_lib_hooks_usenetworkstatus" + "norm_label": "usenetworkstatus.ts" + }, + { + "label": "eslint-config-prettier", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L61", + "_origin": "ast", + "id": "backend_package_devdependencies_eslint_config_prettier", + "community": 292, + "community_name": "eslint-config-prettier", + "norm_label": "eslint-config-prettier" + }, + { + "label": "eslint-config-prettier", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L61", + "_origin": "ast", + "id": "eslint_config_prettier", + "community": 292, + "community_name": "eslint-config-prettier", + "norm_label": "eslint-config-prettier" + }, + { + "label": "@eslint/js", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L47", + "_origin": "ast", + "id": "backend_package_devdependencies_eslint_js", + "community": 293, + "community_name": "@eslint/js", + "norm_label": "@eslint/js" + }, + { + "label": "@eslint/js", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L47", + "_origin": "ast", + "id": "backend_package_json_eslint_js", + "community": 293, + "community_name": "@eslint/js", + "norm_label": "@eslint/js" + }, + { + "label": "jest", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L64", + "_origin": "ast", + "id": "backend_package_devdependencies_jest", + "community": 294, + "community_name": "jest", + "norm_label": "jest" + }, + { + "label": "jest", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L64", + "_origin": "ast", + "id": "jest", + "community": 294, + "community_name": "jest", + "norm_label": "jest" + }, + { + "label": "@nestjs/schematics", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L49", + "_origin": "ast", + "id": "backend_package_devdependencies_nestjs_schematics", + "community": 295, + "community_name": "@nestjs/schematics", + "norm_label": "@nestjs/schematics" + }, + { + "label": "@nestjs/schematics", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L49", + "_origin": "ast", + "id": "nestjs_schematics", + "community": 295, + "community_name": "@nestjs/schematics", + "norm_label": "@nestjs/schematics" + }, + { + "label": "@nestjs/testing", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L50", + "_origin": "ast", + "id": "backend_package_devdependencies_nestjs_testing", + "community": 296, + "community_name": "@nestjs/testing", + "norm_label": "@nestjs/testing" + }, + { + "label": "@nestjs/testing", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L50", + "_origin": "ast", + "id": "nestjs_testing", + "community": 296, + "community_name": "@nestjs/testing", + "norm_label": "@nestjs/testing" + }, + { + "label": "source-map-support", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L67", + "_origin": "ast", + "id": "backend_package_devdependencies_source_map_support", + "community": 297, + "community_name": "source-map-support", + "norm_label": "source-map-support" + }, + { + "label": "source-map-support", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L67", + "_origin": "ast", + "id": "source_map_support", + "community": 297, + "community_name": "source-map-support", + "norm_label": "source-map-support" + }, + { + "label": "ts-jest", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L69", + "_origin": "ast", + "id": "backend_package_devdependencies_ts_jest", + "community": 298, + "community_name": "ts-jest", + "norm_label": "ts-jest" + }, + { + "label": "ts-jest", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L69", + "_origin": "ast", + "id": "ts_jest", + "community": 298, + "community_name": "ts-jest", + "norm_label": "ts-jest" + }, + { + "label": "tsconfig-paths", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L72", + "_origin": "ast", + "id": "backend_package_devdependencies_tsconfig_paths", + "community": 299, + "community_name": "tsconfig-paths", + "norm_label": "tsconfig-paths" + }, + { + "label": "tsconfig-paths", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L72", + "_origin": "ast", + "id": "tsconfig_paths", + "community": 299, + "community_name": "tsconfig-paths", + "norm_label": "tsconfig-paths" }, { "label": "app.module.ts", @@ -27288,10 +27610,32 @@ "source_file": "backend/src/app.module.ts", "source_location": "L1", "_origin": "ast", + "id": "backend_src_app_module", "community": 3, "community_name": "app.module.ts", - "norm_label": "app.module.ts", - "id": "backend_src_app_module" + "norm_label": "app.module.ts" + }, + { + "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": 3, + "community_name": "app.module.ts", + "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": 3, + "community_name": "app.module.ts", + "norm_label": "module" }, { "label": "banners.module.ts", @@ -27299,10 +27643,10 @@ "source_file": "backend/src/banners/banners.module.ts", "source_location": "L1", "_origin": "ast", + "id": "backend_src_banners_banners_module", "community": 3, "community_name": "app.module.ts", - "norm_label": "banners.module.ts", - "id": "backend_src_banners_banners_module" + "norm_label": "banners.module.ts" }, { "label": "Module", @@ -27310,10 +27654,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_banners_banners_module_ts_module", "community": 3, "community_name": "app.module.ts", - "norm_label": "module", - "id": "backend_src_banners_banners_module_ts_module" + "norm_label": "module" }, { "label": "cms.module.ts", @@ -27321,10 +27665,10 @@ "source_file": "backend/src/cms/cms.module.ts", "source_location": "L1", "_origin": "ast", + "id": "backend_src_cms_cms_module", "community": 3, "community_name": "app.module.ts", - "norm_label": "cms.module.ts", - "id": "backend_src_cms_cms_module" + "norm_label": "cms.module.ts" }, { "label": "Module", @@ -27332,10 +27676,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_cms_cms_module_ts_module", "community": 3, "community_name": "app.module.ts", - "norm_label": "module", - "id": "backend_src_cms_cms_module_ts_module" + "norm_label": "module" }, { "label": "sms.module.ts", @@ -27343,10 +27687,10 @@ "source_file": "backend/src/common/sms.module.ts", "source_location": "L1", "_origin": "ast", + "id": "backend_src_common_sms_module", "community": 3, "community_name": "app.module.ts", - "norm_label": "sms.module.ts", - "id": "backend_src_common_sms_module" + "norm_label": "sms.module.ts" }, { "label": "Global", @@ -27354,10 +27698,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_common_sms_module_ts_global", "community": 3, "community_name": "app.module.ts", - "norm_label": "global", - "id": "backend_src_common_sms_module_ts_global" + "norm_label": "global" }, { "label": "Module", @@ -27365,10 +27709,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_common_sms_module_ts_module", "community": 3, "community_name": "app.module.ts", - "norm_label": "module", - "id": "backend_src_common_sms_module_ts_module" + "norm_label": "module" }, { "label": "contact.module.ts", @@ -27376,10 +27720,10 @@ "source_file": "backend/src/contact/contact.module.ts", "source_location": "L1", "_origin": "ast", + "id": "backend_src_contact_contact_module", "community": 3, "community_name": "app.module.ts", - "norm_label": "contact.module.ts", - "id": "backend_src_contact_contact_module" + "norm_label": "contact.module.ts" }, { "label": "Module", @@ -27387,21 +27731,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_contact_contact_module_ts_module", "community": 3, "community_name": "app.module.ts", - "norm_label": "module", - "id": "backend_src_contact_contact_module_ts_module" - }, - { - "label": "doctors.controller.ts", - "file_type": "code", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 3, - "community_name": "app.module.ts", - "norm_label": "doctors.controller.ts", - "id": "backend_src_doctors_doctors_controller" + "norm_label": "module" }, { "label": "doctors.module.ts", @@ -27409,10 +27742,10 @@ "source_file": "backend/src/doctors/doctors.module.ts", "source_location": "L1", "_origin": "ast", + "id": "backend_src_doctors_doctors_module", "community": 3, "community_name": "app.module.ts", - "norm_label": "doctors.module.ts", - "id": "backend_src_doctors_doctors_module" + "norm_label": "doctors.module.ts" }, { "label": "Module", @@ -27420,21 +27753,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_doctors_doctors_module_ts_module", "community": 3, "community_name": "app.module.ts", - "norm_label": "module", - "id": "backend_src_doctors_doctors_module_ts_module" - }, - { - "label": "doctors.service.ts", - "file_type": "code", - "source_file": "backend/src/doctors/doctors.service.ts", - "source_location": "L1", - "_origin": "ast", - "community": 3, - "community_name": "app.module.ts", - "norm_label": "doctors.service.ts", - "id": "backend_src_doctors_doctors_service" + "norm_label": "module" }, { "label": "ingredients.module.ts", @@ -27442,10 +27764,10 @@ "source_file": "backend/src/ingredients/ingredients.module.ts", "source_location": "L1", "_origin": "ast", + "id": "backend_src_ingredients_ingredients_module", "community": 3, "community_name": "app.module.ts", - "norm_label": "ingredients.module.ts", - "id": "backend_src_ingredients_ingredients_module" + "norm_label": "ingredients.module.ts" }, { "label": "Module", @@ -27453,32 +27775,21 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_ingredients_ingredients_module_ts_module", "community": 3, "community_name": "app.module.ts", - "norm_label": "module", - "id": "backend_src_ingredients_ingredients_module_ts_module" + "norm_label": "module" }, { - "label": "prisma.module.ts", + "label": "payment.module.ts", "file_type": "code", - "source_file": "backend/src/prisma/prisma.module.ts", + "source_file": "backend/src/payment/payment.module.ts", "source_location": "L1", "_origin": "ast", + "id": "backend_src_payment_payment_module", "community": 3, "community_name": "app.module.ts", - "norm_label": "prisma.module.ts", - "id": "backend_src_prisma_prisma_module" - }, - { - "label": "Global", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 3, - "community_name": "app.module.ts", - "norm_label": "global", - "id": "backend_src_prisma_prisma_module_ts_global" + "norm_label": "payment.module.ts" }, { "label": "Module", @@ -27486,7325 +27797,10 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_payment_payment_module_ts_module", "community": 3, "community_name": "app.module.ts", - "norm_label": "module", - "id": "backend_src_prisma_prisma_module_ts_module" - }, - { - "label": "reviews.module.ts", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.module.ts", - "source_location": "L1", - "_origin": "ast", - "community": 3, - "community_name": "app.module.ts", - "norm_label": "reviews.module.ts", - "id": "backend_src_reviews_reviews_module" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 3, - "community_name": "app.module.ts", - "norm_label": "module", - "id": "backend_src_reviews_reviews_module_ts_module" - }, - { - "label": "settings.module.ts", - "file_type": "code", - "source_file": "backend/src/settings/settings.module.ts", - "source_location": "L1", - "_origin": "ast", - "community": 3, - "community_name": "app.module.ts", - "norm_label": "settings.module.ts", - "id": "backend_src_settings_settings_module" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 3, - "community_name": "app.module.ts", - "norm_label": "module", - "id": "backend_src_settings_settings_module_ts_module" - }, - { - "label": "smart-advisor.module.ts", - "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.module.ts", - "source_location": "L1", - "_origin": "ast", - "community": 3, - "community_name": "app.module.ts", - "norm_label": "smart-advisor.module.ts", - "id": "backend_src_smart_advisor_smart_advisor_module" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 3, - "community_name": "app.module.ts", - "norm_label": "module", - "id": "backend_src_smart_advisor_smart_advisor_module_ts_module" - }, - { - "label": "testimonials.module.ts", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.module.ts", - "source_location": "L1", - "_origin": "ast", - "community": 3, - "community_name": "app.module.ts", - "norm_label": "testimonials.module.ts", - "id": "backend_src_testimonials_testimonials_module" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 3, - "community_name": "app.module.ts", - "norm_label": "module", - "id": "backend_src_testimonials_testimonials_module_ts_module" - }, - { - "label": "videos.module.ts", - "file_type": "code", - "source_file": "backend/src/videos/videos.module.ts", - "source_location": "L1", - "_origin": "ast", - "community": 3, - "community_name": "app.module.ts", - "norm_label": "videos.module.ts", - "id": "backend_src_videos_videos_module" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 3, - "community_name": "app.module.ts", - "norm_label": "module", - "id": "backend_src_videos_videos_module_ts_module" - }, - { - "label": "wholesale.module.ts", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.module.ts", - "source_location": "L1", - "_origin": "ast", - "community": 3, - "community_name": "app.module.ts", - "norm_label": "wholesale.module.ts", - "id": "backend_src_wholesale_wholesale_module" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 3, - "community_name": "app.module.ts", - "norm_label": "module", - "id": "backend_src_wholesale_wholesale_module_ts_module" - }, - { - "label": "generate-openapi.ts", - "file_type": "code", - "source_file": "backend/scripts/generate-openapi.ts", - "source_location": "L1", - "_origin": "ast", - "community": 30, - "community_name": "main.ts", - "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": 30, - "community_name": "main.ts", - "norm_label": "module", - "id": "backend_src_app_module_ts_module" - }, - { - "label": "http-exception.filter.ts", - "file_type": "code", - "source_file": "backend/src/common/filters/http-exception.filter.ts", - "source_location": "L1", - "_origin": "ast", - "community": 30, - "community_name": "main.ts", - "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": 30, - "community_name": "main.ts", - "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": 30, - "community_name": "main.ts", - "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": 30, - "community_name": "main.ts", - "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": 30, - "community_name": "main.ts", - "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": 30, - "community_name": "main.ts", - "norm_label": "decimal.interceptor.spec.ts", - "id": "backend_src_common_interceptors_decimal_interceptor_spec" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 30, - "community_name": "main.ts", - "norm_label": "injectable", - "id": "backend_src_common_interceptors_decimal_interceptor_ts_injectable" - }, - { - "label": "error-response.schema.ts", - "file_type": "code", - "source_file": "backend/src/common/schemas/error-response.schema.ts", - "source_location": "L1", - "_origin": "ast", - "community": 30, - "community_name": "main.ts", - "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": 30, - "community_name": "main.ts", - "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": 30, - "community_name": "main.ts", - "norm_label": "main.ts", - "id": "backend_src_main" - }, - { - "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": 30, - "community_name": "main.ts", - "norm_label": "app-audit-verification.e2e-spec.ts", - "id": "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": 30, - "community_name": "main.ts", - "norm_label": "app.e2e-spec.ts", - "id": "backend_test_app_e2e_spec" - }, - { - "label": "@eslint/eslintrc", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L46", - "_origin": "ast", - "community": 302, - "community_name": "@eslint/eslintrc", - "norm_label": "@eslint/eslintrc", - "id": "backend_package_devdependencies_eslint_eslintrc" - }, - { - "label": "@eslint/eslintrc", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L46", - "_origin": "ast", - "community": 302, - "community_name": "@eslint/eslintrc", - "norm_label": "@eslint/eslintrc", - "id": "eslint_eslintrc" - }, - { - "label": "media.controller.ts", - "file_type": "code", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 31, - "community_name": "JwtAuthGuard", - "norm_label": "media.controller.ts", - "id": "backend_src_admin_media_controller" - }, - { - "label": "ssl.controller.ts", - "file_type": "code", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 31, - "community_name": "JwtAuthGuard", - "norm_label": "ssl.controller.ts", - "id": "backend_src_admin_ssl_controller" - }, - { - "label": "jwt-auth.guard.ts", - "file_type": "code", - "source_file": "backend/src/auth/jwt-auth.guard.ts", - "source_location": "L1", - "_origin": "ast", - "community": 31, - "community_name": "JwtAuthGuard", - "norm_label": "jwt-auth.guard.ts", - "id": "backend_src_auth_jwt_auth_guard" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 31, - "community_name": "JwtAuthGuard", - "norm_label": "injectable", - "id": "backend_src_auth_jwt_auth_guard_ts_injectable" - }, - { - "label": "auth/roles.decorator.ts", - "file_type": "code", - "source_file": "backend/src/auth/roles.decorator.ts", - "source_location": "L1", - "_origin": "ast", - "community": 31, - "community_name": "JwtAuthGuard", - "norm_label": "auth/roles.decorator.ts", - "id": "backend_src_auth_roles_decorator" - }, - { - "label": "auth/roles.guard.ts", - "file_type": "code", - "source_file": "backend/src/auth/roles.guard.ts", - "source_location": "L1", - "_origin": "ast", - "community": 31, - "community_name": "JwtAuthGuard", - "norm_label": "auth/roles.guard.ts", - "id": "backend_src_auth_roles_guard" - }, - { - "label": "banners.controller.ts", - "file_type": "code", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 31, - "community_name": "JwtAuthGuard", - "norm_label": "banners.controller.ts", - "id": "backend_src_banners_banners_controller" - }, - { - "label": "decorators/roles.decorator.ts", - "file_type": "code", - "source_file": "backend/src/common/decorators/roles.decorator.ts", - "source_location": "L1", - "_origin": "ast", - "community": 31, - "community_name": "JwtAuthGuard", - "norm_label": "decorators/roles.decorator.ts", - "id": "backend_src_common_decorators_roles_decorator" - }, - { - "label": "ROLES_KEY", - "file_type": "code", - "source_file": "backend/src/common/decorators/roles.decorator.ts", - "source_location": "L3", - "_origin": "ast", - "community": 31, - "community_name": "JwtAuthGuard", - "norm_label": "roles_key", - "id": "backend_src_common_decorators_roles_decorator_roles_key" - }, - { - "label": "guards/roles.guard.ts", - "file_type": "code", - "source_file": "backend/src/common/guards/roles.guard.ts", - "source_location": "L1", - "_origin": "ast", - "community": 31, - "community_name": "JwtAuthGuard", - "norm_label": "guards/roles.guard.ts", - "id": "backend_src_common_guards_roles_guard" - }, - { - "label": "roles.guard.spec.ts", - "file_type": "code", - "source_file": "backend/src/common/guards/roles.guard.spec.ts", - "source_location": "L1", - "_origin": "ast", - "community": 31, - "community_name": "JwtAuthGuard", - "norm_label": "roles.guard.spec.ts", - "id": "backend_src_common_guards_roles_guard_spec" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 31, - "community_name": "JwtAuthGuard", - "norm_label": "injectable", - "id": "backend_src_common_guards_roles_guard_ts_injectable" - }, - { - "label": "contact.controller.ts", - "file_type": "code", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 31, - "community_name": "JwtAuthGuard", - "norm_label": "contact.controller.ts", - "id": "backend_src_contact_contact_controller" - }, - { - "label": "ingredients.controller.ts", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 31, - "community_name": "JwtAuthGuard", - "norm_label": "ingredients.controller.ts", - "id": "backend_src_ingredients_ingredients_controller" - }, - { - "label": "products.controller.ts", - "file_type": "code", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 31, - "community_name": "JwtAuthGuard", - "norm_label": "products.controller.ts", - "id": "backend_src_products_products_controller" - }, - { - "label": "create-review.dto.ts", - "file_type": "code", - "source_file": "backend/src/reviews/dto/create-review.dto.ts", - "source_location": "L1", - "_origin": "ast", - "community": 31, - "community_name": "JwtAuthGuard", - "norm_label": "create-review.dto.ts", - "id": "backend_src_reviews_dto_create_review_dto" - }, - { - "label": "update-review.dto.ts", - "file_type": "code", - "source_file": "backend/src/reviews/dto/update-review.dto.ts", - "source_location": "L1", - "_origin": "ast", - "community": 31, - "community_name": "JwtAuthGuard", - "norm_label": "update-review.dto.ts", - "id": "backend_src_reviews_dto_update_review_dto" - }, - { - "label": "reviews.controller.ts", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 31, - "community_name": "JwtAuthGuard", - "norm_label": "reviews.controller.ts", - "id": "backend_src_reviews_reviews_controller" - }, - { - "label": "reviews.service.ts", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L1", - "_origin": "ast", - "community": 31, - "community_name": "JwtAuthGuard", - "norm_label": "reviews.service.ts", - "id": "backend_src_reviews_reviews_service" - }, - { - "label": "settings.controller.ts", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 31, - "community_name": "JwtAuthGuard", - "norm_label": "settings.controller.ts", - "id": "backend_src_settings_settings_controller" - }, - { - "label": "settings.controller.spec.ts", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.spec.ts", - "source_location": "L1", - "_origin": "ast", - "community": 31, - "community_name": "JwtAuthGuard", - "norm_label": "settings.controller.spec.ts", - "id": "backend_src_settings_settings_controller_spec" - }, - { - "label": "smart-advisor.controller.ts", - "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 31, - "community_name": "JwtAuthGuard", - "norm_label": "smart-advisor.controller.ts", - "id": "backend_src_smart_advisor_smart_advisor_controller" - }, - { - "label": "testimonials.controller.ts", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 31, - "community_name": "JwtAuthGuard", - "norm_label": "testimonials.controller.ts", - "id": "backend_src_testimonials_testimonials_controller" - }, - { - "label": "wholesale.controller.ts", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 31, - "community_name": "JwtAuthGuard", - "norm_label": "wholesale.controller.ts", - "id": "backend_src_wholesale_wholesale_controller" - }, - { - "label": "tailwindcss", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L37", - "_origin": "ast", - "community": 312, - "community_name": "tailwindcss", - "norm_label": "tailwindcss", - "id": "frontend_admin_panel_package_devdependencies_tailwindcss" - }, - { - "label": "tailwindcss", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L37", - "_origin": "ast", - "community": 312, - "community_name": "tailwindcss", - "norm_label": "tailwindcss", - "id": "frontend_admin_panel_package_json_tailwindcss" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 32, - "community_name": "ZibalService", - "norm_label": "injectable", - "id": "backend_src_payment_payment_service_ts_injectable" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 32, - "community_name": "ZibalService", - "norm_label": "injectable", - "id": "backend_src_payment_zibal_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", - "community": 33, - "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", - "id": "docs_04_setup_and_deployment" - }, - { - "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", - "community": 33, - "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", - "id": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u0628\u06a9_\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", - "community": 33, - "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", - "id": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f" - }, - { - "label": "\u0627\u062c\u0631\u0627\u06cc \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", - "community": 33, - "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", - "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": "\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", - "community": 33, - "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:", - "id": "docs_04_setup_and_deployment_\u0628\u0631\u0627\u06cc_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0628\u06a9_\u0627\u0646\u062f" - }, - { - "label": "\u0628\u0631\u0627\u06cc \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \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", - "community": 33, - "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:", - "id": "docs_04_setup_and_deployment_\u0628\u0631\u0627\u06cc_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_next_js" - }, - { - "label": "\u0628\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": 33, - "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)", - "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": 33, - "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:", - "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", - "community": 33, - "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)", - "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": "\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", - "community": 33, - "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", - "id": "docs_04_setup_and_deployment_\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", - "community": 33, - "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", - "id": "docs_04_setup_and_deployment_\u067e\u06cc\u0634_\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", - "community": 33, - "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)", - "id": "docs_04_setup_and_deployment_\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", - "community": 33, - "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)", - "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": "\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", - "community": 33, - "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)", - "id": "docs_04_setup_and_deployment_\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", - "community": 33, - "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", - "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": 33, - "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)", - "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": 33, - "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)", - "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": 33, - "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)", - "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": 33, - "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)", - "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": 33, - "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)", - "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": 33, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "06-testing.md", - "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": 33, - "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)", - "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": 33, - "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)", - "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": 33, - "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)", - "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": 33, - "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)", - "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": 33, - "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)", - "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": 33, - "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)", - "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": 33, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "docs/readme.md", - "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": 33, - "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)", - "id": "docs_readme_\u0641\u0647\u0631\u0633\u062a_\u0645\u0637\u0627\u0644\u0628_table_of_contents" - }, - { - "label": "categories.controller.ts", - "file_type": "code", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 34, - "community_name": "CategoriesController", - "norm_label": "categories.controller.ts", - "id": "backend_src_admin_categories_controller" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 34, - "community_name": "CategoriesController", - "norm_label": "apibearerauth", - "id": "backend_src_admin_categories_controller_ts_apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 34, - "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": 34, - "community_name": "CategoriesController", - "norm_label": "apiquery", - "id": "backend_src_admin_categories_controller_ts_apiquery" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 34, - "community_name": "CategoriesController", - "norm_label": "apitags", - "id": "backend_src_admin_categories_controller_ts_apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 34, - "community_name": "CategoriesController", - "norm_label": "body", - "id": "backend_src_admin_categories_controller_ts_body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 34, - "community_name": "CategoriesController", - "norm_label": "controller", - "id": "backend_src_admin_categories_controller_ts_controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 34, - "community_name": "CategoriesController", - "norm_label": "delete", - "id": "backend_src_admin_categories_controller_ts_delete" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 34, - "community_name": "CategoriesController", - "norm_label": "get", - "id": "backend_src_admin_categories_controller_ts_get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 34, - "community_name": "CategoriesController", - "norm_label": "param", - "id": "backend_src_admin_categories_controller_ts_param" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 34, - "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": 34, - "community_name": "CategoriesController", - "norm_label": "put", - "id": "backend_src_admin_categories_controller_ts_put" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 34, - "community_name": "CategoriesController", - "norm_label": "query", - "id": "backend_src_admin_categories_controller_ts_query" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 34, - "community_name": "CategoriesController", - "norm_label": "useguards", - "id": "backend_src_admin_categories_controller_ts_useguards" - }, - { - "label": "categories.service.ts", - "file_type": "code", - "source_file": "backend/src/admin/categories.service.ts", - "source_location": "L1", - "_origin": "ast", - "community": 34, - "community_name": "CategoriesController", - "norm_label": "categories.service.ts", - "id": "backend_src_admin_categories_service" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 34, - "community_name": "CategoriesController", - "norm_label": "injectable", - "id": "backend_src_admin_categories_service_ts_injectable" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 35, - "community_name": "B2BController", - "norm_label": "apibearerauth", - "id": "backend_src_b2b_b2b_controller_ts_apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 35, - "community_name": "B2BController", - "norm_label": "apioperation", - "id": "backend_src_b2b_b2b_controller_ts_apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 35, - "community_name": "B2BController", - "norm_label": "apitags", - "id": "backend_src_b2b_b2b_controller_ts_apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 35, - "community_name": "B2BController", - "norm_label": "body", - "id": "backend_src_b2b_b2b_controller_ts_body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 35, - "community_name": "B2BController", - "norm_label": "controller", - "id": "backend_src_b2b_b2b_controller_ts_controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 35, - "community_name": "B2BController", - "norm_label": "get", - "id": "backend_src_b2b_b2b_controller_ts_get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 35, - "community_name": "B2BController", - "norm_label": "param", - "id": "backend_src_b2b_b2b_controller_ts_param" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 35, - "community_name": "B2BController", - "norm_label": "post", - "id": "backend_src_b2b_b2b_controller_ts_post" - }, - { - "label": "Put", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 35, - "community_name": "B2BController", - "norm_label": "put", - "id": "backend_src_b2b_b2b_controller_ts_put" - }, - { - "label": "Req", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 35, - "community_name": "B2BController", - "norm_label": "req", - "id": "backend_src_b2b_b2b_controller_ts_req" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 35, - "community_name": "B2BController", - "norm_label": "useguards", - "id": "backend_src_b2b_b2b_controller_ts_useguards" - }, - { - "label": ".antigravity/workflows/graphify.md", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L1", - "_origin": "ast", - "community": 36, - "community_name": "What You Must Do When Invoked", - "norm_label": ".antigravity/workflows/graphify.md", - "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": 36, - "community_name": "What You Must Do When Invoked", - "norm_label": "for /graphify add and --watch", - "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": 36, - "community_name": "What You Must Do When Invoked", - "norm_label": "for /graphify query", - "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": 36, - "community_name": "What You Must Do When Invoked", - "norm_label": "for the commit hook and native claude.md integration", - "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": 36, - "community_name": "What You Must Do When Invoked", - "norm_label": "for --update and --cluster-only", - "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": 36, - "community_name": "What You Must Do When Invoked", - "norm_label": "/graphify", - "id": "antigravity_workflows_graphify_graphify" - }, - { - "label": "Honesty Rules", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L744", - "_origin": "ast", - "community": 36, - "community_name": "What You Must Do When Invoked", - "norm_label": "honesty rules", - "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": 36, - "community_name": "What You Must Do When Invoked", - "norm_label": "interpreter guard for subcommands", - "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": 36, - "community_name": "What You Must Do When Invoked", - "norm_label": "part a - structural extraction for code files", - "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": 36, - "community_name": "What You Must Do When Invoked", - "norm_label": "part b - semantic extraction (parallel subagents)", - "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": 36, - "community_name": "What You Must Do When Invoked", - "norm_label": "part c - merge ast + semantic into final extraction", - "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": 36, - "community_name": "What You Must Do When Invoked", - "norm_label": "powershell 5.1: vertical scrolling stops working", - "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": 36, - "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)", - "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": 36, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 1 - ensure graphify is installed", - "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": 36, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 2.5 - video and audio (only if video files detected)", - "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": 36, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 2 - detect files", - "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": 36, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 3 - extract entities and relationships", - "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": 36, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 4.5 - graph health check (read-only integrity gate)", - "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": 36, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 4 - build graph, cluster, analyze, generate outputs", - "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": 36, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 5 - label communities", - "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": 36, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 6 - generate obsidian vault (opt-in) + html", - "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": 36, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 9 - save manifest, update cost tracker, clean up, and report", - "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": 36, - "community_name": "What You Must Do When Invoked", - "norm_label": "steps 6b-8 - wiki, neo4j, falkordb, svg, graphml, mcp, benchmark (only on their flags)", - "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": 36, - "community_name": "What You Must Do When Invoked", - "norm_label": "troubleshooting", - "id": "antigravity_workflows_graphify_troubleshooting" - }, - { - "label": "Usage", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L10", - "_origin": "ast", - "community": 36, - "community_name": "What You Must Do When Invoked", - "norm_label": "usage", - "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": 36, - "community_name": "What You Must Do When Invoked", - "norm_label": "what graphify is for", - "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": 36, - "community_name": "What You Must Do When Invoked", - "norm_label": "what you must do when invoked", - "id": "antigravity_workflows_graphify_what_you_must_do_when_invoked" - }, - { - "label": "[id]/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/checkout/success/[id]/page.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 37, - "community_name": "userStore.ts", - "norm_label": "[id]/page.tsx", - "id": "frontend_application_app_checkout_success_id_page" - }, - { - "label": "ClientLayout.tsx", - "file_type": "code", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 37, - "community_name": "userStore.ts", - "norm_label": "clientlayout.tsx", - "id": "frontend_application_app_clientlayout" - }, - { - "label": "layout.tsx", - "file_type": "code", - "source_file": "frontend/application/app/layout.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 37, - "community_name": "userStore.ts", - "norm_label": "layout.tsx", - "id": "frontend_application_app_layout" - }, - { - "label": "track/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/track/page.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 37, - "community_name": "userStore.ts", - "norm_label": "track/page.tsx", - "id": "frontend_application_app_track_page" - }, - { - "label": "AuthModal.tsx", - "file_type": "code", - "source_file": "frontend/application/components/AuthModal.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 37, - "community_name": "userStore.ts", - "norm_label": "authmodal.tsx", - "id": "frontend_application_components_authmodal" - }, - { - "label": "B2BPortal.tsx", - "file_type": "code", - "source_file": "frontend/application/components/B2BPortal.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 37, - "community_name": "userStore.ts", - "norm_label": "b2bportal.tsx", - "id": "frontend_application_components_b2bportal" - }, - { - "label": "CartDrawer.tsx", - "file_type": "code", - "source_file": "frontend/application/components/CartDrawer.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 37, - "community_name": "userStore.ts", - "norm_label": "cartdrawer.tsx", - "id": "frontend_application_components_cartdrawer" - }, - { - "label": "Header.tsx", - "file_type": "code", - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 37, - "community_name": "userStore.ts", - "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": 37, - "community_name": "userStore.ts", - "norm_label": "menu_icons", - "id": "frontend_application_components_header_menu_icons" - }, - { - "label": "OrderSuccess.tsx", - "file_type": "code", - "source_file": "frontend/application/components/OrderSuccess.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 37, - "community_name": "userStore.ts", - "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": 37, - "community_name": "userStore.ts", - "norm_label": "ordertracking.tsx", - "id": "frontend_application_components_ordertracking" - }, - { - "label": "PrescriptionUploadModal.tsx", - "file_type": "code", - "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 37, - "community_name": "userStore.ts", - "norm_label": "prescriptionuploadmodal.tsx", - "id": "frontend_application_components_prescriptionuploadmodal" - }, - { - "label": "CartDrawer.test.tsx", - "file_type": "code", - "source_file": "frontend/application/components/__tests__/CartDrawer.test.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 37, - "community_name": "userStore.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": 37, - "community_name": "userStore.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": 37, - "community_name": "userStore.ts", - "norm_label": "header.test.tsx", - "id": "frontend_application_components_tests_header_test" - }, - { - "label": "cartStore.ts", - "file_type": "code", - "source_file": "frontend/application/lib/store/cartStore.ts", - "source_location": "L1", - "_origin": "ast", - "community": 37, - "community_name": "userStore.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": 37, - "community_name": "userStore.ts", - "norm_label": "usecartstore", - "id": "frontend_application_lib_store_cartstore_usecartstore" - }, - { - "label": "uiStore.ts", - "file_type": "code", - "source_file": "frontend/application/lib/store/uiStore.ts", - "source_location": "L1", - "_origin": "ast", - "community": 37, - "community_name": "userStore.ts", - "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": 37, - "community_name": "userStore.ts", - "norm_label": "useuistore", - "id": "frontend_application_lib_store_uistore_useuistore" - }, - { - "label": "usePetStore", - "file_type": "code", - "source_file": "frontend/application/lib/store/usePetStore.ts", - "source_location": "L65", - "_origin": "ast", - "community": 37, - "community_name": "userStore.ts", - "norm_label": "usepetstore", - "id": "frontend_application_lib_store_usepetstore_usepetstore" - }, - { - "label": "userStore.ts", - "file_type": "code", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L1", - "_origin": "ast", - "community": 37, - "community_name": "userStore.ts", - "norm_label": "userstore.ts", - "id": "frontend_application_lib_store_userstore" - }, - { - "label": "useUserStore", - "file_type": "code", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L63", - "_origin": "ast", - "community": 37, - "community_name": "userStore.ts", - "norm_label": "useuserstore", - "id": "frontend_application_lib_store_userstore_useuserstore" - }, - { - "label": "auth.constants.ts", - "file_type": "code", - "source_file": "backend/src/auth/auth.constants.ts", - "source_location": "L1", - "_origin": "ast", - "community": 38, - "community_name": "UsersService", - "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": 38, - "community_name": "UsersService", - "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": 38, - "community_name": "UsersService", - "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": 38, - "community_name": "UsersService", - "norm_label": "auth.module.ts", - "id": "backend_src_auth_auth_module" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 38, - "community_name": "UsersService", - "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": 38, - "community_name": "UsersService", - "norm_label": "jwt.strategy.ts", - "id": "backend_src_auth_jwt_strategy" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 38, - "community_name": "UsersService", - "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": 38, - "community_name": "UsersService", - "norm_label": "address.dto.ts", - "id": "backend_src_users_dto_address_dto" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 38, - "community_name": "UsersService", - "norm_label": "apiproperty", - "id": "backend_src_users_dto_address_dto_ts_apiproperty" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 38, - "community_name": "UsersService", - "norm_label": "apipropertyoptional", - "id": "backend_src_users_dto_address_dto_ts_apipropertyoptional" - }, - { - "label": "IsBoolean", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 38, - "community_name": "UsersService", - "norm_label": "isboolean", - "id": "backend_src_users_dto_address_dto_ts_isboolean" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 38, - "community_name": "UsersService", - "norm_label": "isnotempty", - "id": "backend_src_users_dto_address_dto_ts_isnotempty" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 38, - "community_name": "UsersService", - "norm_label": "isoptional", - "id": "backend_src_users_dto_address_dto_ts_isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 38, - "community_name": "UsersService", - "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": 38, - "community_name": "UsersService", - "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": 38, - "community_name": "UsersService", - "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": 38, - "community_name": "UsersService", - "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": 38, - "community_name": "UsersService", - "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": 38, - "community_name": "UsersService", - "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": 38, - "community_name": "UsersService", - "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": 38, - "community_name": "UsersService", - "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": 38, - "community_name": "UsersService", - "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": 38, - "community_name": "UsersService", - "norm_label": "apibadrequestresponse", - "id": "backend_src_users_users_controller_ts_apibadrequestresponse" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 38, - "community_name": "UsersService", - "norm_label": "apibearerauth", - "id": "backend_src_users_users_controller_ts_apibearerauth" - }, - { - "label": "ApiCreatedResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 38, - "community_name": "UsersService", - "norm_label": "apicreatedresponse", - "id": "backend_src_users_users_controller_ts_apicreatedresponse" - }, - { - "label": "ApiOkResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 38, - "community_name": "UsersService", - "norm_label": "apiokresponse", - "id": "backend_src_users_users_controller_ts_apiokresponse" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 38, - "community_name": "UsersService", - "norm_label": "apioperation", - "id": "backend_src_users_users_controller_ts_apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 38, - "community_name": "UsersService", - "norm_label": "apitags", - "id": "backend_src_users_users_controller_ts_apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 38, - "community_name": "UsersService", - "norm_label": "body", - "id": "backend_src_users_users_controller_ts_body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 38, - "community_name": "UsersService", - "norm_label": "controller", - "id": "backend_src_users_users_controller_ts_controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 38, - "community_name": "UsersService", - "norm_label": "delete", - "id": "backend_src_users_users_controller_ts_delete" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 38, - "community_name": "UsersService", - "norm_label": "get", - "id": "backend_src_users_users_controller_ts_get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 38, - "community_name": "UsersService", - "norm_label": "param", - "id": "backend_src_users_users_controller_ts_param" - }, - { - "label": "Patch", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 38, - "community_name": "UsersService", - "norm_label": "patch", - "id": "backend_src_users_users_controller_ts_patch" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 38, - "community_name": "UsersService", - "norm_label": "post", - "id": "backend_src_users_users_controller_ts_post" - }, - { - "label": "Req", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 38, - "community_name": "UsersService", - "norm_label": "req", - "id": "backend_src_users_users_controller_ts_req" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 38, - "community_name": "UsersService", - "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": 38, - "community_name": "UsersService", - "norm_label": "users.module.ts", - "id": "backend_src_users_users_module" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 38, - "community_name": "UsersService", - "norm_label": "module", - "id": "backend_src_users_users_module_ts_module" - }, - { - "label": "users.service.ts", - "file_type": "code", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L1", - "_origin": "ast", - "community": 38, - "community_name": "UsersService", - "norm_label": "users.service.ts", - "id": "backend_src_users_users_service" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 38, - "community_name": "UsersService", - "norm_label": "injectable", - "id": "backend_src_users_users_service_ts_injectable" - }, - { - "label": "SKILL.md", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L1", - "_origin": "ast", - "community": 39, - "community_name": "What You Must Do When Invoked", - "norm_label": "skill.md", - "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": 39, - "community_name": "What You Must Do When Invoked", - "norm_label": "for /graphify add and --watch", - "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": 39, - "community_name": "What You Must Do When Invoked", - "norm_label": "for /graphify query", - "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": 39, - "community_name": "What You Must Do When Invoked", - "norm_label": "for the commit hook and native claude.md integration", - "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": 39, - "community_name": "What You Must Do When Invoked", - "norm_label": "for --update and --cluster-only", - "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": 39, - "community_name": "What You Must Do When Invoked", - "norm_label": "/graphify", - "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": 39, - "community_name": "What You Must Do When Invoked", - "norm_label": "honesty rules", - "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": 39, - "community_name": "What You Must Do When Invoked", - "norm_label": "interpreter guard for subcommands", - "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": 39, - "community_name": "What You Must Do When Invoked", - "norm_label": "part a - structural extraction for code files", - "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": 39, - "community_name": "What You Must Do When Invoked", - "norm_label": "part b - semantic extraction (parallel subagents)", - "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": 39, - "community_name": "What You Must Do When Invoked", - "norm_label": "part c - merge ast + semantic into final extraction", - "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": 39, - "community_name": "What You Must Do When Invoked", - "norm_label": "powershell 5.1: vertical scrolling stops working", - "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": 39, - "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)", - "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": 39, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 1 - ensure graphify is installed", - "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": 39, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 2.5 - video and audio (only if video files detected)", - "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": 39, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 2 - detect files", - "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": 39, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 3 - extract entities and relationships", - "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": 39, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 4.5 - graph health check (read-only integrity gate)", - "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": 39, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 4 - build graph, cluster, analyze, generate outputs", - "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": 39, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 5 - label communities", - "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": 39, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 6 - generate obsidian vault (opt-in) + html", - "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": 39, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 9 - save manifest, update cost tracker, clean up, and report", - "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": 39, - "community_name": "What You Must Do When Invoked", - "norm_label": "steps 6b-8 - wiki, neo4j, falkordb, svg, graphml, mcp, benchmark (only on their flags)", - "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": 39, - "community_name": "What You Must Do When Invoked", - "norm_label": "troubleshooting", - "id": "claude_skills_graphify_skill_troubleshooting" - }, - { - "label": "Usage", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L10", - "_origin": "ast", - "community": 39, - "community_name": "What You Must Do When Invoked", - "norm_label": "usage", - "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": 39, - "community_name": "What You Must Do When Invoked", - "norm_label": "what graphify is for", - "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": 39, - "community_name": "What You Must Do When Invoked", - "norm_label": "what you must do when invoked", - "id": "claude_skills_graphify_skill_what_you_must_do_when_invoked" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 4, - "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": 4, - "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": 4, - "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": 4, - "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": 4, - "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": 4, - "community_name": "CreateReviewDto", - "norm_label": "min", - "id": "backend_src_reviews_dto_create_review_dto_ts_min" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 4, - "community_name": "CreateReviewDto", - "norm_label": "apiproperty", - "id": "backend_src_reviews_dto_update_review_dto_ts_apiproperty" - }, - { - "label": "IsIn", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 4, - "community_name": "CreateReviewDto", - "norm_label": "isin", - "id": "backend_src_reviews_dto_update_review_dto_ts_isin" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 4, - "community_name": "CreateReviewDto", - "norm_label": "isoptional", - "id": "backend_src_reviews_dto_update_review_dto_ts_isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 4, - "community_name": "CreateReviewDto", - "norm_label": "isstring", - "id": "backend_src_reviews_dto_update_review_dto_ts_isstring" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 4, - "community_name": "CreateReviewDto", - "norm_label": "apibearerauth", - "id": "backend_src_reviews_reviews_controller_ts_apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 4, - "community_name": "CreateReviewDto", - "norm_label": "apioperation", - "id": "backend_src_reviews_reviews_controller_ts_apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 4, - "community_name": "CreateReviewDto", - "norm_label": "apitags", - "id": "backend_src_reviews_reviews_controller_ts_apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 4, - "community_name": "CreateReviewDto", - "norm_label": "body", - "id": "backend_src_reviews_reviews_controller_ts_body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 4, - "community_name": "CreateReviewDto", - "norm_label": "controller", - "id": "backend_src_reviews_reviews_controller_ts_controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 4, - "community_name": "CreateReviewDto", - "norm_label": "delete", - "id": "backend_src_reviews_reviews_controller_ts_delete" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 4, - "community_name": "CreateReviewDto", - "norm_label": "get", - "id": "backend_src_reviews_reviews_controller_ts_get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 4, - "community_name": "CreateReviewDto", - "norm_label": "param", - "id": "backend_src_reviews_reviews_controller_ts_param" - }, - { - "label": "Patch", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 4, - "community_name": "CreateReviewDto", - "norm_label": "patch", - "id": "backend_src_reviews_reviews_controller_ts_patch" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 4, - "community_name": "CreateReviewDto", - "norm_label": "post", - "id": "backend_src_reviews_reviews_controller_ts_post" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 4, - "community_name": "CreateReviewDto", - "norm_label": "query", - "id": "backend_src_reviews_reviews_controller_ts_query" - }, - { - "label": "Req", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 4, - "community_name": "CreateReviewDto", - "norm_label": "req", - "id": "backend_src_reviews_reviews_controller_ts_req" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 4, - "community_name": "CreateReviewDto", - "norm_label": "useguards", - "id": "backend_src_reviews_reviews_controller_ts_useguards" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 4, - "community_name": "CreateReviewDto", - "norm_label": "injectable", - "id": "backend_src_reviews_reviews_service_ts_injectable" - }, - { - "label": "Max", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 4, - "community_name": "CreateReviewDto", - "norm_label": "max", - "id": "max" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 40, - "community_name": "SslController", - "norm_label": "apibearerauth", - "id": "backend_src_admin_ssl_controller_ts_apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 40, - "community_name": "SslController", - "norm_label": "apioperation", - "id": "backend_src_admin_ssl_controller_ts_apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 40, - "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": 40, - "community_name": "SslController", - "norm_label": "body", - "id": "backend_src_admin_ssl_controller_ts_body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 40, - "community_name": "SslController", - "norm_label": "controller", - "id": "backend_src_admin_ssl_controller_ts_controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 40, - "community_name": "SslController", - "norm_label": "get", - "id": "backend_src_admin_ssl_controller_ts_get" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 40, - "community_name": "SslController", - "norm_label": "post", - "id": "backend_src_admin_ssl_controller_ts_post" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 40, - "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": 40, - "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": 40, - "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": 40, - "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": 40, - "community_name": "SslController", - "norm_label": "uploadedfiles", - "id": "uploadedfiles" - }, - { - "label": "PodcastPlayerModal.tsx", - "file_type": "code", - "source_file": "frontend/application/components/PodcastPlayerModal.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 41, - "community_name": "PodcastPlayerModal.tsx", - "norm_label": "podcastplayermodal.tsx", - "id": "frontend_application_components_podcastplayermodal" - }, - { - "label": "PLAYBACK_RATES", - "file_type": "code", - "source_file": "frontend/application/components/PodcastPlayerModal.tsx", - "source_location": "L33", - "_origin": "ast", - "community": 41, - "community_name": "PodcastPlayerModal.tsx", - "norm_label": "playback_rates", - "id": "frontend_application_components_podcastplayermodal_playback_rates" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 42, - "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": 42, - "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": 42, - "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": 42, - "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": 42, - "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": 42, - "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": 42, - "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": 42, - "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": 42, - "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": 42, - "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": 42, - "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": 42, - "community_name": "IngredientsService", - "norm_label": "injectable", - "id": "backend_src_ingredients_ingredients_service_ts_injectable" - }, - { - "label": "admin.service.spec.ts", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.spec.ts", - "source_location": "L1", - "_origin": "ast", - "community": 43, - "community_name": "RedisService", - "norm_label": "admin.service.spec.ts", - "id": "backend_src_admin_admin_service_spec" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 43, - "community_name": "RedisService", - "norm_label": "injectable", - "id": "backend_src_auth_auth_service_ts_injectable" - }, - { - "label": "phone.utils.ts", - "file_type": "code", - "source_file": "backend/src/common/utils/phone.utils.ts", - "source_location": "L1", - "_origin": "ast", - "community": 43, - "community_name": "RedisService", - "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": 43, - "community_name": "RedisService", - "norm_label": "redis.module.ts", - "id": "backend_src_redis_redis_module" - }, - { - "label": "redis.service.ts", - "file_type": "code", - "source_file": "backend/src/redis/redis.service.ts", - "source_location": "L1", - "_origin": "ast", - "community": 43, - "community_name": "RedisService", - "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": 43, - "community_name": "RedisService", - "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": 43, - "community_name": "RedisService", - "norm_label": "injectable", - "id": "backend_src_redis_redis_service_ts_injectable" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 44, - "community_name": "MediaController", - "norm_label": "apibearerauth", - "id": "backend_src_admin_media_controller_ts_apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 44, - "community_name": "MediaController", - "norm_label": "apioperation", - "id": "backend_src_admin_media_controller_ts_apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 44, - "community_name": "MediaController", - "norm_label": "apitags", - "id": "backend_src_admin_media_controller_ts_apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 44, - "community_name": "MediaController", - "norm_label": "body", - "id": "backend_src_admin_media_controller_ts_body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 44, - "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": 44, - "community_name": "MediaController", - "norm_label": "delete", - "id": "backend_src_admin_media_controller_ts_delete" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 44, - "community_name": "MediaController", - "norm_label": "get", - "id": "backend_src_admin_media_controller_ts_get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 44, - "community_name": "MediaController", - "norm_label": "param", - "id": "backend_src_admin_media_controller_ts_param" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 44, - "community_name": "MediaController", - "norm_label": "post", - "id": "backend_src_admin_media_controller_ts_post" - }, - { - "label": "Put", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 44, - "community_name": "MediaController", - "norm_label": "put", - "id": "backend_src_admin_media_controller_ts_put" - }, - { - "label": "UploadedFile", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 44, - "community_name": "MediaController", - "norm_label": "uploadedfile", - "id": "backend_src_admin_media_controller_ts_uploadedfile" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 44, - "community_name": "MediaController", - "norm_label": "useguards", - "id": "backend_src_admin_media_controller_ts_useguards" - }, - { - "label": "UseInterceptors", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 44, - "community_name": "MediaController", - "norm_label": "useinterceptors", - "id": "backend_src_admin_media_controller_ts_useinterceptors" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 44, - "community_name": "MediaController", - "norm_label": "injectable", - "id": "backend_src_admin_media_service_ts_injectable" - }, - { - "label": "Pagination.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Pagination.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 45, - "community_name": "Pagination.tsx", - "norm_label": "pagination.tsx", - "id": "frontend_admin_panel_src_components_ui_pagination" - }, - { - "label": "Pets.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Pets.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 45, - "community_name": "Pagination.tsx", - "norm_label": "pets.tsx", - "id": "frontend_admin_panel_src_pages_pets" - }, - { - "label": "Transactions.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 45, - "community_name": "Pagination.tsx", - "norm_label": "transactions.tsx", - "id": "frontend_admin_panel_src_pages_transactions" - }, - { - "label": "Wiki.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 45, - "community_name": "Pagination.tsx", - "norm_label": "wiki.tsx", - "id": "frontend_admin_panel_src_pages_wiki" - }, - { - "label": "Pets", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L20", - "_origin": "ast", - "community": 45, - "community_name": "Pagination.tsx", - "norm_label": "pets", - "id": "frontend_admin_panel_src_routes_adminroutes_pets" - }, - { - "label": "Transactions", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L38", - "_origin": "ast", - "community": 45, - "community_name": "Pagination.tsx", - "norm_label": "transactions", - "id": "frontend_admin_panel_src_routes_adminroutes_transactions" - }, - { - "label": "Wiki", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L19", - "_origin": "ast", - "community": 45, - "community_name": "Pagination.tsx", - "norm_label": "wiki", - "id": "frontend_admin_panel_src_routes_adminroutes_wiki" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 46, - "community_name": "SmsService", - "norm_label": "injectable", - "id": "backend_src_common_services_sms_service_ts_injectable" - }, - { - "label": "ApiBadRequestResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 47, - "community_name": "OrdersController", - "norm_label": "apibadrequestresponse", - "id": "backend_src_orders_orders_controller_ts_apibadrequestresponse" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 47, - "community_name": "OrdersController", - "norm_label": "apibearerauth", - "id": "backend_src_orders_orders_controller_ts_apibearerauth" - }, - { - "label": "ApiCreatedResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 47, - "community_name": "OrdersController", - "norm_label": "apicreatedresponse", - "id": "backend_src_orders_orders_controller_ts_apicreatedresponse" - }, - { - "label": "ApiNotFoundResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 47, - "community_name": "OrdersController", - "norm_label": "apinotfoundresponse", - "id": "backend_src_orders_orders_controller_ts_apinotfoundresponse" - }, - { - "label": "ApiOkResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 47, - "community_name": "OrdersController", - "norm_label": "apiokresponse", - "id": "backend_src_orders_orders_controller_ts_apiokresponse" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 47, - "community_name": "OrdersController", - "norm_label": "apioperation", - "id": "backend_src_orders_orders_controller_ts_apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 47, - "community_name": "OrdersController", - "norm_label": "apitags", - "id": "backend_src_orders_orders_controller_ts_apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 47, - "community_name": "OrdersController", - "norm_label": "body", - "id": "backend_src_orders_orders_controller_ts_body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 47, - "community_name": "OrdersController", - "norm_label": "controller", - "id": "backend_src_orders_orders_controller_ts_controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 47, - "community_name": "OrdersController", - "norm_label": "get", - "id": "backend_src_orders_orders_controller_ts_get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 47, - "community_name": "OrdersController", - "norm_label": "param", - "id": "backend_src_orders_orders_controller_ts_param" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 47, - "community_name": "OrdersController", - "norm_label": "post", - "id": "backend_src_orders_orders_controller_ts_post" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 47, - "community_name": "OrdersController", - "norm_label": "query", - "id": "backend_src_orders_orders_controller_ts_query" - }, - { - "label": "Req", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 47, - "community_name": "OrdersController", - "norm_label": "req", - "id": "backend_src_orders_orders_controller_ts_req" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 47, - "community_name": "OrdersController", - "norm_label": "useguards", - "id": "backend_src_orders_orders_controller_ts_useguards" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 48, - "community_name": "PrescriptionsController", - "norm_label": "apibearerauth", - "id": "backend_src_prescriptions_prescriptions_controller_ts_apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 48, - "community_name": "PrescriptionsController", - "norm_label": "apioperation", - "id": "backend_src_prescriptions_prescriptions_controller_ts_apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 48, - "community_name": "PrescriptionsController", - "norm_label": "apitags", - "id": "backend_src_prescriptions_prescriptions_controller_ts_apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 48, - "community_name": "PrescriptionsController", - "norm_label": "body", - "id": "backend_src_prescriptions_prescriptions_controller_ts_body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 48, - "community_name": "PrescriptionsController", - "norm_label": "controller", - "id": "backend_src_prescriptions_prescriptions_controller_ts_controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 48, - "community_name": "PrescriptionsController", - "norm_label": "get", - "id": "backend_src_prescriptions_prescriptions_controller_ts_get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 48, - "community_name": "PrescriptionsController", - "norm_label": "param", - "id": "backend_src_prescriptions_prescriptions_controller_ts_param" - }, - { - "label": "Patch", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 48, - "community_name": "PrescriptionsController", - "norm_label": "patch", - "id": "backend_src_prescriptions_prescriptions_controller_ts_patch" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 48, - "community_name": "PrescriptionsController", - "norm_label": "post", - "id": "backend_src_prescriptions_prescriptions_controller_ts_post" - }, - { - "label": "Req", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 48, - "community_name": "PrescriptionsController", - "norm_label": "req", - "id": "backend_src_prescriptions_prescriptions_controller_ts_req" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 48, - "community_name": "PrescriptionsController", - "norm_label": "useguards", - "id": "backend_src_prescriptions_prescriptions_controller_ts_useguards" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 49, - "community_name": "SmartAdvisorController", - "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": 49, - "community_name": "SmartAdvisorController", - "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": 49, - "community_name": "SmartAdvisorController", - "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": 49, - "community_name": "SmartAdvisorController", - "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": 49, - "community_name": "SmartAdvisorController", - "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": 49, - "community_name": "SmartAdvisorController", - "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": 49, - "community_name": "SmartAdvisorController", - "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": 49, - "community_name": "SmartAdvisorController", - "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": 49, - "community_name": "SmartAdvisorController", - "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": 49, - "community_name": "SmartAdvisorController", - "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": 49, - "community_name": "SmartAdvisorController", - "norm_label": "useguards", - "id": "backend_src_smart_advisor_smart_advisor_controller_ts_useguards" - }, - { - "label": "create-ticket.dto.ts", - "file_type": "code", - "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", - "source_location": "L1", - "_origin": "ast", - "community": 5, - "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": 5, - "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": 5, - "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": 5, - "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": 5, - "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": 5, - "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": 5, - "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": 5, - "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": 5, - "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": 5, - "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": 5, - "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": 5, - "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": 5, - "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": 5, - "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": 5, - "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": 5, - "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": 5, - "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": 5, - "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": 5, - "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": 5, - "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": 5, - "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": 5, - "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": 5, - "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": 5, - "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": 5, - "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": 5, - "community_name": "tickets.controller.ts", - "norm_label": "tickets.module.ts", - "id": "backend_src_tickets_tickets_module" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 5, - "community_name": "tickets.controller.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": 5, - "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": 5, - "community_name": "tickets.controller.ts", - "norm_label": "injectable", - "id": "backend_src_tickets_tickets_service_ts_injectable" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 50, - "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": 50, - "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": 50, - "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": 50, - "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": 50, - "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": 50, - "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": 50, - "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": 50, - "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": 50, - "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": 50, - "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": 50, - "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": 50, - "community_name": "TestimonialsService", - "norm_label": "injectable", - "id": "backend_src_testimonials_testimonials_service_ts_injectable" - }, - { - "label": "12_seo_content.md", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L1", - "_origin": "ast", - "community": 51, - "community_name": "Role & Core Objective", - "norm_label": "12_seo_content.md", - "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": 51, - "community_name": "Role & Core Objective", - "norm_label": "create mode \u2014 normal operation", - "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": 51, - "community_name": "Role & Core Objective", - "norm_label": "expected json output schema", - "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": 51, - "community_name": "Role & Core Objective", - "norm_label": "file scope boundary", - "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": 51, - "community_name": "Role & Core Objective", - "norm_label": "forbidden actions", - "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": 51, - "community_name": "Role & Core Objective", - "norm_label": "mode 1: review (called during review phase)", - "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": 51, - "community_name": "Role & Core Objective", - "norm_label": "mode 2: content creation (standalone task from backlog)", - "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": 51, - "community_name": "Role & Core Objective", - "norm_label": "operating modes", - "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": 51, - "community_name": "Role & Core Objective", - "norm_label": "operational rules & boundaries", - "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": 51, - "community_name": "Role & Core Objective", - "norm_label": "output", - "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": 51, - "community_name": "Role & Core Objective", - "norm_label": "required output artifacts", - "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": 51, - "community_name": "Role & Core Objective", - "norm_label": "\u2605 review mode (called during review phase)", - "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": 51, - "community_name": "Role & Core Objective", - "norm_label": "role & core objective", - "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": 51, - "community_name": "Role & Core Objective", - "norm_label": "step 1: gather resources", - "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": 51, - "community_name": "Role & Core Objective", - "norm_label": "step 2: seo strategy", - "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": 51, - "community_name": "Role & Core Objective", - "norm_label": "step 3: content hierarchy", - "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": 51, - "community_name": "Role & Core Objective", - "norm_label": "step 4: structured data (json-ld)", - "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": 51, - "community_name": "Role & Core Objective", - "norm_label": "step 5: real content writing standards", - "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": 51, - "community_name": "Role & Core Objective", - "norm_label": "step 6: image alt text", - "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": 51, - "community_name": "Role & Core Objective", - "norm_label": "strict input specifications (what files to read)", - "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": 51, - "community_name": "Role & Core Objective", - "norm_label": "what you do not review", - "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": 51, - "community_name": "Role & Core Objective", - "norm_label": "what you look for (seo expert eyes only)", - "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": 51, - "community_name": "Role & Core Objective", - "norm_label": "your domain \u2014 what you review (only these areas)", - "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": 52, - "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": 52, - "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": 52, - "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": 52, - "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": 52, - "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": 52, - "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": 52, - "community_name": "ContactService", - "norm_label": "query", - "id": "backend_src_contact_contact_controller_ts_query" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 52, - "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": 52, - "community_name": "ContactService", - "norm_label": "injectable", - "id": "backend_src_contact_contact_service_ts_injectable" - }, - { - "label": "ApiBadRequestResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 53, - "community_name": "PaymentController", - "norm_label": "apibadrequestresponse", - "id": "backend_src_payment_payment_controller_ts_apibadrequestresponse" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 53, - "community_name": "PaymentController", - "norm_label": "apibearerauth", - "id": "backend_src_payment_payment_controller_ts_apibearerauth" - }, - { - "label": "ApiOkResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 53, - "community_name": "PaymentController", - "norm_label": "apiokresponse", - "id": "backend_src_payment_payment_controller_ts_apiokresponse" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 53, - "community_name": "PaymentController", - "norm_label": "apioperation", - "id": "backend_src_payment_payment_controller_ts_apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 53, - "community_name": "PaymentController", - "norm_label": "apitags", - "id": "backend_src_payment_payment_controller_ts_apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 53, - "community_name": "PaymentController", - "norm_label": "body", - "id": "backend_src_payment_payment_controller_ts_body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 53, - "community_name": "PaymentController", - "norm_label": "controller", - "id": "backend_src_payment_payment_controller_ts_controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 53, - "community_name": "PaymentController", - "norm_label": "get", - "id": "backend_src_payment_payment_controller_ts_get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 53, - "community_name": "PaymentController", - "norm_label": "param", - "id": "backend_src_payment_payment_controller_ts_param" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 53, - "community_name": "PaymentController", - "norm_label": "post", - "id": "backend_src_payment_payment_controller_ts_post" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 53, - "community_name": "PaymentController", - "norm_label": "query", - "id": "backend_src_payment_payment_controller_ts_query" - }, - { - "label": "Req", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 53, - "community_name": "PaymentController", - "norm_label": "req", - "id": "backend_src_payment_payment_controller_ts_req" - }, - { - "label": "Res", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 53, - "community_name": "PaymentController", - "norm_label": "res", - "id": "backend_src_payment_payment_controller_ts_res" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 53, - "community_name": "PaymentController", - "norm_label": "useguards", - "id": "backend_src_payment_payment_controller_ts_useguards" - }, - { - "label": "Headers", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 53, - "community_name": "PaymentController", - "norm_label": "headers", - "id": "headers" - }, - { - "label": "Ip", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 53, - "community_name": "PaymentController", - "norm_label": "ip", - "id": "ip" - }, - { - "label": "backend/tsconfig.json", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L1", - "_origin": "ast", - "community": 54, - "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": 54, - "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": 54, - "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": 54, - "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": 54, - "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": 54, - "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": 54, - "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": 54, - "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": 54, - "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": 54, - "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": 54, - "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": 54, - "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": 54, - "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": 54, - "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": 54, - "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": 54, - "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": 54, - "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": 54, - "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": 54, - "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": 54, - "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": 54, - "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": 54, - "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": 54, - "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": 54, - "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": 54, - "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": 54, - "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": 54, - "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": 54, - "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": 54, - "community_name": "compilerOptions", - "norm_label": "prisma", - "id": "backend_tsconfig_json_ref_prisma" - }, - { - "label": "**/*.spec.ts", - "file_type": "concept", - "source_file": "backend/tsconfig.json", - "source_location": "L27", - "_origin": "ast", - "community": 54, - "community_name": "compilerOptions", - "norm_label": "**/*.spec.ts", - "id": "backend_tsconfig_json_ref_spec_ts" - }, - { - "label": "src/**/*", - "file_type": "concept", - "source_file": "backend/tsconfig.json", - "source_location": "L26", - "_origin": "ast", - "community": 54, - "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": 54, - "community_name": "compilerOptions", - "norm_label": "scripts", - "id": "ref_scripts" - }, - { - "label": "Badge.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Badge.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 55, - "community_name": "Media.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": "L13", - "_origin": "ast", - "community": 55, - "community_name": "Media.tsx", - "norm_label": "variantstyles", - "id": "frontend_admin_panel_src_components_ui_badge_variantstyles" - }, - { - "label": "ImagePreviewModal.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/ImagePreviewModal.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 55, - "community_name": "Media.tsx", - "norm_label": "imagepreviewmodal.tsx", - "id": "frontend_admin_panel_src_components_ui_imagepreviewmodal" - }, - { - "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": "Media.tsx", - "norm_label": "toggleswitch.tsx", - "id": "frontend_admin_panel_src_components_ui_toggleswitch" - }, - { - "label": "Media.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 55, - "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": 55, - "community_name": "Media.tsx", - "norm_label": "prescriptionsmanager.tsx", - "id": "frontend_admin_panel_src_pages_prescriptionsmanager" - }, - { - "label": "UITexts.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 55, - "community_name": "Media.tsx", - "norm_label": "uitexts.tsx", - "id": "frontend_admin_panel_src_pages_uitexts" - }, - { - "label": "GROUP_PAGE_MAP", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L112", - "_origin": "ast", - "community": 55, - "community_name": "Media.tsx", - "norm_label": "group_page_map", - "id": "frontend_admin_panel_src_pages_uitexts_group_page_map" - }, - { - "label": "GROUPS", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L18", - "_origin": "ast", - "community": 55, - "community_name": "Media.tsx", - "norm_label": "groups", - "id": "frontend_admin_panel_src_pages_uitexts_groups" - }, - { - "label": "KEY_LABELS_FA", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L80", - "_origin": "ast", - "community": 55, - "community_name": "Media.tsx", - "norm_label": "key_labels_fa", - "id": "frontend_admin_panel_src_pages_uitexts_key_labels_fa" - }, - { - "label": "PAGE_TABS", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L9", - "_origin": "ast", - "community": 55, - "community_name": "Media.tsx", - "norm_label": "page_tabs", - "id": "frontend_admin_panel_src_pages_uitexts_page_tabs" - }, - { - "label": "Media", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L22", - "_origin": "ast", - "community": 55, - "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": 55, - "community_name": "Media.tsx", - "norm_label": "prescriptionsmanager", - "id": "frontend_admin_panel_src_routes_adminroutes_prescriptionsmanager" - }, - { - "label": "UITexts", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L21", - "_origin": "ast", - "community": 55, - "community_name": "Media.tsx", - "norm_label": "uitexts", - "id": "frontend_admin_panel_src_routes_adminroutes_uitexts" - }, - { - "label": "tsconfig.app.json", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L1", - "_origin": "ast", - "community": 56, - "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": 56, - "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": 56, - "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": 56, - "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": 56, - "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": 56, - "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": 56, - "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": 56, - "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": 56, - "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": 56, - "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": 56, - "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": 56, - "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": 56, - "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": 56, - "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": 56, - "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": 56, - "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": 56, - "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": 56, - "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": 56, - "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": 56, - "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": 56, - "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": 56, - "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": 56, - "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": 56, - "community_name": "compilerOptions", - "norm_label": "vite/client", - "id": "ref_vite_client" - }, - { - "label": "admin/pets.controller.ts", - "file_type": "code", - "source_file": "backend/src/admin/pets.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 57, - "community_name": "PetsController", - "norm_label": "admin/pets.controller.ts", - "id": "backend_src_admin_pets_controller" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 57, - "community_name": "PetsController", - "norm_label": "apibearerauth", - "id": "backend_src_admin_pets_controller_ts_apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 57, - "community_name": "PetsController", - "norm_label": "apioperation", - "id": "backend_src_admin_pets_controller_ts_apioperation" - }, - { - "label": "ApiQuery", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 57, - "community_name": "PetsController", - "norm_label": "apiquery", - "id": "backend_src_admin_pets_controller_ts_apiquery" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 57, - "community_name": "PetsController", - "norm_label": "apitags", - "id": "backend_src_admin_pets_controller_ts_apitags" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 57, - "community_name": "PetsController", - "norm_label": "controller", - "id": "backend_src_admin_pets_controller_ts_controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 57, - "community_name": "PetsController", - "norm_label": "delete", - "id": "backend_src_admin_pets_controller_ts_delete" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 57, - "community_name": "PetsController", - "norm_label": "get", - "id": "backend_src_admin_pets_controller_ts_get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 57, - "community_name": "PetsController", - "norm_label": "param", - "id": "backend_src_admin_pets_controller_ts_param" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 57, - "community_name": "PetsController", - "norm_label": "query", - "id": "backend_src_admin_pets_controller_ts_query" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 57, - "community_name": "PetsController", - "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": 57, - "community_name": "PetsController", - "norm_label": "admin/pets.service.ts", - "id": "backend_src_admin_pets_service" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 57, - "community_name": "PetsController", - "norm_label": "injectable", - "id": "backend_src_admin_pets_service_ts_injectable" - }, - { - "label": "blogs/blogs.controller.ts", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 58, - "community_name": "PaginationDto", - "norm_label": "blogs/blogs.controller.ts", - "id": "backend_src_blogs_blogs_controller" - }, - { - "label": "blogs.module.ts", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.module.ts", - "source_location": "L1", - "_origin": "ast", - "community": 58, - "community_name": "PaginationDto", - "norm_label": "blogs.module.ts", - "id": "backend_src_blogs_blogs_module" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 58, - "community_name": "PaginationDto", - "norm_label": "module", - "id": "backend_src_blogs_blogs_module_ts_module" - }, - { - "label": "blogs/blogs.service.ts", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L1", - "_origin": "ast", - "community": 58, - "community_name": "PaginationDto", - "norm_label": "blogs/blogs.service.ts", - "id": "backend_src_blogs_blogs_service" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 58, - "community_name": "PaginationDto", - "norm_label": "injectable", - "id": "backend_src_blogs_blogs_service_ts_injectable" - }, - { - "label": "pagination.dto.ts", - "file_type": "code", - "source_file": "backend/src/common/dto/pagination.dto.ts", - "source_location": "L1", - "_origin": "ast", - "community": 58, - "community_name": "PaginationDto", - "norm_label": "pagination.dto.ts", - "id": "backend_src_common_dto_pagination_dto" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 58, - "community_name": "PaginationDto", - "norm_label": "apipropertyoptional", - "id": "backend_src_common_dto_pagination_dto_ts_apipropertyoptional" - }, - { - "label": "IsEnum", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 58, - "community_name": "PaginationDto", - "norm_label": "isenum", - "id": "backend_src_common_dto_pagination_dto_ts_isenum" - }, - { - "label": "IsInt", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 58, - "community_name": "PaginationDto", - "norm_label": "isint", - "id": "backend_src_common_dto_pagination_dto_ts_isint" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 58, - "community_name": "PaginationDto", - "norm_label": "isoptional", - "id": "backend_src_common_dto_pagination_dto_ts_isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 58, - "community_name": "PaginationDto", - "norm_label": "isstring", - "id": "backend_src_common_dto_pagination_dto_ts_isstring" - }, - { - "label": "Min", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 58, - "community_name": "PaginationDto", - "norm_label": "min", - "id": "backend_src_common_dto_pagination_dto_ts_min" - }, - { - "label": "Type", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 58, - "community_name": "PaginationDto", - "norm_label": "type", - "id": "backend_src_common_dto_pagination_dto_ts_type" - }, - { - "label": "create-order.dto.ts", - "file_type": "code", - "source_file": "backend/src/orders/dto/create-order.dto.ts", - "source_location": "L1", - "_origin": "ast", - "community": 58, - "community_name": "PaginationDto", - "norm_label": "create-order.dto.ts", - "id": "backend_src_orders_dto_create_order_dto" - }, - { - "label": "orders.controller.ts", - "file_type": "code", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 58, - "community_name": "PaginationDto", - "norm_label": "orders.controller.ts", - "id": "backend_src_orders_orders_controller" - }, - { - "label": "orders.controller.spec.ts", - "file_type": "code", - "source_file": "backend/src/orders/orders.controller.spec.ts", - "source_location": "L1", - "_origin": "ast", - "community": 58, - "community_name": "PaginationDto", - "norm_label": "orders.controller.spec.ts", - "id": "backend_src_orders_orders_controller_spec" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 58, - "community_name": "PaginationDto", - "norm_label": "isnotempty", - "id": "backend_src_orders_orders_controller_ts_isnotempty" - }, - { - "label": "IsNumber", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 58, - "community_name": "PaginationDto", - "norm_label": "isnumber", - "id": "backend_src_orders_orders_controller_ts_isnumber" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 58, - "community_name": "PaginationDto", - "norm_label": "isstring", - "id": "backend_src_orders_orders_controller_ts_isstring" - }, - { - "label": "orders.module.ts", - "file_type": "code", - "source_file": "backend/src/orders/orders.module.ts", - "source_location": "L1", - "_origin": "ast", - "community": 58, - "community_name": "PaginationDto", - "norm_label": "orders.module.ts", - "id": "backend_src_orders_orders_module" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 58, - "community_name": "PaginationDto", - "norm_label": "module", - "id": "backend_src_orders_orders_module_ts_module" - }, - { - "label": "orders.service.ts", - "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L1", - "_origin": "ast", - "community": 58, - "community_name": "PaginationDto", - "norm_label": "orders.service.ts", - "id": "backend_src_orders_orders_service" - }, - { - "label": "get-products.dto.ts", - "file_type": "code", - "source_file": "backend/src/products/dto/get-products.dto.ts", - "source_location": "L1", - "_origin": "ast", - "community": 58, - "community_name": "PaginationDto", - "norm_label": "get-products.dto.ts", - "id": "backend_src_products_dto_get_products_dto" - }, - { - "label": "get-videos-query.dto.ts", - "file_type": "code", - "source_file": "backend/src/videos/dto/get-videos-query.dto.ts", - "source_location": "L1", - "_origin": "ast", - "community": 58, - "community_name": "PaginationDto", - "norm_label": "get-videos-query.dto.ts", - "id": "backend_src_videos_dto_get_videos_query_dto" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 58, - "community_name": "PaginationDto", - "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": 58, - "community_name": "PaginationDto", - "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": 58, - "community_name": "PaginationDto", - "norm_label": "isoptional", - "id": "backend_src_videos_dto_get_videos_query_dto_ts_isoptional" - }, - { - "label": "videos.controller.ts", - "file_type": "code", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 58, - "community_name": "PaginationDto", - "norm_label": "videos.controller.ts", - "id": "backend_src_videos_videos_controller" - }, - { - "label": "Transform", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 58, - "community_name": "PaginationDto", - "norm_label": "transform", - "id": "transform" - }, - { - "label": "dependencies", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L23", - "_origin": "ast", - "community": 59, - "community_name": "dependencies", - "norm_label": "dependencies", - "id": "backend_package_dependencies" - }, - { - "label": "bcrypt", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L32", - "_origin": "ast", - "community": 59, - "community_name": "dependencies", - "norm_label": "bcrypt", - "id": "backend_package_dependencies_bcrypt" - }, - { - "label": "bcryptjs", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L33", - "_origin": "ast", - "community": 59, - "community_name": "dependencies", - "norm_label": "bcryptjs", - "id": "backend_package_dependencies_bcryptjs" - }, - { - "label": "class-transformer", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L34", - "_origin": "ast", - "community": 59, - "community_name": "dependencies", - "norm_label": "class-transformer", - "id": "backend_package_dependencies_class_transformer" - }, - { - "label": "class-validator", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L35", - "_origin": "ast", - "community": 59, - "community_name": "dependencies", - "norm_label": "class-validator", - "id": "backend_package_dependencies_class_validator" - }, - { - "label": "helmet", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L36", - "_origin": "ast", - "community": 59, - "community_name": "dependencies", - "norm_label": "helmet", - "id": "backend_package_dependencies_helmet" - }, - { - "label": "ioredis", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L37", - "_origin": "ast", - "community": 59, - "community_name": "dependencies", - "norm_label": "ioredis", - "id": "backend_package_dependencies_ioredis" - }, - { - "label": "js-yaml", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L38", - "_origin": "ast", - "community": 59, - "community_name": "dependencies", - "norm_label": "js-yaml", - "id": "backend_package_dependencies_js_yaml" - }, - { - "label": "@nestjs/common", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L24", - "_origin": "ast", - "community": 59, - "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": "L25", - "_origin": "ast", - "community": 59, - "community_name": "dependencies", - "norm_label": "@nestjs/core", - "id": "backend_package_dependencies_nestjs_core" - }, - { - "label": "@nestjs/jwt", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L26", - "_origin": "ast", - "community": 59, - "community_name": "dependencies", - "norm_label": "@nestjs/jwt", - "id": "backend_package_dependencies_nestjs_jwt" - }, - { - "label": "@nestjs/passport", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L27", - "_origin": "ast", - "community": 59, - "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": "L28", - "_origin": "ast", - "community": 59, - "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": "L29", - "_origin": "ast", - "community": 59, - "community_name": "dependencies", - "norm_label": "@nestjs/swagger", - "id": "backend_package_dependencies_nestjs_swagger" - }, - { - "label": "@nestjs/throttler", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L30", - "_origin": "ast", - "community": 59, - "community_name": "dependencies", - "norm_label": "@nestjs/throttler", - "id": "backend_package_dependencies_nestjs_throttler" - }, - { - "label": "passport", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L39", - "_origin": "ast", - "community": 59, - "community_name": "dependencies", - "norm_label": "passport", - "id": "backend_package_dependencies_passport" - }, - { - "label": "passport-jwt", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L40", - "_origin": "ast", - "community": 59, - "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": "L31", - "_origin": "ast", - "community": 59, - "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": "L41", - "_origin": "ast", - "community": 59, - "community_name": "dependencies", - "norm_label": "reflect-metadata", - "id": "backend_package_dependencies_reflect_metadata" - }, - { - "label": "rxjs", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L42", - "_origin": "ast", - "community": 59, - "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": "L43", - "_origin": "ast", - "community": 59, - "community_name": "dependencies", - "norm_label": "swagger-ui-express", - "id": "backend_package_dependencies_swagger_ui_express" - }, - { - "label": "bcrypt", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L32", - "_origin": "ast", - "community": 59, - "community_name": "dependencies", - "norm_label": "bcrypt", - "id": "bcrypt" - }, - { - "label": "bcryptjs", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L33", - "_origin": "ast", - "community": 59, - "community_name": "dependencies", - "norm_label": "bcryptjs", - "id": "bcryptjs" - }, - { - "label": "class-transformer", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L34", - "_origin": "ast", - "community": 59, - "community_name": "dependencies", - "norm_label": "class-transformer", - "id": "class_transformer" - }, - { - "label": "class-validator", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L35", - "_origin": "ast", - "community": 59, - "community_name": "dependencies", - "norm_label": "class-validator", - "id": "class_validator" - }, - { - "label": "helmet", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L36", - "_origin": "ast", - "community": 59, - "community_name": "dependencies", - "norm_label": "helmet", - "id": "helmet" - }, - { - "label": "ioredis", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L37", - "_origin": "ast", - "community": 59, - "community_name": "dependencies", - "norm_label": "ioredis", - "id": "ioredis" - }, - { - "label": "js-yaml", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L38", - "_origin": "ast", - "community": 59, - "community_name": "dependencies", - "norm_label": "js-yaml", - "id": "js_yaml" - }, - { - "label": "@nestjs/common", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L24", - "_origin": "ast", - "community": 59, - "community_name": "dependencies", - "norm_label": "@nestjs/common", - "id": "nestjs_common" - }, - { - "label": "@nestjs/core", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L25", - "_origin": "ast", - "community": 59, - "community_name": "dependencies", - "norm_label": "@nestjs/core", - "id": "nestjs_core" - }, - { - "label": "@nestjs/jwt", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L26", - "_origin": "ast", - "community": 59, - "community_name": "dependencies", - "norm_label": "@nestjs/jwt", - "id": "nestjs_jwt" - }, - { - "label": "@nestjs/passport", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L27", - "_origin": "ast", - "community": 59, - "community_name": "dependencies", - "norm_label": "@nestjs/passport", - "id": "nestjs_passport" - }, - { - "label": "@nestjs/platform-express", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L28", - "_origin": "ast", - "community": 59, - "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": "L29", - "_origin": "ast", - "community": 59, - "community_name": "dependencies", - "norm_label": "@nestjs/swagger", - "id": "nestjs_swagger" - }, - { - "label": "@nestjs/throttler", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L30", - "_origin": "ast", - "community": 59, - "community_name": "dependencies", - "norm_label": "@nestjs/throttler", - "id": "nestjs_throttler" - }, - { - "label": "passport", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L39", - "_origin": "ast", - "community": 59, - "community_name": "dependencies", - "norm_label": "passport", - "id": "passport" - }, - { - "label": "passport-jwt", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L40", - "_origin": "ast", - "community": 59, - "community_name": "dependencies", - "norm_label": "passport-jwt", - "id": "passport_jwt" - }, - { - "label": "@prisma/client", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L31", - "_origin": "ast", - "community": 59, - "community_name": "dependencies", - "norm_label": "@prisma/client", - "id": "prisma_client" - }, - { - "label": "reflect-metadata", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L41", - "_origin": "ast", - "community": 59, - "community_name": "dependencies", - "norm_label": "reflect-metadata", - "id": "reflect_metadata" - }, - { - "label": "rxjs", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L42", - "_origin": "ast", - "community": 59, - "community_name": "dependencies", - "norm_label": "rxjs", - "id": "rxjs" - }, - { - "label": "swagger-ui-express", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L43", - "_origin": "ast", - "community": 59, - "community_name": "dependencies", - "norm_label": "swagger-ui-express", - "id": "swagger_ui_express" - }, - { - "label": "checkout/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/checkout/page.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 6, - "community_name": "UserDashboard.tsx", - "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": 6, - "community_name": "UserDashboard.tsx", - "norm_label": "dashboard/page.tsx", - "id": "frontend_application_app_dashboard_page" - }, - { - "label": "verify/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/payment/verify/page.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 6, - "community_name": "UserDashboard.tsx", - "norm_label": "verify/page.tsx", - "id": "frontend_application_app_payment_verify_page" - }, - { - "label": "AddressModal.tsx", - "file_type": "code", - "source_file": "frontend/application/components/AddressModal.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 6, - "community_name": "UserDashboard.tsx", - "norm_label": "addressmodal.tsx", - "id": "frontend_application_components_addressmodal" - }, - { - "label": "BackButton.tsx", - "file_type": "code", - "source_file": "frontend/application/components/BackButton.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 6, - "community_name": "UserDashboard.tsx", - "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": 6, - "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": 6, - "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": 6, - "community_name": "UserDashboard.tsx", - "norm_label": "headerbutton.tsx", - "id": "frontend_application_components_headerbutton" - }, - { - "label": "LoginModal.tsx", - "file_type": "code", - "source_file": "frontend/application/components/LoginModal.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 6, - "community_name": "UserDashboard.tsx", - "norm_label": "loginmodal.tsx", - "id": "frontend_application_components_loginmodal" - }, - { - "label": "OrderDetailsModal.tsx", - "file_type": "code", - "source_file": "frontend/application/components/OrderDetailsModal.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 6, - "community_name": "UserDashboard.tsx", - "norm_label": "orderdetailsmodal.tsx", - "id": "frontend_application_components_orderdetailsmodal" - }, - { - "label": "SearchableSelect.tsx", - "file_type": "code", - "source_file": "frontend/application/components/SearchableSelect.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 6, - "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": 6, - "community_name": "UserDashboard.tsx", - "norm_label": "topupmodal.tsx", - "id": "frontend_application_components_topupmodal" - }, - { - "label": "PRESET_AMOUNTS", - "file_type": "code", - "source_file": "frontend/application/components/TopUpModal.tsx", - "source_location": "L17", - "_origin": "ast", - "community": 6, - "community_name": "UserDashboard.tsx", - "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": 6, - "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": 6, - "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": 6, - "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": 6, - "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": 6, - "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": 6, - "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": 6, - "community_name": "UserDashboard.tsx", - "norm_label": "utils.ts", - "id": "frontend_application_lib_utils" - }, - { - "label": "tsconfig.node.json", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L1", - "_origin": "ast", - "community": 60, - "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": 60, - "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": 60, - "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": 60, - "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": 60, - "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": 60, - "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": 60, - "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": 60, - "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": 60, - "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": 60, - "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": 60, - "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": 60, - "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": 60, - "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": 60, - "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": 60, - "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": 60, - "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": 60, - "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": 60, - "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": 60, - "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": 60, - "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": 60, - "community_name": "compilerOptions", - "norm_label": "vite.config.ts", - "id": "ref_vite_config_ts" - }, - { - "label": "HomeClient.tsx", - "file_type": "code", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 61, - "community_name": "HomeClient.tsx", - "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": 61, - "community_name": "HomeClient.tsx", - "norm_label": "app/page.tsx", - "id": "frontend_application_app_page" - }, - { - "label": "metadata", - "file_type": "code", - "source_file": "frontend/application/app/page.tsx", - "source_location": "L4", - "_origin": "ast", - "community": 61, - "community_name": "HomeClient.tsx", - "norm_label": "metadata", - "id": "frontend_application_app_page_metadata" - }, - { - "label": "shop/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/shop/page.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 61, - "community_name": "HomeClient.tsx", - "norm_label": "shop/page.tsx", - "id": "frontend_application_app_shop_page" - }, - { - "label": "metadata", - "file_type": "code", - "source_file": "frontend/application/app/shop/page.tsx", - "source_location": "L4", - "_origin": "ast", - "community": 61, - "community_name": "HomeClient.tsx", - "norm_label": "metadata", - "id": "frontend_application_app_shop_page_metadata" - }, - { - "label": "ArchivePage.tsx", - "file_type": "code", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 61, - "community_name": "HomeClient.tsx", - "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": 61, - "community_name": "HomeClient.tsx", - "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": 61, - "community_name": "HomeClient.tsx", - "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": 61, - "community_name": "HomeClient.tsx", - "norm_label": "bannerplacement.tsx", - "id": "frontend_application_components_bannerplacement" - }, - { - "label": "types.ts", - "file_type": "code", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L1", - "_origin": "ast", - "community": 61, - "community_name": "HomeClient.tsx", - "norm_label": "types.ts", - "id": "frontend_application_lib_types" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 62, - "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": 62, - "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": 62, - "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": 62, - "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": 62, - "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": 62, - "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": 62, - "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": 62, - "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": 62, - "community_name": "BlogsController", - "norm_label": "param", - "id": "backend_src_admin_blogs_controller_ts_param" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 62, - "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": 62, - "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": 62, - "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": 62, - "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": 62, - "community_name": "BlogsController", - "norm_label": "useguards", - "id": "backend_src_admin_blogs_controller_ts_useguards" - }, - { - "label": "ApiBadRequestResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 63, - "community_name": "AuthController", - "norm_label": "apibadrequestresponse", - "id": "backend_src_auth_auth_controller_ts_apibadrequestresponse" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 63, - "community_name": "AuthController", - "norm_label": "apibearerauth", - "id": "backend_src_auth_auth_controller_ts_apibearerauth" - }, - { - "label": "ApiOkResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 63, - "community_name": "AuthController", - "norm_label": "apiokresponse", - "id": "backend_src_auth_auth_controller_ts_apiokresponse" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 63, - "community_name": "AuthController", - "norm_label": "apioperation", - "id": "backend_src_auth_auth_controller_ts_apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 63, - "community_name": "AuthController", - "norm_label": "apitags", - "id": "backend_src_auth_auth_controller_ts_apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 63, - "community_name": "AuthController", - "norm_label": "body", - "id": "backend_src_auth_auth_controller_ts_body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 63, - "community_name": "AuthController", - "norm_label": "controller", - "id": "backend_src_auth_auth_controller_ts_controller" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 63, - "community_name": "AuthController", - "norm_label": "post", - "id": "backend_src_auth_auth_controller_ts_post" - }, - { - "label": "Req", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 63, - "community_name": "AuthController", - "norm_label": "req", - "id": "backend_src_auth_auth_controller_ts_req" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 63, - "community_name": "AuthController", - "norm_label": "useguards", - "id": "backend_src_auth_auth_controller_ts_useguards" - }, - { - "label": "HttpCode", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 63, - "community_name": "AuthController", - "norm_label": "httpcode", - "id": "httpcode" - }, - { - "label": "prescriptions.controller.ts", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 64, - "community_name": "prescriptions.controller.ts", - "norm_label": "prescriptions.controller.ts", - "id": "backend_src_prescriptions_prescriptions_controller" + "norm_label": "module" }, { "label": "prescriptions.module.ts", @@ -34812,10 +27808,10 @@ "source_file": "backend/src/prescriptions/prescriptions.module.ts", "source_location": "L1", "_origin": "ast", - "community": 64, - "community_name": "prescriptions.controller.ts", - "norm_label": "prescriptions.module.ts", - "id": "backend_src_prescriptions_prescriptions_module" + "id": "backend_src_prescriptions_prescriptions_module", + "community": 3, + "community_name": "app.module.ts", + "norm_label": "prescriptions.module.ts" }, { "label": "Module", @@ -34823,3277 +27819,21 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 64, - "community_name": "prescriptions.controller.ts", - "norm_label": "module", - "id": "backend_src_prescriptions_prescriptions_module_ts_module" + "id": "backend_src_prescriptions_prescriptions_module_ts_module", + "community": 3, + "community_name": "app.module.ts", + "norm_label": "module" }, { - "label": "prescriptions.service.ts", + "label": "prisma.module.ts", "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.service.ts", + "source_file": "backend/src/prisma/prisma.module.ts", "source_location": "L1", "_origin": "ast", - "community": 64, - "community_name": "prescriptions.controller.ts", - "norm_label": "prescriptions.service.ts", - "id": "backend_src_prescriptions_prescriptions_service" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 64, - "community_name": "prescriptions.controller.ts", - "norm_label": "injectable", - "id": "backend_src_prescriptions_prescriptions_service_ts_injectable" - }, - { - "label": "31-module-audit-closure.md", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L1", - "_origin": "ast", - "community": 65, - "community_name": "Required Review Group Closures", - "norm_label": "31-module-audit-closure.md", - "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": 65, - "community_name": "Required Review Group Closures", - "norm_label": "10. orders backend", - "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": 65, - "community_name": "Required Review Group Closures", - "norm_label": "11. settings & administrative backend", - "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": 65, - "community_name": "Required Review Group Closures", - "norm_label": "12. prisma schema, migrations & seed", - "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": 65, - "community_name": "Required Review Group Closures", - "norm_label": "13. redis & temporary auth state", - "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": 65, - "community_name": "Required Review Group Closures", - "norm_label": "14. unit & e2e tests", - "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": 65, - "community_name": "Required Review Group Closures", - "norm_label": "15. docker, nginx, prometheus & deployment config", - "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": 65, - "community_name": "Required Review Group Closures", - "norm_label": "16. documentation & openapi artifacts", - "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": 65, - "community_name": "Required Review Group Closures", - "norm_label": "1. storefront shell & routing", - "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": 65, - "community_name": "Required Review Group Closures", - "norm_label": "2. authentication ui, stores & api clients", - "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": 65, - "community_name": "Required Review Group Closures", - "norm_label": "3. cart, checkout, order, wallet & payment ui", - "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": 65, - "community_name": "Required Review Group Closures", - "norm_label": "4. product, pet, scientific term & settings ui", - "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": 65, - "community_name": "Required Review Group Closures", - "norm_label": "5. nestjs bootstrap & shared infrastructure", - "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": 65, - "community_name": "Required Review Group Closures", - "norm_label": "6. authentication & authorization backend", - "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": 65, - "community_name": "Required Review Group Closures", - "norm_label": "7. users & addresses backend", - "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": 65, - "community_name": "Required Review Group Closures", - "norm_label": "8. pets backend", - "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": 65, - "community_name": "Required Review Group Closures", - "norm_label": "9. products backend", - "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": 65, - "community_name": "Required Review Group Closures", - "norm_label": "conclusion", - "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": 65, - "community_name": "Required Review Group Closures", - "norm_label": "module audit closure report", - "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": 65, - "community_name": "Required Review Group Closures", - "norm_label": "required review group closures", - "id": "docs_audit_31_module_audit_closure_required_review_group_closures" - }, - { - "label": "PriceInput.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 66, - "community_name": "Coupons.tsx", - "norm_label": "priceinput.tsx", - "id": "frontend_admin_panel_src_components_ui_priceinput" - }, - { - "label": "Coupons.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 66, - "community_name": "Coupons.tsx", - "norm_label": "coupons.tsx", - "id": "frontend_admin_panel_src_pages_coupons" - }, - { - "label": "FinancialSettingsPage.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 66, - "community_name": "Coupons.tsx", - "norm_label": "financialsettingspage.tsx", - "id": "frontend_admin_panel_src_pages_financialsettingspage" - }, - { - "label": "Products.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 66, - "community_name": "Coupons.tsx", - "norm_label": "products.tsx", - "id": "frontend_admin_panel_src_pages_products" - }, - { - "label": "Coupons", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L14", - "_origin": "ast", - "community": 66, - "community_name": "Coupons.tsx", - "norm_label": "coupons", - "id": "frontend_admin_panel_src_routes_adminroutes_coupons" - }, - { - "label": "FinancialSettingsPage", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L34", - "_origin": "ast", - "community": 66, - "community_name": "Coupons.tsx", - "norm_label": "financialsettingspage", - "id": "frontend_admin_panel_src_routes_adminroutes_financialsettingspage" - }, - { - "label": "Products", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L12", - "_origin": "ast", - "community": 66, - "community_name": "Coupons.tsx", - "norm_label": "products", - "id": "frontend_admin_panel_src_routes_adminroutes_products" - }, - { - "label": "06_dev_frontend.md", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L1", - "_origin": "ast", - "community": 67, - "community_name": "Operational Rules & Boundaries", - "norm_label": "06_dev_frontend.md", - "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": 67, - "community_name": "Operational Rules & Boundaries", - "norm_label": "1. always read tech stack first", - "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": 67, - "community_name": "Operational Rules & Boundaries", - "norm_label": "2. sub-step execution (token resume support)", - "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": 67, - "community_name": "Operational Rules & Boundaries", - "norm_label": "3. api mocking requirement", - "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": 67, - "community_name": "Operational Rules & Boundaries", - "norm_label": "4. modular component architecture", - "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": 67, - "community_name": "Operational Rules & Boundaries", - "norm_label": "5. responsive design (mandatory)", - "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": 67, - "community_name": "Operational Rules & Boundaries", - "norm_label": "6. file scope boundary", - "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": 67, - "community_name": "Operational Rules & Boundaries", - "norm_label": "7. forbidden actions", - "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": 67, - "community_name": "Operational Rules & Boundaries", - "norm_label": "expected json output schema", - "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": 67, - "community_name": "Operational Rules & Boundaries", - "norm_label": "implement mode \u2014 normal operation", - "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": 67, - "community_name": "Operational Rules & Boundaries", - "norm_label": "operational rules & boundaries", - "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": 67, - "community_name": "Operational Rules & Boundaries", - "norm_label": "output", - "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": 67, - "community_name": "Operational Rules & Boundaries", - "norm_label": "required output artifacts (what files to write/update)", - "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": 67, - "community_name": "Operational Rules & Boundaries", - "norm_label": "\u2605 review mode (called during review phase)", - "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": 67, - "community_name": "Operational Rules & Boundaries", - "norm_label": "role & core objective", - "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": 67, - "community_name": "Operational Rules & Boundaries", - "norm_label": "strict input specifications (what files to read)", - "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": 67, - "community_name": "Operational Rules & Boundaries", - "norm_label": "what you do not review", - "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": 67, - "community_name": "Operational Rules & Boundaries", - "norm_label": "what you look for (frontend expert eyes only)", - "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": 67, - "community_name": "Operational Rules & Boundaries", - "norm_label": "your domain \u2014 what you review (only these areas)", - "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": 68, - "community_name": "Operational Rules & Boundaries", - "norm_label": "08_visual_qa.md", - "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": 68, - "community_name": "Operational Rules & Boundaries", - "norm_label": "1. framework-aware analysis", - "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": 68, - "community_name": "Operational Rules & Boundaries", - "norm_label": "2. dom & semantic structure analysis", - "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": 68, - "community_name": "Operational Rules & Boundaries", - "norm_label": "3. accessibility compliance", - "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": 68, - "community_name": "Operational Rules & Boundaries", - "norm_label": "4. responsive layout verification", - "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": 68, - "community_name": "Operational Rules & Boundaries", - "norm_label": "5. fallback inspection mode", - "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": 68, - "community_name": "Operational Rules & Boundaries", - "norm_label": "6. defect routing protocol", - "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": 68, - "community_name": "Operational Rules & Boundaries", - "norm_label": "7. forbidden actions", - "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": 68, - "community_name": "Operational Rules & Boundaries", - "norm_label": "expected json output schema", - "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": 68, - "community_name": "Operational Rules & Boundaries", - "norm_label": "inspect mode \u2014 normal operation (post-task verification)", - "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": 68, - "community_name": "Operational Rules & Boundaries", - "norm_label": "operational rules & boundaries", - "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": 68, - "community_name": "Operational Rules & Boundaries", - "norm_label": "output", - "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": 68, - "community_name": "Operational Rules & Boundaries", - "norm_label": "required output artifacts (what files to write/update)", - "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": 68, - "community_name": "Operational Rules & Boundaries", - "norm_label": "\u2605 review mode (called during review phase)", - "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": 68, - "community_name": "Operational Rules & Boundaries", - "norm_label": "role & core objective", - "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": 68, - "community_name": "Operational Rules & Boundaries", - "norm_label": "strict input specifications (what files to read)", - "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": 68, - "community_name": "Operational Rules & Boundaries", - "norm_label": "what you do not review", - "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": 68, - "community_name": "Operational Rules & Boundaries", - "norm_label": "what you look for (ux expert eyes only)", - "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": 68, - "community_name": "Operational Rules & Boundaries", - "norm_label": "your domain \u2014 what you review (only these areas)", - "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": 69, - "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": 69, - "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": 69, - "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": 69, - "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": 69, - "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": 69, - "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": 69, - "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": 69, - "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": 69, - "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": 69, - "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": 69, - "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": 69, - "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": 69, - "community_name": "WikiController", - "norm_label": "useguards", - "id": "backend_src_admin_wiki_controller_ts_useguards" - }, - { - "label": "ConfirmModal.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/ConfirmModal.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 7, - "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": 7, - "community_name": "MediaSelector.tsx", - "norm_label": "mediaselector.tsx", - "id": "frontend_admin_panel_src_components_ui_mediaselector" - }, - { - "label": "BannersManager.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 7, - "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": 7, - "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": 7, - "community_name": "MediaSelector.tsx", - "norm_label": "categories.tsx", - "id": "frontend_admin_panel_src_pages_categories" - }, - { - "label": "CMS.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/CMS.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 7, - "community_name": "MediaSelector.tsx", - "norm_label": "cms.tsx", - "id": "frontend_admin_panel_src_pages_cms" - }, - { - "label": "DoctorsManager.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 7, - "community_name": "MediaSelector.tsx", - "norm_label": "doctorsmanager.tsx", - "id": "frontend_admin_panel_src_pages_doctorsmanager" - }, - { - "label": "IngredientsManager.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 7, - "community_name": "MediaSelector.tsx", - "norm_label": "ingredientsmanager.tsx", - "id": "frontend_admin_panel_src_pages_ingredientsmanager" - }, - { - "label": "TestimonialsManager.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", - "source_location": "L1", - "_origin": "ast", - "community": 7, - "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": 7, - "community_name": "MediaSelector.tsx", - "norm_label": "videos.tsx", - "id": "frontend_admin_panel_src_pages_videos" - }, - { - "label": "BannersManager", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L27", - "_origin": "ast", - "community": 7, - "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": 7, - "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": 7, - "community_name": "MediaSelector.tsx", - "norm_label": "categories", - "id": "frontend_admin_panel_src_routes_adminroutes_categories" - }, - { - "label": "CMS", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L23", - "_origin": "ast", - "community": 7, - "community_name": "MediaSelector.tsx", - "norm_label": "cms", - "id": "frontend_admin_panel_src_routes_adminroutes_cms" - }, - { - "label": "DoctorsManager", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L41", - "_origin": "ast", - "community": 7, - "community_name": "MediaSelector.tsx", - "norm_label": "doctorsmanager", - "id": "frontend_admin_panel_src_routes_adminroutes_doctorsmanager" - }, - { - "label": "IngredientsManager", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L30", - "_origin": "ast", - "community": 7, - "community_name": "MediaSelector.tsx", - "norm_label": "ingredientsmanager", - "id": "frontend_admin_panel_src_routes_adminroutes_ingredientsmanager" - }, - { - "label": "TestimonialsManager", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L29", - "_origin": "ast", - "community": 7, - "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": 7, - "community_name": "MediaSelector.tsx", - "norm_label": "videos", - "id": "frontend_admin_panel_src_routes_adminroutes_videos" - }, - { - "label": "BASE_DOMAIN", - "file_type": "code", - "source_file": "frontend/admin-panel/src/services/api.ts", - "source_location": "L7", - "_origin": "ast", - "community": 7, - "community_name": "MediaSelector.tsx", - "norm_label": "base_domain", - "id": "frontend_admin_panel_src_services_api_base_domain" - }, - { - "label": "ApiQuery", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 70, - "community_name": "AdminQueryDto", - "norm_label": "apiquery", - "id": "backend_src_admin_admin_controller_ts_apiquery" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 70, - "community_name": "AdminQueryDto", - "norm_label": "get", - "id": "backend_src_admin_admin_controller_ts_get" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 70, - "community_name": "AdminQueryDto", - "norm_label": "query", - "id": "backend_src_admin_admin_controller_ts_query" - }, - { - "label": "admin-query.dto.ts", - "file_type": "code", - "source_file": "backend/src/admin/dto/admin-query.dto.ts", - "source_location": "L1", - "_origin": "ast", - "community": 70, - "community_name": "AdminQueryDto", - "norm_label": "admin-query.dto.ts", - "id": "backend_src_admin_dto_admin_query_dto" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 70, - "community_name": "AdminQueryDto", - "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": 70, - "community_name": "AdminQueryDto", - "norm_label": "isoptional", - "id": "backend_src_admin_dto_admin_query_dto_ts_isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 70, - "community_name": "AdminQueryDto", - "norm_label": "isstring", - "id": "backend_src_admin_dto_admin_query_dto_ts_isstring" - }, - { - "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": 71, - "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": 71, - "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": 71, - "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": 71, - "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": 71, - "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": 71, - "community_name": "PetsController", - "norm_label": "isstring", - "id": "backend_src_pets_dto_create_health_log_dto_ts_isstring" - }, - { - "label": "create-pet.dto.ts", - "file_type": "code", - "source_file": "backend/src/pets/dto/create-pet.dto.ts", - "source_location": "L1", - "_origin": "ast", - "community": 71, - "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": 71, - "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": 71, - "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": 71, - "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": 71, - "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": 71, - "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": 71, - "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": 71, - "community_name": "PetsController", - "norm_label": "isstring", - "id": "backend_src_pets_dto_create_pet_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": 71, - "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": 71, - "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": 71, - "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": 71, - "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": 71, - "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": 71, - "community_name": "PetsController", - "norm_label": "isstring", - "id": "backend_src_pets_dto_create_reminder_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": 71, - "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": 71, - "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": 71, - "community_name": "PetsController", - "norm_label": "pets.controller.spec.ts", - "id": "backend_src_pets_pets_controller_spec" - }, - { - "label": "ApiBadRequestResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 71, - "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": 71, - "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": 71, - "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": 71, - "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": 71, - "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": 71, - "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": 71, - "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": 71, - "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": 71, - "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": 71, - "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": 71, - "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": 71, - "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": 71, - "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": 71, - "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": 71, - "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": 71, - "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": 71, - "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": 71, - "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": 71, - "community_name": "PetsController", - "norm_label": "useinterceptors", - "id": "backend_src_pets_pets_controller_ts_useinterceptors" - }, - { - "label": "pets.module.ts", - "file_type": "code", - "source_file": "backend/src/pets/pets.module.ts", - "source_location": "L1", - "_origin": "ast", - "community": 71, - "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": 71, - "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": 71, - "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": 71, - "community_name": "PetsController", - "norm_label": "injectable", - "id": "backend_src_pets_pets_service_ts_injectable" - }, - { - "label": "seo.controller.ts", - "file_type": "code", - "source_file": "backend/src/seo/seo.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 72, - "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": 72, - "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": 72, - "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": 72, - "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": 72, - "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": 72, - "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": 72, - "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": 72, - "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": 72, - "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": 72, - "community_name": "seo.module.ts", - "norm_label": "injectable", - "id": "backend_src_seo_seo_service_ts_injectable" - }, - { - "label": "admin.controller.ts", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 73, - "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": 73, - "community_name": "admin.service.ts", - "norm_label": "admin.controller.spec.ts", - "id": "backend_src_admin_admin_controller_spec" - }, - { - "label": "admin.service.ts", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1", - "_origin": "ast", - "community": 73, - "community_name": "admin.service.ts", - "norm_label": "admin.service.ts", - "id": "backend_src_admin_admin_service" - }, - { - "label": "product.dto.ts", - "file_type": "code", - "source_file": "backend/src/admin/dto/product.dto.ts", - "source_location": "L1", - "_origin": "ast", - "community": 73, - "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", - "community": 73, - "community_name": "admin.service.ts", - "norm_label": "apipropertyoptional", - "id": "backend_src_admin_dto_product_dto_ts_apipropertyoptional" - }, - { - "label": "IsArray", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 73, - "community_name": "admin.service.ts", - "norm_label": "isarray", - "id": "backend_src_admin_dto_product_dto_ts_isarray" - }, - { - "label": "IsBoolean", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 73, - "community_name": "admin.service.ts", - "norm_label": "isboolean", - "id": "backend_src_admin_dto_product_dto_ts_isboolean" - }, - { - "label": "IsNumber", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 73, - "community_name": "admin.service.ts", - "norm_label": "isnumber", - "id": "backend_src_admin_dto_product_dto_ts_isnumber" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 73, - "community_name": "admin.service.ts", - "norm_label": "isoptional", - "id": "backend_src_admin_dto_product_dto_ts_isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 73, - "community_name": "admin.service.ts", - "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", - "community": 73, - "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": 73, - "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": 73, - "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": 73, - "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": 73, - "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": 73, - "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": 73, - "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": 73, - "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": 73, - "community_name": "admin.service.ts", - "norm_label": "minlength", - "id": "backend_src_admin_dto_user_dto_ts_minlength" - }, - { - "label": "CANONICAL_ALIASES", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L13", - "_origin": "ast", - "community": 73, - "community_name": "admin.service.ts", - "norm_label": "canonical_aliases", - "id": "backend_src_settings_settings_service_canonical_aliases" - }, - { - "label": "AGENCY.md", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L1", - "_origin": "ast", - "community": 74, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "agency.md", - "id": "ai_agency_agency" - }, - { - "label": "Activation", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L12", - "_origin": "ast", - "community": 74, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "activation", - "id": "ai_agency_agency_activation" - }, - { - "label": "Agent Directory Reference", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L239", - "_origin": "ast", - "community": 74, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "agent directory reference", - "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": 74, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "\ud83c\udfe2 ai software agency \u2014 master orchestration protocol v3", - "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": 74, - "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)", - "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": 74, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "phase 2: master synthesis (02_product_manager in synthesis mode)", - "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": 74, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "phase 3: execution (same as always)", - "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": 74, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "pipeline a \u2014 new project (greenfield)", - "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": 74, - "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", - "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": 74, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "pipeline c \u2014 add specific feature (add_feature)", - "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": 74, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "pipeline d \u2014 content & seo only (content_creation)", - "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": 74, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "real data policy", - "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": 74, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "state.json template (full schema v3)", - "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": 74, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "state machine \u2014 active agent tracking", - "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": 74, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "step 1 \u2014 detect project intent", - "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": 74, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "step 2 \u2014 token limit / context resume protocol (critical)", - "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": 74, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "task execution loop (all pipelines)", - "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": 74, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "your identity", - "id": "ai_agency_agency_your_identity" - }, - { - "label": "03_product_manager.md", - "file_type": "document", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L1", - "_origin": "ast", - "community": 75, - "community_name": "Operational Rules & Boundaries", - "norm_label": "03_product_manager.md", - "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": 75, - "community_name": "Operational Rules & Boundaries", - "norm_label": "1. hierarchical decomposition algorithm (3-tier)", - "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": 75, - "community_name": "Operational Rules & Boundaries", - "norm_label": "2. sub-step definition (required for all tasks)", - "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": 75, - "community_name": "Operational Rules & Boundaries", - "norm_label": "3. brownfield completeness rule", - "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": 75, - "community_name": "Operational Rules & Boundaries", - "norm_label": "4. role assignment rules", - "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": 75, - "community_name": "Operational Rules & Boundaries", - "norm_label": "5. dependency tracking (strict)", - "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": 75, - "community_name": "Operational Rules & Boundaries", - "norm_label": "6. priority assignment", - "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": 75, - "community_name": "Operational Rules & Boundaries", - "norm_label": "7. forbidden actions", - "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": 75, - "community_name": "Operational Rules & Boundaries", - "norm_label": "decompose mode \u2014 normal operation (new projects)", - "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": 75, - "community_name": "Operational Rules & Boundaries", - "norm_label": "expected json output schema", - "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": 75, - "community_name": "Operational Rules & Boundaries", - "norm_label": "operational rules & boundaries", - "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": 75, - "community_name": "Operational Rules & Boundaries", - "norm_label": "output of synthesis mode", - "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": 75, - "community_name": "Operational Rules & Boundaries", - "norm_label": "required output artifacts (what files to write/update)", - "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": 75, - "community_name": "Operational Rules & Boundaries", - "norm_label": "role & core objective", - "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": 75, - "community_name": "Operational Rules & Boundaries", - "norm_label": "strict input specifications (what files to read)", - "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": 75, - "community_name": "Operational Rules & Boundaries", - "norm_label": "\u2605 synthesis mode (called after review phase completes)", - "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": 75, - "community_name": "Operational Rules & Boundaries", - "norm_label": "synthesis rules", - "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": 75, - "community_name": "Operational Rules & Boundaries", - "norm_label": "what you read (all of these \u2014 the full picture)", - "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": 76, - "community_name": "Operational Rules & Boundaries", - "norm_label": "05_dev_backend.md", - "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": 76, - "community_name": "Operational Rules & Boundaries", - "norm_label": "1. always read tech stack first", - "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": 76, - "community_name": "Operational Rules & Boundaries", - "norm_label": "2. sub-step execution (token resume support)", - "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": 76, - "community_name": "Operational Rules & Boundaries", - "norm_label": "3. mandatory test authoring", - "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": 76, - "community_name": "Operational Rules & Boundaries", - "norm_label": "4. code quality standards", - "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": 76, - "community_name": "Operational Rules & Boundaries", - "norm_label": "5. file scope boundary", - "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": 76, - "community_name": "Operational Rules & Boundaries", - "norm_label": "6. forbidden actions", - "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": 76, - "community_name": "Operational Rules & Boundaries", - "norm_label": "expected json output schema", - "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": 76, - "community_name": "Operational Rules & Boundaries", - "norm_label": "implement mode \u2014 normal operation", - "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": 76, - "community_name": "Operational Rules & Boundaries", - "norm_label": "operational rules & boundaries", - "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": 76, - "community_name": "Operational Rules & Boundaries", - "norm_label": "output", - "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": 76, - "community_name": "Operational Rules & Boundaries", - "norm_label": "required output artifacts (what files to write/update)", - "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": 76, - "community_name": "Operational Rules & Boundaries", - "norm_label": "\u2605 review mode (called during review phase)", - "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": 76, - "community_name": "Operational Rules & Boundaries", - "norm_label": "role & core objective", - "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": 76, - "community_name": "Operational Rules & Boundaries", - "norm_label": "strict input specifications (what files to read)", - "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": 76, - "community_name": "Operational Rules & Boundaries", - "norm_label": "what you do not review", - "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": 76, - "community_name": "Operational Rules & Boundaries", - "norm_label": "what you look for (backend expert eyes only)", - "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": 76, - "community_name": "Operational Rules & Boundaries", - "norm_label": "your domain \u2014 what you review (only these areas)", - "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": 77, - "community_name": "scripts", - "norm_label": "package.json", - "id": "package" - }, - { - "label": "devDependencies", - "file_type": "code", - "source_file": "package.json", - "source_location": "L17", - "_origin": "ast", - "community": 77, - "community_name": "scripts", - "norm_label": "devdependencies", - "id": "package_devdependencies" - }, - { - "label": "concurrently", - "file_type": "code", - "source_file": "package.json", - "source_location": "L18", - "_origin": "ast", - "community": 77, - "community_name": "scripts", - "norm_label": "concurrently", - "id": "package_devdependencies_concurrently" - }, - { - "label": "name", - "file_type": "code", - "source_file": "package.json", - "source_location": "L2", - "_origin": "ast", - "community": 77, - "community_name": "scripts", - "norm_label": "name", - "id": "package_name" - }, - { - "label": "private", - "file_type": "code", - "source_file": "package.json", - "source_location": "L4", - "_origin": "ast", - "community": 77, - "community_name": "scripts", - "norm_label": "private", - "id": "package_private" - }, - { - "label": "scripts", - "file_type": "code", - "source_file": "package.json", - "source_location": "L5", - "_origin": "ast", - "community": 77, - "community_name": "scripts", - "norm_label": "scripts", - "id": "package_scripts" - }, - { - "label": "build", - "file_type": "code", - "source_file": "package.json", - "source_location": "L14", - "_origin": "ast", - "community": 77, - "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": 77, - "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": 77, - "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": 77, - "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": 77, - "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": 77, - "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": 77, - "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": 77, - "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": 77, - "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": 77, - "community_name": "scripts", - "norm_label": "start", - "id": "package_scripts_start" - }, - { - "label": "version", - "file_type": "code", - "source_file": "package.json", - "source_location": "L3", - "_origin": "ast", - "community": 77, - "community_name": "scripts", - "norm_label": "version", - "id": "package_version" - }, - { - "label": "concurrently", - "file_type": "concept", - "source_file": "package.json", - "source_location": "L18", - "_origin": "ast", - "community": 77, - "community_name": "scripts", - "norm_label": "concurrently", - "id": "concurrently" - }, - { - "label": "09_devops_security.md", - "file_type": "document", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L1", - "_origin": "ast", - "community": 78, - "community_name": "Role & Core Objective", - "norm_label": "09_devops_security.md", - "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": 78, - "community_name": "Role & Core Objective", - "norm_label": "1. active secret scanning (all modified files)", - "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": 78, - "community_name": "Role & Core Objective", - "norm_label": "2. docker container verification (if dockerfile exists)", - "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": 78, - "community_name": "Role & Core Objective", - "norm_label": "3. ci/cd basic check (if `.github/workflows/` exists)", - "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": 78, - "community_name": "Role & Core Objective", - "norm_label": "4. failure routing protocol", - "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": 78, - "community_name": "Role & Core Objective", - "norm_label": "5. forbidden actions", - "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": 78, - "community_name": "Role & Core Objective", - "norm_label": "enforce mode \u2014 normal operation", - "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": 78, - "community_name": "Role & Core Objective", - "norm_label": "expected json output schema", - "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": 78, - "community_name": "Role & Core Objective", - "norm_label": "operational rules & boundaries", - "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": 78, - "community_name": "Role & Core Objective", - "norm_label": "output", - "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": 78, - "community_name": "Role & Core Objective", - "norm_label": "required output artifacts (what files to write/update)", - "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": 78, - "community_name": "Role & Core Objective", - "norm_label": "\u2605 review mode (called during review phase)", - "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": 78, - "community_name": "Role & Core Objective", - "norm_label": "role & core objective", - "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": 78, - "community_name": "Role & Core Objective", - "norm_label": "strict input specifications (what files to read)", - "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": 78, - "community_name": "Role & Core Objective", - "norm_label": "what you do not review", - "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": 78, - "community_name": "Role & Core Objective", - "norm_label": "what you look for (security expert eyes only)", - "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": 78, - "community_name": "Role & Core Objective", - "norm_label": "your domain \u2014 what you review (only these areas)", - "id": "ai_agency_agents_09_devops_security_your_domain_what_you_review_only_these_areas" - }, - { - "label": "home.controller.ts", - "file_type": "code", - "source_file": "backend/src/home/home.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 79, - "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": 79, - "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": 79, - "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": 79, - "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": 79, - "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": 79, - "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": 79, - "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": 79, - "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": 79, - "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": 79, - "community_name": "HomeController", - "norm_label": "injectable", - "id": "backend_src_home_home_service_ts_injectable" - }, - { - "label": "admin.module.ts", - "file_type": "code", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L1", - "_origin": "ast", - "community": 8, - "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": 8, - "community_name": "admin.module.ts", - "norm_label": "module", - "id": "backend_src_admin_admin_module_ts_module" - }, - { - "label": "admin/blogs.controller.ts", - "file_type": "code", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L1", - "_origin": "ast", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": "admin/blogs.controller.ts", - "id": "backend_src_admin_blogs_controller" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": "injectable", - "id": "backend_src_admin_blogs_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": "admin.module.ts", - "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": "admin.module.ts", - "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": "admin.module.ts", - "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": "admin.module.ts", - "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": "admin.module.ts", - "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": "admin.module.ts", - "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": "admin.module.ts", - "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": 8, - "community_name": "admin.module.ts", - "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": "admin.module.ts", - "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": 8, - "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": 8, - "community_name": "admin.module.ts", - "norm_label": "admin/wiki.controller.ts", - "id": "backend_src_admin_wiki_controller" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": "injectable", - "id": "backend_src_admin_wiki_service_ts_injectable" + "id": "backend_src_prisma_prisma_module", + "community": 3, + "community_name": "app.module.ts", + "norm_label": "prisma.module.ts" }, { "label": "Global", @@ -38101,10 +27841,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": "global", - "id": "backend_src_redis_redis_module_ts_global" + "id": "backend_src_prisma_prisma_module_ts_global", + "community": 3, + "community_name": "app.module.ts", + "norm_label": "global" }, { "label": "Module", @@ -38112,10 +27852,10273 @@ "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_prisma_prisma_module_ts_module", + "community": 3, + "community_name": "app.module.ts", + "norm_label": "module" + }, + { + "label": "settings.module.ts", + "file_type": "code", + "source_file": "backend/src/settings/settings.module.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_settings_settings_module", + "community": 3, + "community_name": "app.module.ts", + "norm_label": "settings.module.ts" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_settings_settings_module_ts_module", + "community": 3, + "community_name": "app.module.ts", + "norm_label": "module" + }, + { + "label": "smart-advisor.module.ts", + "file_type": "code", + "source_file": "backend/src/smart-advisor/smart-advisor.module.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_smart_advisor_smart_advisor_module", + "community": 3, + "community_name": "app.module.ts", + "norm_label": "smart-advisor.module.ts" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_smart_advisor_smart_advisor_module_ts_module", + "community": 3, + "community_name": "app.module.ts", + "norm_label": "module" + }, + { + "label": "testimonials.module.ts", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.module.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_testimonials_testimonials_module", + "community": 3, + "community_name": "app.module.ts", + "norm_label": "testimonials.module.ts" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_testimonials_testimonials_module_ts_module", + "community": 3, + "community_name": "app.module.ts", + "norm_label": "module" + }, + { + "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": 3, + "community_name": "app.module.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": 3, + "community_name": "app.module.ts", + "norm_label": "module" + }, + { + "label": "wholesale.module.ts", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.module.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_wholesale_wholesale_module", + "community": 3, + "community_name": "app.module.ts", + "norm_label": "wholesale.module.ts" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_wholesale_wholesale_module_ts_module", + "community": 3, + "community_name": "app.module.ts", + "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": 30, + "community_name": "main.ts", + "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": 30, + "community_name": "main.ts", + "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": 30, + "community_name": "main.ts", + "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": 30, + "community_name": "main.ts", + "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": 30, + "community_name": "main.ts", + "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": 30, + "community_name": "main.ts", + "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": 30, + "community_name": "main.ts", + "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": 30, + "community_name": "main.ts", + "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": 30, + "community_name": "main.ts", + "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": 30, + "community_name": "main.ts", + "norm_label": "main.ts" + }, + { + "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", + "community": 30, + "community_name": "main.ts", + "norm_label": "app-audit-verification.e2e-spec.ts" + }, + { + "label": "@types/bcryptjs", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L52", + "_origin": "ast", + "id": "backend_package_devdependencies_types_bcryptjs", + "community": 300, + "community_name": "@types/bcryptjs", + "norm_label": "@types/bcryptjs" + }, + { + "label": "@types/bcryptjs", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L52", + "_origin": "ast", + "id": "types_bcryptjs", + "community": 300, + "community_name": "@types/bcryptjs", + "norm_label": "@types/bcryptjs" + }, + { + "label": "typescript-eslint", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L74", + "_origin": "ast", + "id": "backend_package_devdependencies_typescript_eslint", + "community": 301, + "community_name": "typescript-eslint", + "norm_label": "typescript-eslint" + }, + { + "label": "typescript-eslint", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L74", + "_origin": "ast", + "id": "backend_package_json_typescript_eslint", + "community": 301, + "community_name": "typescript-eslint", + "norm_label": "typescript-eslint" + }, + { + "label": "@eslint/eslintrc", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L46", + "_origin": "ast", + "id": "backend_package_devdependencies_eslint_eslintrc", + "community": 302, + "community_name": "@eslint/eslintrc", + "norm_label": "@eslint/eslintrc" + }, + { + "label": "@eslint/eslintrc", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L46", + "_origin": "ast", + "id": "eslint_eslintrc", + "community": 302, + "community_name": "@eslint/eslintrc", + "norm_label": "@eslint/eslintrc" + }, + { + "label": "axios", + "file_type": "code", + "source_file": "axios", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "axios_axios", + "community": 303, + "community_name": "axios", + "norm_label": "axios" + }, + { + "label": "tailwindcss", + "file_type": "code", + "source_file": "tailwindcss", + "confidence": "EXTRACTED", + "_origin": "ast", + "id": "tailwindcss_tailwindcss", + "community": 304, + "community_name": "tailwindcss", + "norm_label": "tailwindcss" + }, + { + "label": "categories.controller.ts", + "file_type": "code", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_admin_categories_controller", + "community": 31, + "community_name": "JwtAuthGuard", + "norm_label": "categories.controller.ts" + }, + { + "label": "ssl.controller.ts", + "file_type": "code", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_admin_ssl_controller", + "community": 31, + "community_name": "JwtAuthGuard", + "norm_label": "ssl.controller.ts" + }, + { + "label": "jwt-auth.guard.ts", + "file_type": "code", + "source_file": "backend/src/auth/jwt-auth.guard.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_auth_jwt_auth_guard", + "community": 31, + "community_name": "JwtAuthGuard", + "norm_label": "jwt-auth.guard.ts" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_auth_jwt_auth_guard_ts_injectable", + "community": 31, + "community_name": "JwtAuthGuard", + "norm_label": "injectable" + }, + { + "label": "auth/roles.decorator.ts", + "file_type": "code", + "source_file": "backend/src/auth/roles.decorator.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_auth_roles_decorator", + "community": 31, + "community_name": "JwtAuthGuard", + "norm_label": "auth/roles.decorator.ts" + }, + { + "label": "auth/roles.guard.ts", + "file_type": "code", + "source_file": "backend/src/auth/roles.guard.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_auth_roles_guard", + "community": 31, + "community_name": "JwtAuthGuard", + "norm_label": "auth/roles.guard.ts" + }, + { + "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": 31, + "community_name": "JwtAuthGuard", + "norm_label": "b2b.controller.ts" + }, + { + "label": "banners.controller.ts", + "file_type": "code", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_banners_banners_controller", + "community": 31, + "community_name": "JwtAuthGuard", + "norm_label": "banners.controller.ts" + }, + { + "label": "decorators/roles.decorator.ts", + "file_type": "code", + "source_file": "backend/src/common/decorators/roles.decorator.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_common_decorators_roles_decorator", + "community": 31, + "community_name": "JwtAuthGuard", + "norm_label": "decorators/roles.decorator.ts" + }, + { + "label": "ROLES_KEY", + "file_type": "code", + "source_file": "backend/src/common/decorators/roles.decorator.ts", + "source_location": "L3", + "_origin": "ast", + "id": "backend_src_common_decorators_roles_decorator_roles_key", + "community": 31, + "community_name": "JwtAuthGuard", + "norm_label": "roles_key" + }, + { + "label": "guards/roles.guard.ts", + "file_type": "code", + "source_file": "backend/src/common/guards/roles.guard.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_common_guards_roles_guard", + "community": 31, + "community_name": "JwtAuthGuard", + "norm_label": "guards/roles.guard.ts" + }, + { + "label": "roles.guard.spec.ts", + "file_type": "code", + "source_file": "backend/src/common/guards/roles.guard.spec.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_common_guards_roles_guard_spec", + "community": 31, + "community_name": "JwtAuthGuard", + "norm_label": "roles.guard.spec.ts" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_common_guards_roles_guard_ts_injectable", + "community": 31, + "community_name": "JwtAuthGuard", + "norm_label": "injectable" + }, + { + "label": "contact.controller.ts", + "file_type": "code", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_contact_contact_controller", + "community": 31, + "community_name": "JwtAuthGuard", + "norm_label": "contact.controller.ts" + }, + { + "label": "ingredients.controller.ts", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_ingredients_ingredients_controller", + "community": 31, + "community_name": "JwtAuthGuard", + "norm_label": "ingredients.controller.ts" + }, + { + "label": "payment.controller.ts", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_payment_payment_controller", + "community": 31, + "community_name": "JwtAuthGuard", + "norm_label": "payment.controller.ts" + }, + { + "label": "prescriptions.controller.ts", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_prescriptions_prescriptions_controller", + "community": 31, + "community_name": "JwtAuthGuard", + "norm_label": "prescriptions.controller.ts" + }, + { + "label": "products.controller.ts", + "file_type": "code", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_products_products_controller", + "community": 31, + "community_name": "JwtAuthGuard", + "norm_label": "products.controller.ts" + }, + { + "label": "settings.controller.ts", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_settings_settings_controller", + "community": 31, + "community_name": "JwtAuthGuard", + "norm_label": "settings.controller.ts" + }, + { + "label": "settings.controller.spec.ts", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.spec.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_settings_settings_controller_spec", + "community": 31, + "community_name": "JwtAuthGuard", + "norm_label": "settings.controller.spec.ts" + }, + { + "label": "smart-advisor.controller.ts", + "file_type": "code", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_smart_advisor_smart_advisor_controller", + "community": 31, + "community_name": "JwtAuthGuard", + "norm_label": "smart-advisor.controller.ts" + }, + { + "label": "testimonials.controller.ts", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_testimonials_testimonials_controller", + "community": 31, + "community_name": "JwtAuthGuard", + "norm_label": "testimonials.controller.ts" + }, + { + "label": "wholesale.controller.ts", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_wholesale_wholesale_controller", + "community": 31, + "community_name": "JwtAuthGuard", + "norm_label": "wholesale.controller.ts" + }, + { + "label": "tailwindcss", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L37", + "_origin": "ast", + "id": "frontend_admin_panel_package_devdependencies_tailwindcss", + "community": 312, + "community_name": "tailwindcss", + "norm_label": "tailwindcss" + }, + { + "label": "tailwindcss", + "file_type": "concept", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L37", + "_origin": "ast", + "id": "frontend_admin_panel_package_json_tailwindcss", + "community": 312, + "community_name": "tailwindcss", + "norm_label": "tailwindcss" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_payment_payment_service_ts_injectable", + "community": 32, + "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": 32, + "community_name": "ZibalService", + "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": 33, + "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": 33, + "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": 33, + "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": 33, + "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": 33, + "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": 33, + "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": 33, + "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": 33, + "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": 33, + "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": 33, + "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": 33, + "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": 33, + "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": 33, + "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": 33, + "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": 33, + "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": 33, + "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": 33, + "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": 33, + "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": 33, + "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": 33, + "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": 33, + "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": 33, + "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": 33, + "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": 33, + "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": 33, + "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": 33, + "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": 33, + "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": 33, + "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": 33, + "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": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_categories_controller_ts_apibearerauth", + "community": 34, + "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": 34, + "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": 34, + "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": 34, + "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": 34, + "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": 34, + "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": 34, + "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": 34, + "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": 34, + "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": 34, + "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": 34, + "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": 34, + "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": 34, + "community_name": "CategoriesController", + "norm_label": "useguards" + }, + { + "label": "categories.service.ts", + "file_type": "code", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_admin_categories_service", + "community": 34, + "community_name": "CategoriesController", + "norm_label": "categories.service.ts" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_categories_service_ts_injectable", + "community": 34, + "community_name": "CategoriesController", + "norm_label": "injectable" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_b2b_b2b_controller_ts_apibearerauth", + "community": 35, + "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": 35, + "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": 35, + "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": 35, + "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": 35, + "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": 35, + "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": 35, + "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": 35, + "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": 35, + "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": 35, + "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": 35, + "community_name": "B2BService", + "norm_label": "useguards" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_b2b_b2b_service_ts_injectable", + "community": 35, + "community_name": "B2BService", + "norm_label": "injectable" + }, + { + "label": ".antigravity/workflows/graphify.md", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L1", + "_origin": "ast", + "id": "antigravity_workflows_graphify", + "community": 36, + "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": 36, + "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": 36, + "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": 36, + "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": 36, + "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": 36, + "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": 36, + "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": 36, + "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": 36, + "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": 36, + "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": 36, + "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": 36, + "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": 36, + "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": 36, + "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": 36, + "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": 36, + "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": 36, + "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": 36, + "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": 36, + "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": 36, + "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": 36, + "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": 36, + "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": 36, + "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": 36, + "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": 36, + "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": 36, + "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": 36, + "community_name": "What You Must Do When Invoked", + "norm_label": "what you must do when invoked" + }, + { + "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": 37, + "community_name": "userStore.ts", + "norm_label": "[id]/page.tsx" + }, + { + "label": "ClientLayout.tsx", + "file_type": "code", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_app_clientlayout", + "community": 37, + "community_name": "userStore.ts", + "norm_label": "clientlayout.tsx" + }, + { + "label": "layout.tsx", + "file_type": "code", + "source_file": "frontend/application/app/layout.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_app_layout", + "community": 37, + "community_name": "userStore.ts", + "norm_label": "layout.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": 37, + "community_name": "userStore.ts", + "norm_label": "track/page.tsx" + }, + { + "label": "AuthModal.tsx", + "file_type": "code", + "source_file": "frontend/application/components/AuthModal.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_authmodal", + "community": 37, + "community_name": "userStore.ts", + "norm_label": "authmodal.tsx" + }, + { + "label": "B2BPortal.tsx", + "file_type": "code", + "source_file": "frontend/application/components/B2BPortal.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_b2bportal", + "community": 37, + "community_name": "userStore.ts", + "norm_label": "b2bportal.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": 37, + "community_name": "userStore.ts", + "norm_label": "cartdrawer.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": 37, + "community_name": "userStore.ts", + "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": 37, + "community_name": "userStore.ts", + "norm_label": "menu_icons" + }, + { + "label": "OrderSuccess.tsx", + "file_type": "code", + "source_file": "frontend/application/components/OrderSuccess.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_ordersuccess", + "community": 37, + "community_name": "userStore.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": 37, + "community_name": "userStore.ts", + "norm_label": "ordertracking.tsx" + }, + { + "label": "PrescriptionUploadModal.tsx", + "file_type": "code", + "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_prescriptionuploadmodal", + "community": 37, + "community_name": "userStore.ts", + "norm_label": "prescriptionuploadmodal.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": 37, + "community_name": "userStore.ts", + "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": 37, + "community_name": "userStore.ts", + "norm_label": "mockproduct" + }, + { + "label": "Header.test.tsx", + "file_type": "code", + "source_file": "frontend/application/components/__tests__/Header.test.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_tests_header_test", + "community": 37, + "community_name": "userStore.ts", + "norm_label": "header.test.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": 37, + "community_name": "userStore.ts", + "norm_label": "cartstore.ts" + }, + { + "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": 37, + "community_name": "userStore.ts", + "norm_label": "usecartstore" + }, + { + "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": 37, + "community_name": "userStore.ts", + "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": 37, + "community_name": "userStore.ts", + "norm_label": "useuistore" + }, + { + "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": 37, + "community_name": "userStore.ts", + "norm_label": "usepetstore" + }, + { + "label": "userStore.ts", + "file_type": "code", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_lib_store_userstore", + "community": 37, + "community_name": "userStore.ts", + "norm_label": "userstore.ts" + }, + { + "label": "useUserStore", + "file_type": "code", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L63", + "_origin": "ast", + "id": "frontend_application_lib_store_userstore_useuserstore", + "community": 37, + "community_name": "userStore.ts", + "norm_label": "useuserstore" + }, + { + "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": 38, + "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": 38, + "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": 38, + "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": 38, + "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": 38, + "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": 38, + "community_name": "UsersService", + "norm_label": "jwt.strategy.ts" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_auth_jwt_strategy_ts_injectable", + "community": 38, + "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": 38, + "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": 38, + "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": 38, + "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": 38, + "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": 38, + "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": 38, + "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": 38, + "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": 38, + "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": 38, + "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": 38, + "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": 38, + "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": 38, + "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": 38, + "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": 38, + "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": 38, + "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": 38, + "community_name": "UsersService", + "norm_label": "apibadrequestresponse" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_users_users_controller_ts_apibearerauth", + "community": 38, + "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": 38, + "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": 38, + "community_name": "UsersService", + "norm_label": "apiokresponse" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_users_users_controller_ts_apioperation", + "community": 38, + "community_name": "UsersService", + "norm_label": "apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_users_users_controller_ts_apitags", + "community": 38, + "community_name": "UsersService", + "norm_label": "apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_users_users_controller_ts_body", + "community": 38, + "community_name": "UsersService", + "norm_label": "body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_users_users_controller_ts_controller", + "community": 38, + "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": 38, + "community_name": "UsersService", + "norm_label": "delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_users_users_controller_ts_get", + "community": 38, + "community_name": "UsersService", + "norm_label": "get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_users_users_controller_ts_param", + "community": 38, + "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": 38, + "community_name": "UsersService", + "norm_label": "patch" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_users_users_controller_ts_post", + "community": 38, + "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": 38, + "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": 38, + "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": 38, + "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": 38, + "community_name": "UsersService", + "norm_label": "module" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_users_users_service_ts_injectable", + "community": 38, + "community_name": "UsersService", + "norm_label": "injectable" + }, + { + "label": "SKILL.md", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L1", + "_origin": "ast", + "id": "claude_skills_graphify_skill", + "community": 39, + "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": 39, + "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": 39, + "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": 39, + "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": 39, + "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": 39, + "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": 39, + "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": 39, + "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": 39, + "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": 39, + "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": 39, + "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": 39, + "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": 39, + "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": 39, + "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": 39, + "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": 39, + "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": 39, + "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": 39, + "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": 39, + "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": 39, + "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": 39, + "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": 39, + "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": 39, + "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": 39, + "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": 39, + "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": 39, + "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": 39, + "community_name": "What You Must Do When Invoked", + "norm_label": "what you must do when invoked" + }, + { + "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": 4, + "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": 4, + "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": 4, + "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": 4, + "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": 4, + "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": 4, + "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": 4, + "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": 4, + "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": 4, + "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": 4, + "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": 4, + "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": 4, + "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": 4, + "community_name": "reviews.controller.ts", + "norm_label": "reviews.controller.ts" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_reviews_reviews_controller_ts_apibearerauth", + "community": 4, + "community_name": "reviews.controller.ts", + "norm_label": "apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_reviews_reviews_controller_ts_apioperation", + "community": 4, + "community_name": "reviews.controller.ts", + "norm_label": "apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_reviews_reviews_controller_ts_apitags", + "community": 4, + "community_name": "reviews.controller.ts", + "norm_label": "apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_reviews_reviews_controller_ts_body", + "community": 4, + "community_name": "reviews.controller.ts", + "norm_label": "body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_reviews_reviews_controller_ts_controller", + "community": 4, + "community_name": "reviews.controller.ts", + "norm_label": "controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_reviews_reviews_controller_ts_delete", + "community": 4, + "community_name": "reviews.controller.ts", + "norm_label": "delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_reviews_reviews_controller_ts_get", + "community": 4, + "community_name": "reviews.controller.ts", + "norm_label": "get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_reviews_reviews_controller_ts_param", + "community": 4, + "community_name": "reviews.controller.ts", + "norm_label": "param" + }, + { + "label": "Patch", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_reviews_reviews_controller_ts_patch", + "community": 4, + "community_name": "reviews.controller.ts", + "norm_label": "patch" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_reviews_reviews_controller_ts_post", + "community": 4, + "community_name": "reviews.controller.ts", + "norm_label": "post" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_reviews_reviews_controller_ts_query", + "community": 4, + "community_name": "reviews.controller.ts", + "norm_label": "query" + }, + { + "label": "Req", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_reviews_reviews_controller_ts_req", + "community": 4, + "community_name": "reviews.controller.ts", + "norm_label": "req" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_reviews_reviews_controller_ts_useguards", + "community": 4, + "community_name": "reviews.controller.ts", + "norm_label": "useguards" + }, + { + "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": 4, + "community_name": "reviews.controller.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": 4, + "community_name": "reviews.controller.ts", + "norm_label": "module" + }, + { + "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": 4, + "community_name": "reviews.controller.ts", + "norm_label": "reviews.service.ts" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_reviews_reviews_service_ts_injectable", + "community": 4, + "community_name": "reviews.controller.ts", + "norm_label": "injectable" + }, + { + "label": "Max", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "max", + "community": 4, + "community_name": "reviews.controller.ts", + "norm_label": "max" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_ssl_controller_ts_apibearerauth", + "community": 40, + "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": 40, + "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": 40, + "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": 40, + "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": 40, + "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": 40, + "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": 40, + "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": 40, + "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": 40, + "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": 40, + "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": 40, + "community_name": "SslController", + "norm_label": "injectable" + }, + { + "label": "UploadedFiles", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "uploadedfiles", + "community": 40, + "community_name": "SslController", + "norm_label": "uploadedfiles" + }, + { + "label": "PodcastPlayerModal.tsx", + "file_type": "code", + "source_file": "frontend/application/components/PodcastPlayerModal.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_podcastplayermodal", + "community": 41, + "community_name": "PodcastPlayerModal.tsx", + "norm_label": "podcastplayermodal.tsx" + }, + { + "label": "PLAYBACK_RATES", + "file_type": "code", + "source_file": "frontend/application/components/PodcastPlayerModal.tsx", + "source_location": "L33", + "_origin": "ast", + "id": "frontend_application_components_podcastplayermodal_playback_rates", + "community": 41, + "community_name": "PodcastPlayerModal.tsx", + "norm_label": "playback_rates" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_ingredients_ingredients_controller_ts_apibearerauth", + "community": 42, + "community_name": "IngredientsService", + "norm_label": "apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_ingredients_ingredients_controller_ts_apioperation", + "community": 42, + "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": 42, + "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": 42, + "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": 42, + "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": 42, + "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": 42, + "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": 42, + "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": 42, + "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": 42, + "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": 42, + "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": 42, + "community_name": "IngredientsService", + "norm_label": "injectable" + }, + { + "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": 43, + "community_name": "RedisService", + "norm_label": "generate-openapi.ts" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_app_module_ts_module", + "community": 43, + "community_name": "RedisService", + "norm_label": "module" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_auth_auth_service_ts_injectable", + "community": 43, + "community_name": "RedisService", + "norm_label": "injectable" + }, + { + "label": "redis.service.spec.ts", + "file_type": "code", + "source_file": "backend/src/redis/redis.service.spec.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_redis_redis_service_spec", + "community": 43, + "community_name": "RedisService", + "norm_label": "redis.service.spec.ts" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_redis_redis_service_ts_injectable", + "community": 43, + "community_name": "RedisService", + "norm_label": "injectable" + }, + { + "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", + "community": 43, + "community_name": "RedisService", + "norm_label": "app.e2e-spec.ts" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_media_controller_ts_apibearerauth", + "community": 44, + "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": 44, + "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": 44, + "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": 44, + "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": 44, + "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": 44, + "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": 44, + "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": 44, + "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": 44, + "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": 44, + "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": 44, + "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": 44, + "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": 44, + "community_name": "MediaController", + "norm_label": "useinterceptors" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_media_service_ts_injectable", + "community": 44, + "community_name": "MediaController", + "norm_label": "injectable" + }, + { + "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": 45, + "community_name": "Pagination.tsx", + "norm_label": "pagination.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": 45, + "community_name": "Pagination.tsx", + "norm_label": "pets.tsx" + }, + { + "label": "Transactions.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_transactions", + "community": 45, + "community_name": "Pagination.tsx", + "norm_label": "transactions.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": 45, + "community_name": "Pagination.tsx", + "norm_label": "wiki.tsx" + }, + { + "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": 45, + "community_name": "Pagination.tsx", + "norm_label": "pets" + }, + { + "label": "Transactions", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L38", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_transactions", + "community": 45, + "community_name": "Pagination.tsx", + "norm_label": "transactions" + }, + { + "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": 45, + "community_name": "Pagination.tsx", + "norm_label": "wiki" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_common_services_sms_service_ts_injectable", + "community": 46, + "community_name": "SmsService", + "norm_label": "injectable" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_orders_dto_create_order_dto_ts_apiproperty", + "community": 47, + "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": 47, + "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": 47, + "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": 47, + "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": 47, + "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": 47, + "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": 47, + "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": 47, + "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": 47, + "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": 47, + "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": 47, + "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": 47, + "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": 47, + "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": 47, + "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": 47, + "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": 47, + "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": 47, + "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": 47, + "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": 47, + "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": 47, + "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": 47, + "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": 47, + "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": 47, + "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": 47, + "community_name": "OrdersService", + "norm_label": "injectable" + }, + { + "label": "ValidateNested", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "validatenested", + "community": 47, + "community_name": "OrdersService", + "norm_label": "validatenested" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_prescriptions_prescriptions_controller_ts_apibearerauth", + "community": 48, + "community_name": "PrescriptionsService", + "norm_label": "apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_prescriptions_prescriptions_controller_ts_apioperation", + "community": 48, + "community_name": "PrescriptionsService", + "norm_label": "apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_prescriptions_prescriptions_controller_ts_apitags", + "community": 48, + "community_name": "PrescriptionsService", + "norm_label": "apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_prescriptions_prescriptions_controller_ts_body", + "community": 48, + "community_name": "PrescriptionsService", + "norm_label": "body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_prescriptions_prescriptions_controller_ts_controller", + "community": 48, + "community_name": "PrescriptionsService", + "norm_label": "controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_prescriptions_prescriptions_controller_ts_get", + "community": 48, + "community_name": "PrescriptionsService", + "norm_label": "get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_prescriptions_prescriptions_controller_ts_param", + "community": 48, + "community_name": "PrescriptionsService", + "norm_label": "param" + }, + { + "label": "Patch", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_prescriptions_prescriptions_controller_ts_patch", + "community": 48, + "community_name": "PrescriptionsService", + "norm_label": "patch" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_prescriptions_prescriptions_controller_ts_post", + "community": 48, + "community_name": "PrescriptionsService", + "norm_label": "post" + }, + { + "label": "Req", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_prescriptions_prescriptions_controller_ts_req", + "community": 48, + "community_name": "PrescriptionsService", + "norm_label": "req" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_prescriptions_prescriptions_controller_ts_useguards", + "community": 48, + "community_name": "PrescriptionsService", + "norm_label": "useguards" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_prescriptions_prescriptions_service_ts_injectable", + "community": 48, + "community_name": "PrescriptionsService", + "norm_label": "injectable" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_smart_advisor_smart_advisor_controller_ts_apibearerauth", + "community": 49, + "community_name": "SmartAdvisorService", + "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": 49, + "community_name": "SmartAdvisorService", + "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": 49, + "community_name": "SmartAdvisorService", + "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": 49, + "community_name": "SmartAdvisorService", + "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": 49, + "community_name": "SmartAdvisorService", + "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": 49, + "community_name": "SmartAdvisorService", + "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": 49, + "community_name": "SmartAdvisorService", + "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": 49, + "community_name": "SmartAdvisorService", + "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": 49, + "community_name": "SmartAdvisorService", + "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": 49, + "community_name": "SmartAdvisorService", + "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": 49, + "community_name": "SmartAdvisorService", + "norm_label": "useguards" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_smart_advisor_smart_advisor_service_ts_injectable", + "community": 49, + "community_name": "SmartAdvisorService", + "norm_label": "injectable" + }, + { + "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": 5, + "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": 5, + "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": 5, + "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": 5, + "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": 5, + "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": 5, + "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": 5, + "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": 5, + "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": 5, + "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": 5, + "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": 5, + "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": 5, + "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": 5, + "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": 5, + "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": 5, + "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": 5, + "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": 5, + "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": 5, + "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": 5, + "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": 5, + "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": 5, + "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": 5, + "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": 5, + "community_name": "tickets.controller.ts", + "norm_label": "query" + }, + { + "label": "Req", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_tickets_tickets_controller_ts_req", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": "req" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_tickets_tickets_controller_ts_useguards", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": "useguards" + }, + { + "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": 5, + "community_name": "tickets.controller.ts", + "norm_label": "tickets.service.ts" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_tickets_tickets_service_ts_injectable", + "community": 5, + "community_name": "tickets.controller.ts", + "norm_label": "injectable" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_testimonials_testimonials_controller_ts_apibearerauth", + "community": 50, + "community_name": "TestimonialsService", + "norm_label": "apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_testimonials_testimonials_controller_ts_apioperation", + "community": 50, + "community_name": "TestimonialsService", + "norm_label": "apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_testimonials_testimonials_controller_ts_apitags", + "community": 50, + "community_name": "TestimonialsService", + "norm_label": "apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_testimonials_testimonials_controller_ts_body", + "community": 50, + "community_name": "TestimonialsService", + "norm_label": "body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_testimonials_testimonials_controller_ts_controller", + "community": 50, + "community_name": "TestimonialsService", + "norm_label": "controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_testimonials_testimonials_controller_ts_delete", + "community": 50, + "community_name": "TestimonialsService", + "norm_label": "delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_testimonials_testimonials_controller_ts_get", + "community": 50, + "community_name": "TestimonialsService", + "norm_label": "get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_testimonials_testimonials_controller_ts_param", + "community": 50, + "community_name": "TestimonialsService", + "norm_label": "param" + }, + { + "label": "Patch", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_testimonials_testimonials_controller_ts_patch", + "community": 50, + "community_name": "TestimonialsService", + "norm_label": "patch" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_testimonials_testimonials_controller_ts_post", + "community": 50, + "community_name": "TestimonialsService", + "norm_label": "post" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_testimonials_testimonials_controller_ts_useguards", + "community": 50, + "community_name": "TestimonialsService", + "norm_label": "useguards" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_testimonials_testimonials_service_ts_injectable", + "community": 50, + "community_name": "TestimonialsService", + "norm_label": "injectable" + }, + { + "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": 51, + "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": 51, + "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": 51, + "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": 51, + "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": 51, + "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": 51, + "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": 51, + "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": 51, + "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": 51, + "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": 51, + "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": 51, + "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": 51, + "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": 51, + "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": 51, + "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": 51, + "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": 51, + "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": 51, + "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": 51, + "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": 51, + "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": 51, + "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": 51, + "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": 51, + "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": 51, + "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": 52, + "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": 52, + "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": 52, + "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": 52, + "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": 52, + "community_name": "ContactService", + "norm_label": "post" + }, + { + "label": "Put", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_contact_contact_controller_ts_put", + "community": 52, + "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": 52, + "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": 52, + "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": 52, + "community_name": "ContactService", + "norm_label": "injectable" + }, + { + "label": "ApiBadRequestResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_payment_payment_controller_ts_apibadrequestresponse", + "community": 53, + "community_name": "PaymentController", + "norm_label": "apibadrequestresponse" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_payment_payment_controller_ts_apibearerauth", + "community": 53, + "community_name": "PaymentController", + "norm_label": "apibearerauth" + }, + { + "label": "ApiOkResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_payment_payment_controller_ts_apiokresponse", + "community": 53, + "community_name": "PaymentController", + "norm_label": "apiokresponse" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_payment_payment_controller_ts_apioperation", + "community": 53, + "community_name": "PaymentController", + "norm_label": "apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_payment_payment_controller_ts_apitags", + "community": 53, + "community_name": "PaymentController", + "norm_label": "apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_payment_payment_controller_ts_body", + "community": 53, + "community_name": "PaymentController", + "norm_label": "body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_payment_payment_controller_ts_controller", + "community": 53, + "community_name": "PaymentController", + "norm_label": "controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_payment_payment_controller_ts_get", + "community": 53, + "community_name": "PaymentController", + "norm_label": "get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_payment_payment_controller_ts_param", + "community": 53, + "community_name": "PaymentController", + "norm_label": "param" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_payment_payment_controller_ts_post", + "community": 53, + "community_name": "PaymentController", + "norm_label": "post" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_payment_payment_controller_ts_query", + "community": 53, + "community_name": "PaymentController", + "norm_label": "query" + }, + { + "label": "Req", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_payment_payment_controller_ts_req", + "community": 53, + "community_name": "PaymentController", + "norm_label": "req" + }, + { + "label": "Res", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_payment_payment_controller_ts_res", + "community": 53, + "community_name": "PaymentController", + "norm_label": "res" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_payment_payment_controller_ts_useguards", + "community": 53, + "community_name": "PaymentController", + "norm_label": "useguards" + }, + { + "label": "Headers", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "headers", + "community": 53, + "community_name": "PaymentController", + "norm_label": "headers" + }, + { + "label": "Ip", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "ip", + "community": 53, + "community_name": "PaymentController", + "norm_label": "ip" + }, + { + "label": "backend/tsconfig.json", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L1", + "_origin": "ast", + "id": "backend_tsconfig", + "community": 54, + "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": 54, + "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": 54, + "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": 54, + "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": 54, + "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": 54, + "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": 54, + "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": 54, + "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": 54, + "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": 54, + "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": 54, + "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": 54, + "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": 54, + "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": 54, + "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": 54, + "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": 54, + "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": 54, + "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": 54, + "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": 54, + "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": 54, + "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": 54, + "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": 54, + "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": 54, + "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": 54, + "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": 54, + "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": 54, + "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": 54, + "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": 54, + "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": 54, + "community_name": "compilerOptions", + "norm_label": "prisma" + }, + { + "label": "**/*.spec.ts", + "file_type": "concept", + "source_file": "backend/tsconfig.json", + "source_location": "L27", + "_origin": "ast", + "id": "backend_tsconfig_json_ref_spec_ts", + "community": 54, + "community_name": "compilerOptions", + "norm_label": "**/*.spec.ts" + }, + { + "label": "src/**/*", + "file_type": "concept", + "source_file": "backend/tsconfig.json", + "source_location": "L26", + "_origin": "ast", + "id": "backend_tsconfig_json_ref_src", + "community": 54, + "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": 54, + "community_name": "compilerOptions", + "norm_label": "scripts" + }, + { + "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": 55, + "community_name": "Media.tsx", + "norm_label": "badge.tsx" + }, + { + "label": "variantStyles", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/Badge.tsx", + "source_location": "L13", + "_origin": "ast", + "id": "frontend_admin_panel_src_components_ui_badge_variantstyles", + "community": 55, + "community_name": "Media.tsx", + "norm_label": "variantstyles" + }, + { + "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": "Media.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": "Media.tsx", + "norm_label": "toggleswitch.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": 55, + "community_name": "Media.tsx", + "norm_label": "media.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": "Media.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": "Media.tsx", + "norm_label": "uitexts.tsx" + }, + { + "label": "GROUP_PAGE_MAP", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L112", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_uitexts_group_page_map", + "community": 55, + "community_name": "Media.tsx", + "norm_label": "group_page_map" + }, + { + "label": "GROUPS", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L18", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_uitexts_groups", + "community": 55, + "community_name": "Media.tsx", + "norm_label": "groups" + }, + { + "label": "KEY_LABELS_FA", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L80", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_uitexts_key_labels_fa", + "community": 55, + "community_name": "Media.tsx", + "norm_label": "key_labels_fa" + }, + { + "label": "PAGE_TABS", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L9", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_uitexts_page_tabs", + "community": 55, + "community_name": "Media.tsx", + "norm_label": "page_tabs" + }, + { + "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": 55, + "community_name": "Media.tsx", + "norm_label": "media" + }, + { + "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": "Media.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": "Media.tsx", + "norm_label": "uitexts" + }, + { + "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": 56, + "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": 56, + "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": 56, + "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": 56, + "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": 56, + "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": 56, + "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": 56, + "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": 56, + "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": 56, + "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": 56, + "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": 56, + "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": 56, + "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": 56, + "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": 56, + "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": 56, + "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": 56, + "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": 56, + "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": 56, + "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": 56, + "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": 56, + "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": 56, + "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": 56, + "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": 56, + "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": 56, + "community_name": "compilerOptions", + "norm_label": "vite/client" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_pets_controller_ts_apibearerauth", + "community": 57, + "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": 57, + "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": 57, + "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": 57, + "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": 57, + "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": 57, + "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": 57, + "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": 57, + "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": 57, + "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": 57, + "community_name": "PetsController", + "norm_label": "useguards" + }, + { + "label": "blogs/blogs.controller.ts", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_blogs_blogs_controller", + "community": 58, + "community_name": "PaginationDto", + "norm_label": "blogs/blogs.controller.ts" + }, + { + "label": "blogs.module.ts", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.module.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_blogs_blogs_module", + "community": 58, + "community_name": "PaginationDto", + "norm_label": "blogs.module.ts" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_blogs_blogs_module_ts_module", + "community": 58, + "community_name": "PaginationDto", + "norm_label": "module" + }, + { + "label": "blogs/blogs.service.ts", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_blogs_blogs_service", + "community": 58, + "community_name": "PaginationDto", + "norm_label": "blogs/blogs.service.ts" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_blogs_blogs_service_ts_injectable", + "community": 58, + "community_name": "PaginationDto", + "norm_label": "injectable" + }, + { + "label": "pagination.dto.ts", + "file_type": "code", + "source_file": "backend/src/common/dto/pagination.dto.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_common_dto_pagination_dto", + "community": 58, + "community_name": "PaginationDto", + "norm_label": "pagination.dto.ts" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_common_dto_pagination_dto_ts_apipropertyoptional", + "community": 58, + "community_name": "PaginationDto", + "norm_label": "apipropertyoptional" + }, + { + "label": "IsEnum", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_common_dto_pagination_dto_ts_isenum", + "community": 58, + "community_name": "PaginationDto", + "norm_label": "isenum" + }, + { + "label": "IsInt", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_common_dto_pagination_dto_ts_isint", + "community": 58, + "community_name": "PaginationDto", + "norm_label": "isint" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_common_dto_pagination_dto_ts_isoptional", + "community": 58, + "community_name": "PaginationDto", + "norm_label": "isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_common_dto_pagination_dto_ts_isstring", + "community": 58, + "community_name": "PaginationDto", + "norm_label": "isstring" + }, + { + "label": "Min", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_common_dto_pagination_dto_ts_min", + "community": 58, + "community_name": "PaginationDto", + "norm_label": "min" + }, + { + "label": "Type", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_common_dto_pagination_dto_ts_type", + "community": 58, + "community_name": "PaginationDto", + "norm_label": "type" + }, + { + "label": "create-order.dto.ts", + "file_type": "code", + "source_file": "backend/src/orders/dto/create-order.dto.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_orders_dto_create_order_dto", + "community": 58, + "community_name": "PaginationDto", + "norm_label": "create-order.dto.ts" + }, + { + "label": "orders.controller.ts", + "file_type": "code", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_orders_orders_controller", + "community": 58, + "community_name": "PaginationDto", + "norm_label": "orders.controller.ts" + }, + { + "label": "orders.controller.spec.ts", + "file_type": "code", + "source_file": "backend/src/orders/orders.controller.spec.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_orders_orders_controller_spec", + "community": 58, + "community_name": "PaginationDto", + "norm_label": "orders.controller.spec.ts" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_orders_orders_controller_ts_isnotempty", + "community": 58, + "community_name": "PaginationDto", + "norm_label": "isnotempty" + }, + { + "label": "IsNumber", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_orders_orders_controller_ts_isnumber", + "community": 58, + "community_name": "PaginationDto", + "norm_label": "isnumber" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_orders_orders_controller_ts_isstring", + "community": 58, + "community_name": "PaginationDto", + "norm_label": "isstring" + }, + { + "label": "orders.module.ts", + "file_type": "code", + "source_file": "backend/src/orders/orders.module.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_orders_orders_module", + "community": 58, + "community_name": "PaginationDto", + "norm_label": "orders.module.ts" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_orders_orders_module_ts_module", + "community": 58, + "community_name": "PaginationDto", + "norm_label": "module" + }, + { + "label": "orders.service.ts", + "file_type": "code", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_orders_orders_service", + "community": 58, + "community_name": "PaginationDto", + "norm_label": "orders.service.ts" + }, + { + "label": "get-products.dto.ts", + "file_type": "code", + "source_file": "backend/src/products/dto/get-products.dto.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_products_dto_get_products_dto", + "community": 58, + "community_name": "PaginationDto", + "norm_label": "get-products.dto.ts" + }, + { + "label": "dependencies", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L23", + "_origin": "ast", + "id": "backend_package_dependencies", + "community": 59, + "community_name": "dependencies", + "norm_label": "dependencies" + }, + { + "label": "bcrypt", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L32", + "_origin": "ast", + "id": "backend_package_dependencies_bcrypt", + "community": 59, + "community_name": "dependencies", + "norm_label": "bcrypt" + }, + { + "label": "class-transformer", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L34", + "_origin": "ast", + "id": "backend_package_dependencies_class_transformer", + "community": 59, + "community_name": "dependencies", + "norm_label": "class-transformer" + }, + { + "label": "class-validator", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L35", + "_origin": "ast", + "id": "backend_package_dependencies_class_validator", + "community": 59, + "community_name": "dependencies", + "norm_label": "class-validator" + }, + { + "label": "ioredis", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L37", + "_origin": "ast", + "id": "backend_package_dependencies_ioredis", + "community": 59, + "community_name": "dependencies", + "norm_label": "ioredis" + }, + { + "label": "@nestjs/common", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L24", + "_origin": "ast", + "id": "backend_package_dependencies_nestjs_common", + "community": 59, + "community_name": "dependencies", + "norm_label": "@nestjs/common" + }, + { + "label": "@nestjs/passport", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L27", + "_origin": "ast", + "id": "backend_package_dependencies_nestjs_passport", + "community": 59, + "community_name": "dependencies", + "norm_label": "@nestjs/passport" + }, + { + "label": "@nestjs/platform-express", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L28", + "_origin": "ast", + "id": "backend_package_dependencies_nestjs_platform_express", + "community": 59, + "community_name": "dependencies", + "norm_label": "@nestjs/platform-express" + }, + { + "label": "passport", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L39", + "_origin": "ast", + "id": "backend_package_dependencies_passport", + "community": 59, + "community_name": "dependencies", + "norm_label": "passport" + }, + { + "label": "reflect-metadata", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L41", + "_origin": "ast", + "id": "backend_package_dependencies_reflect_metadata", + "community": 59, + "community_name": "dependencies", + "norm_label": "reflect-metadata" + }, + { + "label": "rxjs", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L42", + "_origin": "ast", + "id": "backend_package_dependencies_rxjs", + "community": 59, + "community_name": "dependencies", + "norm_label": "rxjs" + }, + { + "label": "bcrypt", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L32", + "_origin": "ast", + "id": "bcrypt", + "community": 59, + "community_name": "dependencies", + "norm_label": "bcrypt" + }, + { + "label": "class-transformer", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L34", + "_origin": "ast", + "id": "class_transformer", + "community": 59, + "community_name": "dependencies", + "norm_label": "class-transformer" + }, + { + "label": "class-validator", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L35", + "_origin": "ast", + "id": "class_validator", + "community": 59, + "community_name": "dependencies", + "norm_label": "class-validator" + }, + { + "label": "ioredis", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L37", + "_origin": "ast", + "id": "ioredis", + "community": 59, + "community_name": "dependencies", + "norm_label": "ioredis" + }, + { + "label": "@nestjs/common", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L24", + "_origin": "ast", + "id": "nestjs_common", + "community": 59, + "community_name": "dependencies", + "norm_label": "@nestjs/common" + }, + { + "label": "@nestjs/passport", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L27", + "_origin": "ast", + "id": "nestjs_passport", + "community": 59, + "community_name": "dependencies", + "norm_label": "@nestjs/passport" + }, + { + "label": "@nestjs/platform-express", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L28", + "_origin": "ast", + "id": "nestjs_platform_express", + "community": 59, + "community_name": "dependencies", + "norm_label": "@nestjs/platform-express" + }, + { + "label": "passport", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L39", + "_origin": "ast", + "id": "passport", + "community": 59, + "community_name": "dependencies", + "norm_label": "passport" + }, + { + "label": "reflect-metadata", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L41", + "_origin": "ast", + "id": "reflect_metadata", + "community": 59, + "community_name": "dependencies", + "norm_label": "reflect-metadata" + }, + { + "label": "rxjs", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L42", + "_origin": "ast", + "id": "rxjs", + "community": 59, + "community_name": "dependencies", + "norm_label": "rxjs" + }, + { + "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": 6, + "community_name": "UserDashboard.tsx", + "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": 6, + "community_name": "UserDashboard.tsx", + "norm_label": "dashboard/page.tsx" + }, + { + "label": "verify/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/payment/verify/page.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_app_payment_verify_page", + "community": 6, + "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": 6, + "community_name": "UserDashboard.tsx", + "norm_label": "addressmodal.tsx" + }, + { + "label": "BackButton.tsx", + "file_type": "code", + "source_file": "frontend/application/components/BackButton.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_backbutton", + "community": 6, + "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": 6, + "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": 6, + "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": 6, + "community_name": "UserDashboard.tsx", + "norm_label": "headerbutton.tsx" + }, + { + "label": "LoginModal.tsx", + "file_type": "code", + "source_file": "frontend/application/components/LoginModal.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_loginmodal", + "community": 6, + "community_name": "UserDashboard.tsx", + "norm_label": "loginmodal.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": 6, + "community_name": "UserDashboard.tsx", + "norm_label": "orderdetailsmodal.tsx" + }, + { + "label": "SearchableSelect.tsx", + "file_type": "code", + "source_file": "frontend/application/components/SearchableSelect.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_searchableselect", + "community": 6, + "community_name": "UserDashboard.tsx", + "norm_label": "searchableselect.tsx" + }, + { + "label": "TopUpModal.tsx", + "file_type": "code", + "source_file": "frontend/application/components/TopUpModal.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_topupmodal", + "community": 6, + "community_name": "UserDashboard.tsx", + "norm_label": "topupmodal.tsx" + }, + { + "label": "PRESET_AMOUNTS", + "file_type": "code", + "source_file": "frontend/application/components/TopUpModal.tsx", + "source_location": "L17", + "_origin": "ast", + "id": "frontend_application_components_topupmodal_preset_amounts", + "community": 6, + "community_name": "UserDashboard.tsx", + "norm_label": "preset_amounts" + }, + { + "label": "UserDashboard.tsx", + "file_type": "code", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_userdashboard", + "community": 6, + "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": 6, + "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": 6, + "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": 6, + "community_name": "UserDashboard.tsx", + "norm_label": "province_cities" + }, + { + "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": 6, + "community_name": "UserDashboard.tsx", + "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": 6, + "community_name": "UserDashboard.tsx", + "norm_label": "ticketservice" + }, + { + "label": "utils.ts", + "file_type": "code", + "source_file": "frontend/application/lib/utils.ts", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_lib_utils", + "community": 6, + "community_name": "UserDashboard.tsx", + "norm_label": "utils.ts" + }, + { + "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": 60, + "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": 60, + "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": 60, + "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": 60, + "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": 60, + "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": 60, + "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": 60, + "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": 60, + "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": 60, + "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": 60, + "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": 60, + "community_name": "compilerOptions", + "norm_label": "nounusedlocals" + }, + { + "label": "noUnusedParameters", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L19", + "_origin": "ast", + "id": "frontend_admin_panel_tsconfig_node_compileroptions_nounusedparameters", + "community": 60, + "community_name": "compilerOptions", + "norm_label": "nounusedparameters" + }, + { + "label": "skipLibCheck", + "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": 60, + "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": 60, + "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": 60, + "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": 60, + "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": 60, + "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": 60, + "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": 60, + "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": 60, + "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": 60, + "community_name": "compilerOptions", + "norm_label": "vite.config.ts" + }, + { + "label": "HomeClient.tsx", + "file_type": "code", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_app_homeclient", + "community": 61, + "community_name": "HomeClient.tsx", + "norm_label": "homeclient.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": 61, + "community_name": "HomeClient.tsx", + "norm_label": "app/page.tsx" + }, + { + "label": "metadata", + "file_type": "code", + "source_file": "frontend/application/app/page.tsx", + "source_location": "L4", + "_origin": "ast", + "id": "frontend_application_app_page_metadata", + "community": 61, + "community_name": "HomeClient.tsx", + "norm_label": "metadata" + }, + { + "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": 61, + "community_name": "HomeClient.tsx", + "norm_label": "shop/page.tsx" + }, + { + "label": "metadata", + "file_type": "code", + "source_file": "frontend/application/app/shop/page.tsx", + "source_location": "L4", + "_origin": "ast", + "id": "frontend_application_app_shop_page_metadata", + "community": 61, + "community_name": "HomeClient.tsx", + "norm_label": "metadata" + }, + { + "label": "ArchivePage.tsx", + "file_type": "code", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_archivepage", + "community": 61, + "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": 61, + "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": 61, + "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": 61, + "community_name": "HomeClient.tsx", + "norm_label": "bannerplacement.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": 61, + "community_name": "HomeClient.tsx", + "norm_label": "types.ts" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_blogs_controller_ts_apibearerauth", + "community": 62, + "community_name": "BlogsController", + "norm_label": "apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_blogs_controller_ts_apioperation", + "community": 62, + "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": 62, + "community_name": "BlogsController", + "norm_label": "apiquery" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_blogs_controller_ts_apitags", + "community": 62, + "community_name": "BlogsController", + "norm_label": "apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_blogs_controller_ts_body", + "community": 62, + "community_name": "BlogsController", + "norm_label": "body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_blogs_controller_ts_controller", + "community": 62, + "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": 62, + "community_name": "BlogsController", + "norm_label": "delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_blogs_controller_ts_get", + "community": 62, + "community_name": "BlogsController", + "norm_label": "get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_blogs_controller_ts_param", + "community": 62, + "community_name": "BlogsController", + "norm_label": "param" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_blogs_controller_ts_post", + "community": 62, + "community_name": "BlogsController", + "norm_label": "post" + }, + { + "label": "Put", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_blogs_controller_ts_put", + "community": 62, + "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": 62, + "community_name": "BlogsController", + "norm_label": "query" + }, + { + "label": "Request", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_blogs_controller_ts_request", + "community": 62, + "community_name": "BlogsController", + "norm_label": "request" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_blogs_controller_ts_useguards", + "community": 62, + "community_name": "BlogsController", + "norm_label": "useguards" + }, + { + "label": "ApiOkResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_settings_settings_controller_ts_apiokresponse", + "community": 63, + "community_name": "SettingsService", + "norm_label": "apiokresponse" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_settings_settings_service_ts_injectable", + "community": 63, + "community_name": "SettingsService", + "norm_label": "injectable" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_banners_banners_controller_ts_apibearerauth", + "community": 64, + "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": 64, + "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": 64, + "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": 64, + "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": 64, + "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": 64, + "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": 64, + "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": 64, + "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": 64, + "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": 64, + "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": 64, + "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": 64, + "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": 64, + "community_name": "BannersService", + "norm_label": "injectable" + }, + { + "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": 65, + "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": 65, + "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": 65, + "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": 65, + "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": 65, + "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": 65, + "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": 65, + "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": 65, + "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": 65, + "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": 65, + "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": 65, + "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": 65, + "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": 65, + "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": 65, + "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": 65, + "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": 65, + "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": 65, + "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": 65, + "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": 65, + "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": 65, + "community_name": "Required Review Group Closures", + "norm_label": "required review group closures" + }, + { + "label": "PriceInput.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_src_components_ui_priceinput", + "community": 66, + "community_name": "Coupons.tsx", + "norm_label": "priceinput.tsx" + }, + { + "label": "Coupons.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_coupons", + "community": 66, + "community_name": "Coupons.tsx", + "norm_label": "coupons.tsx" + }, + { + "label": "FinancialSettingsPage.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_financialsettingspage", + "community": 66, + "community_name": "Coupons.tsx", + "norm_label": "financialsettingspage.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": 66, + "community_name": "Coupons.tsx", + "norm_label": "products.tsx" + }, + { + "label": "Coupons", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L14", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_coupons", + "community": 66, + "community_name": "Coupons.tsx", + "norm_label": "coupons" + }, + { + "label": "FinancialSettingsPage", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L34", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_financialsettingspage", + "community": 66, + "community_name": "Coupons.tsx", + "norm_label": "financialsettingspage" + }, + { + "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": 66, + "community_name": "Coupons.tsx", + "norm_label": "products" + }, + { + "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": 67, + "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": 67, + "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": 67, + "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": 67, + "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": 67, + "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": 67, + "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": 67, + "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": 67, + "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": 67, + "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": 67, + "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": 67, + "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_location": "L65", + "_origin": "ast", + "id": "ai_agency_agents_06_dev_frontend_output", + "community": 67, + "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": 67, + "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": 67, + "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": 67, + "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": 67, + "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": 67, + "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": 67, + "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": 67, + "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": 68, + "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": 68, + "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": 68, + "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": 68, + "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": 68, + "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": 68, + "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": 68, + "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": 68, + "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": 68, + "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": 68, + "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": 68, + "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": 68, + "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": 68, + "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": 68, + "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": 68, + "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": 68, + "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": 68, + "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": 68, + "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": 68, + "community_name": "Operational Rules & Boundaries", + "norm_label": "your domain \u2014 what you review (only these areas)" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_wiki_controller_ts_apibearerauth", + "community": 69, + "community_name": "WikiController", + "norm_label": "apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_wiki_controller_ts_apioperation", + "community": 69, + "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": 69, + "community_name": "WikiController", + "norm_label": "apiquery" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_wiki_controller_ts_apitags", + "community": 69, + "community_name": "WikiController", + "norm_label": "apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_wiki_controller_ts_body", + "community": 69, + "community_name": "WikiController", + "norm_label": "body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_wiki_controller_ts_controller", + "community": 69, + "community_name": "WikiController", + "norm_label": "controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_wiki_controller_ts_delete", + "community": 69, + "community_name": "WikiController", + "norm_label": "delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_wiki_controller_ts_get", + "community": 69, + "community_name": "WikiController", + "norm_label": "get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_wiki_controller_ts_param", + "community": 69, + "community_name": "WikiController", + "norm_label": "param" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_wiki_controller_ts_post", + "community": 69, + "community_name": "WikiController", + "norm_label": "post" + }, + { + "label": "Put", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_wiki_controller_ts_put", + "community": 69, + "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": 69, + "community_name": "WikiController", + "norm_label": "query" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_wiki_controller_ts_useguards", + "community": 69, + "community_name": "WikiController", + "norm_label": "useguards" + }, + { + "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": 7, + "community_name": "MediaSelector.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": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "mediaselector.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": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "bannersmanager.tsx" + }, + { + "label": "Blogs.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_blogs", + "community": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "blogs.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": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "categories.tsx" + }, + { + "label": "CMS.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/CMS.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_cms", + "community": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "cms.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": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "doctorsmanager.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": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "ingredientsmanager.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": 7, + "community_name": "MediaSelector.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": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "videos.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": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "bannersmanager" + }, + { + "label": "Blogs", + "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": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "blogs" + }, + { + "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": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "categories" + }, + { + "label": "CMS", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L23", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_cms", + "community": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "cms" + }, + { + "label": "DoctorsManager", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L41", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_doctorsmanager", + "community": 7, + "community_name": "MediaSelector.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": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "ingredientsmanager" + }, + { + "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": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "testimonialsmanager" + }, + { + "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": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "videos" + }, + { + "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": 7, + "community_name": "MediaSelector.tsx", + "norm_label": "base_domain" + }, + { + "label": "ApiQuery", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_admin_controller_ts_apiquery", + "community": 70, + "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": 70, + "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": 70, + "community_name": "AdminQueryDto", + "norm_label": "query" + }, + { + "label": "admin-query.dto.ts", + "file_type": "code", + "source_file": "backend/src/admin/dto/admin-query.dto.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_admin_dto_admin_query_dto", + "community": 70, + "community_name": "AdminQueryDto", + "norm_label": "admin-query.dto.ts" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_dto_admin_query_dto_ts_apipropertyoptional", + "community": 70, + "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": 70, + "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": 70, + "community_name": "AdminQueryDto", + "norm_label": "isstring" + }, + { + "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", + "id": "backend_src_pets_dto_create_health_log_dto", + "community": 71, + "community_name": "PetsController", + "norm_label": "create-health-log.dto.ts" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_pets_dto_create_health_log_dto_ts_apiproperty", + "community": 71, + "community_name": "PetsController", + "norm_label": "apiproperty" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_pets_dto_create_health_log_dto_ts_apipropertyoptional", + "community": 71, + "community_name": "PetsController", + "norm_label": "apipropertyoptional" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_pets_dto_create_health_log_dto_ts_isnotempty", + "community": 71, + "community_name": "PetsController", + "norm_label": "isnotempty" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_pets_dto_create_health_log_dto_ts_isoptional", + "community": 71, + "community_name": "PetsController", + "norm_label": "isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_pets_dto_create_health_log_dto_ts_isstring", + "community": 71, + "community_name": "PetsController", + "norm_label": "isstring" + }, + { + "label": "create-reminder.dto.ts", + "file_type": "code", + "source_file": "backend/src/pets/dto/create-reminder.dto.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_pets_dto_create_reminder_dto", + "community": 71, + "community_name": "PetsController", + "norm_label": "create-reminder.dto.ts" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_pets_dto_create_reminder_dto_ts_apiproperty", + "community": 71, + "community_name": "PetsController", + "norm_label": "apiproperty" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_pets_dto_create_reminder_dto_ts_apipropertyoptional", + "community": 71, + "community_name": "PetsController", + "norm_label": "apipropertyoptional" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_pets_dto_create_reminder_dto_ts_isnotempty", + "community": 71, + "community_name": "PetsController", + "norm_label": "isnotempty" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_pets_dto_create_reminder_dto_ts_isoptional", + "community": 71, + "community_name": "PetsController", + "norm_label": "isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_pets_dto_create_reminder_dto_ts_isstring", + "community": 71, + "community_name": "PetsController", + "norm_label": "isstring" + }, + { + "label": "ApiBadRequestResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_pets_pets_controller_ts_apibadrequestresponse", + "community": 71, + "community_name": "PetsController", + "norm_label": "apibadrequestresponse" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_pets_pets_controller_ts_apibearerauth", + "community": 71, + "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": 71, + "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": 71, + "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": 71, + "community_name": "PetsController", + "norm_label": "apiokresponse" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_pets_pets_controller_ts_apioperation", + "community": 71, + "community_name": "PetsController", + "norm_label": "apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_pets_pets_controller_ts_apitags", + "community": 71, + "community_name": "PetsController", + "norm_label": "apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_pets_pets_controller_ts_body", + "community": 71, + "community_name": "PetsController", + "norm_label": "body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_pets_pets_controller_ts_controller", + "community": 71, + "community_name": "PetsController", + "norm_label": "controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_pets_pets_controller_ts_delete", + "community": 71, + "community_name": "PetsController", + "norm_label": "delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_pets_pets_controller_ts_get", + "community": 71, + "community_name": "PetsController", + "norm_label": "get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_pets_pets_controller_ts_param", + "community": 71, + "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": 71, + "community_name": "PetsController", + "norm_label": "patch" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_pets_pets_controller_ts_post", + "community": 71, + "community_name": "PetsController", + "norm_label": "post" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_pets_pets_controller_ts_query", + "community": 71, + "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": 71, + "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": 71, + "community_name": "PetsController", + "norm_label": "uploadedfile" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_pets_pets_controller_ts_useguards", + "community": 71, + "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": 71, + "community_name": "PetsController", + "norm_label": "useinterceptors" + }, + { + "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": 72, + "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": 72, + "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": 72, + "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": 72, + "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": 72, + "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": 72, + "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": 72, + "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": 72, + "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": 72, + "community_name": "seo.module.ts", + "norm_label": "seo.service.ts" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_seo_seo_service_ts_injectable", + "community": 72, + "community_name": "seo.module.ts", + "norm_label": "injectable" + }, + { + "label": "admin.controller.ts", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_admin_admin_controller", + "community": 73, + "community_name": "admin.service.ts", + "norm_label": "admin.controller.ts" + }, + { + "label": "admin.controller.spec.ts", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.spec.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_admin_admin_controller_spec", + "community": 73, + "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": 73, + "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": 73, + "community_name": "admin.service.ts", + "norm_label": "product.dto.ts" + }, + { + "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": 73, + "community_name": "admin.service.ts", + "norm_label": "user.dto.ts" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_dto_user_dto_ts_apiproperty", + "community": 73, + "community_name": "admin.service.ts", + "norm_label": "apiproperty" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_dto_user_dto_ts_apipropertyoptional", + "community": 73, + "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": 73, + "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": 73, + "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": 73, + "community_name": "admin.service.ts", + "norm_label": "isnumber" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_dto_user_dto_ts_isoptional", + "community": 73, + "community_name": "admin.service.ts", + "norm_label": "isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_dto_user_dto_ts_isstring", + "community": 73, + "community_name": "admin.service.ts", + "norm_label": "isstring" + }, + { + "label": "MinLength", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_dto_user_dto_ts_minlength", + "community": 73, + "community_name": "admin.service.ts", + "norm_label": "minlength" + }, + { + "label": "AGENCY.md", + "file_type": "document", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L1", + "_origin": "ast", + "id": "ai_agency_agency", + "community": 74, + "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": 74, + "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": 74, + "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": 74, + "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": 74, + "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": 74, + "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": 74, + "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": 74, + "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": 74, + "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": 74, + "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": 74, + "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": 74, + "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": 74, + "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": 74, + "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": 74, + "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": 74, + "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": 74, + "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": 74, + "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "norm_label": "your identity" + }, + { + "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": 75, + "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": 75, + "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": 75, + "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": 75, + "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": 75, + "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": 75, + "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": 75, + "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": 75, + "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": 75, + "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": 75, + "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": 75, + "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": 75, + "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": 75, + "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": 75, + "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": 75, + "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": 75, + "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": 75, + "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": 75, + "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": 76, + "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": 76, + "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": 76, + "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": 76, + "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": 76, + "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": 76, + "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": 76, + "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": 76, + "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": 76, + "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": 76, + "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": 76, + "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": 76, + "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": 76, + "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": 76, + "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": 76, + "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": 76, + "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": 76, + "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": 76, + "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": 77, + "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": 77, + "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": 77, + "community_name": "scripts", + "norm_label": "concurrently" + }, + { + "label": "name", + "file_type": "code", + "source_file": "package.json", + "source_location": "L2", + "_origin": "ast", + "id": "package_name", + "community": 77, + "community_name": "scripts", + "norm_label": "name" + }, + { + "label": "private", + "file_type": "code", + "source_file": "package.json", + "source_location": "L4", + "_origin": "ast", + "id": "package_private", + "community": 77, + "community_name": "scripts", + "norm_label": "private" + }, + { + "label": "scripts", + "file_type": "code", + "source_file": "package.json", + "source_location": "L5", + "_origin": "ast", + "id": "package_scripts", + "community": 77, + "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": 77, + "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": 77, + "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": 77, + "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": 77, + "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": 77, + "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": 77, + "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": 77, + "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": 77, + "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": 77, + "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": 77, + "community_name": "scripts", + "norm_label": "start" + }, + { + "label": "version", + "file_type": "code", + "source_file": "package.json", + "source_location": "L3", + "_origin": "ast", + "id": "package_version", + "community": 77, + "community_name": "scripts", + "norm_label": "version" + }, + { + "label": "concurrently", + "file_type": "concept", + "source_file": "package.json", + "source_location": "L18", + "_origin": "ast", + "id": "concurrently", + "community": 77, + "community_name": "scripts", + "norm_label": "concurrently" + }, + { + "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": 78, + "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": 78, + "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": 78, + "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": 78, + "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": 78, + "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": 78, + "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": 78, + "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": 78, + "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": 78, + "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": 78, + "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": 78, + "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": 78, + "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": 78, + "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": 78, + "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": 78, + "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": 78, + "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": 78, + "community_name": "Role & Core Objective", + "norm_label": "your domain \u2014 what you review (only these areas)" + }, + { + "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": 79, + "community_name": "HomeController", + "norm_label": "home.controller.ts" + }, + { + "label": "ApiOkResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_home_home_controller_ts_apiokresponse", + "community": 79, + "community_name": "HomeController", + "norm_label": "apiokresponse" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_home_home_controller_ts_apioperation", + "community": 79, + "community_name": "HomeController", + "norm_label": "apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_home_home_controller_ts_apitags", + "community": 79, + "community_name": "HomeController", + "norm_label": "apitags" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_home_home_controller_ts_controller", + "community": 79, + "community_name": "HomeController", + "norm_label": "controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_home_home_controller_ts_get", + "community": 79, + "community_name": "HomeController", + "norm_label": "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": 79, + "community_name": "HomeController", + "norm_label": "home.module.ts" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_home_home_module_ts_module", + "community": 79, + "community_name": "HomeController", + "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": 79, + "community_name": "HomeController", + "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": 79, + "community_name": "HomeController", + "norm_label": "injectable" + }, + { + "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": "module", - "id": "backend_src_redis_redis_module_ts_module" + "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": "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": 8, + "community_name": "admin.module.ts", + "norm_label": "admin/pets.controller.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": 8, + "community_name": "admin.module.ts", + "norm_label": "admin/pets.service.ts" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_pets_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": "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": 8, + "community_name": "admin.module.ts", + "norm_label": "admin/wiki.controller.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": 8, + "community_name": "admin.module.ts", + "norm_label": "admin/wiki.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": "payment-gateway.interface.ts", @@ -38123,10 +38126,10 @@ "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", "source_location": "L1", "_origin": "ast", + "id": "backend_src_payment_interfaces_payment_gateway_interface", "community": 80, "community_name": "zibal.service.ts", - "norm_label": "payment-gateway.interface.ts", - "id": "backend_src_payment_interfaces_payment_gateway_interface" + "norm_label": "payment-gateway.interface.ts" }, { "label": "zibal.service.ts", @@ -38134,10 +38137,10 @@ "source_file": "backend/src/payment/zibal.service.ts", "source_location": "L1", "_origin": "ast", + "id": "backend_src_payment_zibal_service", "community": 80, "community_name": "zibal.service.ts", - "norm_label": "zibal.service.ts", - "id": "backend_src_payment_zibal_service" + "norm_label": "zibal.service.ts" }, { "label": "devDependencies", @@ -38145,10 +38148,10 @@ "source_file": "frontend/application/package.json", "source_location": "L21", "_origin": "ast", + "id": "frontend_application_package_devdependencies", "community": 81, "community_name": "devDependencies", - "norm_label": "devdependencies", - "id": "frontend_application_package_devdependencies" + "norm_label": "devdependencies" }, { "label": "eslint", @@ -38156,10 +38159,10 @@ "source_file": "frontend/application/package.json", "source_location": "L29", "_origin": "ast", + "id": "frontend_application_package_devdependencies_eslint", "community": 81, "community_name": "devDependencies", - "norm_label": "eslint", - "id": "frontend_application_package_devdependencies_eslint" + "norm_label": "eslint" }, { "label": "jsdom", @@ -38167,10 +38170,10 @@ "source_file": "frontend/application/package.json", "source_location": "L31", "_origin": "ast", + "id": "frontend_application_package_devdependencies_jsdom", "community": 81, "community_name": "devDependencies", - "norm_label": "jsdom", - "id": "frontend_application_package_devdependencies_jsdom" + "norm_label": "jsdom" }, { "label": "tailwindcss", @@ -38178,10 +38181,10 @@ "source_file": "frontend/application/package.json", "source_location": "L32", "_origin": "ast", + "id": "frontend_application_package_devdependencies_tailwindcss", "community": 81, "community_name": "devDependencies", - "norm_label": "tailwindcss", - "id": "frontend_application_package_devdependencies_tailwindcss" + "norm_label": "tailwindcss" }, { "label": "@tailwindcss/postcss", @@ -38189,10 +38192,10 @@ "source_file": "frontend/application/package.json", "source_location": "L22", "_origin": "ast", + "id": "frontend_application_package_devdependencies_tailwindcss_postcss", "community": 81, "community_name": "devDependencies", - "norm_label": "@tailwindcss/postcss", - "id": "frontend_application_package_devdependencies_tailwindcss_postcss" + "norm_label": "@tailwindcss/postcss" }, { "label": "@types/node", @@ -38200,10 +38203,10 @@ "source_file": "frontend/application/package.json", "source_location": "L25", "_origin": "ast", + "id": "frontend_application_package_devdependencies_types_node", "community": 81, "community_name": "devDependencies", - "norm_label": "@types/node", - "id": "frontend_application_package_devdependencies_types_node" + "norm_label": "@types/node" }, { "label": "@types/react-dom", @@ -38211,10 +38214,10 @@ "source_file": "frontend/application/package.json", "source_location": "L27", "_origin": "ast", + "id": "frontend_application_package_devdependencies_types_react_dom", "community": 81, "community_name": "devDependencies", - "norm_label": "@types/react-dom", - "id": "frontend_application_package_devdependencies_types_react_dom" + "norm_label": "@types/react-dom" }, { "label": "@vitejs/plugin-react", @@ -38222,10 +38225,10 @@ "source_file": "frontend/application/package.json", "source_location": "L28", "_origin": "ast", + "id": "frontend_application_package_devdependencies_vitejs_plugin_react", "community": 81, "community_name": "devDependencies", - "norm_label": "@vitejs/plugin-react", - "id": "frontend_application_package_devdependencies_vitejs_plugin_react" + "norm_label": "@vitejs/plugin-react" }, { "label": "eslint", @@ -38233,10 +38236,10 @@ "source_file": "frontend/application/package.json", "source_location": "L29", "_origin": "ast", + "id": "frontend_application_package_json_eslint", "community": 81, "community_name": "devDependencies", - "norm_label": "eslint", - "id": "frontend_application_package_json_eslint" + "norm_label": "eslint" }, { "label": "tailwindcss", @@ -38244,10 +38247,10 @@ "source_file": "frontend/application/package.json", "source_location": "L32", "_origin": "ast", + "id": "frontend_application_package_json_tailwindcss", "community": 81, "community_name": "devDependencies", - "norm_label": "tailwindcss", - "id": "frontend_application_package_json_tailwindcss" + "norm_label": "tailwindcss" }, { "label": "@tailwindcss/postcss", @@ -38255,10 +38258,10 @@ "source_file": "frontend/application/package.json", "source_location": "L22", "_origin": "ast", + "id": "frontend_application_package_json_tailwindcss_postcss", "community": 81, "community_name": "devDependencies", - "norm_label": "@tailwindcss/postcss", - "id": "frontend_application_package_json_tailwindcss_postcss" + "norm_label": "@tailwindcss/postcss" }, { "label": "@types/node", @@ -38266,10 +38269,10 @@ "source_file": "frontend/application/package.json", "source_location": "L25", "_origin": "ast", + "id": "frontend_application_package_json_types_node", "community": 81, "community_name": "devDependencies", - "norm_label": "@types/node", - "id": "frontend_application_package_json_types_node" + "norm_label": "@types/node" }, { "label": "@types/react-dom", @@ -38277,10 +38280,10 @@ "source_file": "frontend/application/package.json", "source_location": "L27", "_origin": "ast", + "id": "frontend_application_package_json_types_react_dom", "community": 81, "community_name": "devDependencies", - "norm_label": "@types/react-dom", - "id": "frontend_application_package_json_types_react_dom" + "norm_label": "@types/react-dom" }, { "label": "@vitejs/plugin-react", @@ -38288,10 +38291,10 @@ "source_file": "frontend/application/package.json", "source_location": "L28", "_origin": "ast", + "id": "frontend_application_package_json_vitejs_plugin_react", "community": 81, "community_name": "devDependencies", - "norm_label": "@vitejs/plugin-react", - "id": "frontend_application_package_json_vitejs_plugin_react" + "norm_label": "@vitejs/plugin-react" }, { "label": "jsdom", @@ -38299,10 +38302,10 @@ "source_file": "frontend/application/package.json", "source_location": "L31", "_origin": "ast", + "id": "jsdom", "community": 81, "community_name": "devDependencies", - "norm_label": "jsdom", - "id": "jsdom" + "norm_label": "jsdom" }, { "label": "Layout.tsx", @@ -38310,10 +38313,10 @@ "source_file": "frontend/admin-panel/src/components/Layout.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_admin_panel_src_components_layout", "community": 82, "community_name": "api", - "norm_label": "layout.tsx", - "id": "frontend_admin_panel_src_components_layout" + "norm_label": "layout.tsx" }, { "label": "Sidebar.tsx", @@ -38321,10 +38324,10 @@ "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_admin_panel_src_components_sidebar", "community": 82, "community_name": "api", - "norm_label": "sidebar.tsx", - "id": "frontend_admin_panel_src_components_sidebar" + "norm_label": "sidebar.tsx" }, { "label": "api", @@ -38332,10 +38335,10 @@ "source_file": "frontend/admin-panel/src/services/api.ts", "source_location": "L23", "_origin": "ast", + "id": "frontend_admin_panel_src_services_api_api", "community": 82, "community_name": "api", - "norm_label": "api", - "id": "frontend_admin_panel_src_services_api_api" + "norm_label": "api" }, { "label": "ui/Skeleton.tsx", @@ -38343,10 +38346,10 @@ "source_file": "frontend/admin-panel/src/components/ui/Skeleton.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_admin_panel_src_components_ui_skeleton", "community": 83, "community_name": "Orders.tsx", - "norm_label": "ui/skeleton.tsx", - "id": "frontend_admin_panel_src_components_ui_skeleton" + "norm_label": "ui/skeleton.tsx" }, { "label": "Orders.tsx", @@ -38376,10 +38379,10 @@ "source_file": "frontend/admin-panel/src/pages/Users.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_admin_panel_src_pages_users", "community": 83, "community_name": "Orders.tsx", - "norm_label": "users.tsx", - "id": "frontend_admin_panel_src_pages_users" + "norm_label": "users.tsx" }, { "label": "Orders", @@ -38387,10 +38390,10 @@ "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "source_location": "L13", "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_orders", "community": 83, "community_name": "Orders.tsx", - "norm_label": "orders", - "id": "frontend_admin_panel_src_routes_adminroutes_orders" + "norm_label": "orders" }, { "label": "Users", @@ -38398,10 +38401,10 @@ "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "source_location": "L11", "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_users", "community": 83, "community_name": "Orders.tsx", - "norm_label": "users", - "id": "frontend_admin_panel_src_routes_adminroutes_users" + "norm_label": "users" }, { "label": "devDependencies", @@ -38409,10 +38412,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L24", "_origin": "ast", + "id": "frontend_admin_panel_package_devdependencies", "community": 84, "community_name": "devDependencies", - "norm_label": "devdependencies", - "id": "frontend_admin_panel_package_devdependencies" + "norm_label": "devdependencies" }, { "label": "autoprefixer", @@ -38420,10 +38423,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L31", "_origin": "ast", + "id": "frontend_admin_panel_package_devdependencies_autoprefixer", "community": 84, "community_name": "devDependencies", - "norm_label": "autoprefixer", - "id": "frontend_admin_panel_package_devdependencies_autoprefixer" + "norm_label": "autoprefixer" }, { "label": "eslint", @@ -38431,10 +38434,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L32", "_origin": "ast", + "id": "frontend_admin_panel_package_devdependencies_eslint", "community": 84, "community_name": "devDependencies", - "norm_label": "eslint", - "id": "frontend_admin_panel_package_devdependencies_eslint" + "norm_label": "eslint" }, { "label": "@eslint/js", @@ -38442,10 +38445,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L25", "_origin": "ast", + "id": "frontend_admin_panel_package_devdependencies_eslint_js", "community": 84, "community_name": "devDependencies", - "norm_label": "@eslint/js", - "id": "frontend_admin_panel_package_devdependencies_eslint_js" + "norm_label": "@eslint/js" }, { "label": "globals", @@ -38453,10 +38456,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L35", "_origin": "ast", + "id": "frontend_admin_panel_package_devdependencies_globals", "community": 84, "community_name": "devDependencies", - "norm_label": "globals", - "id": "frontend_admin_panel_package_devdependencies_globals" + "norm_label": "globals" }, { "label": "postcss", @@ -38464,10 +38467,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L36", "_origin": "ast", + "id": "frontend_admin_panel_package_devdependencies_postcss", "community": 84, "community_name": "devDependencies", - "norm_label": "postcss", - "id": "frontend_admin_panel_package_devdependencies_postcss" + "norm_label": "postcss" }, { "label": "@types/node", @@ -38475,10 +38478,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L27", "_origin": "ast", + "id": "frontend_admin_panel_package_devdependencies_types_node", "community": 84, "community_name": "devDependencies", - "norm_label": "@types/node", - "id": "frontend_admin_panel_package_devdependencies_types_node" + "norm_label": "@types/node" }, { "label": "@types/react", @@ -38486,10 +38489,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L28", "_origin": "ast", + "id": "frontend_admin_panel_package_devdependencies_types_react", "community": 84, "community_name": "devDependencies", - "norm_label": "@types/react", - "id": "frontend_admin_panel_package_devdependencies_types_react" + "norm_label": "@types/react" }, { "label": "@types/react-dom", @@ -38497,10 +38500,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L29", "_origin": "ast", + "id": "frontend_admin_panel_package_devdependencies_types_react_dom", "community": 84, "community_name": "devDependencies", - "norm_label": "@types/react-dom", - "id": "frontend_admin_panel_package_devdependencies_types_react_dom" + "norm_label": "@types/react-dom" }, { "label": "@vitejs/plugin-react", @@ -38508,10 +38511,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L30", "_origin": "ast", + "id": "frontend_admin_panel_package_devdependencies_vitejs_plugin_react", "community": 84, "community_name": "devDependencies", - "norm_label": "@vitejs/plugin-react", - "id": "frontend_admin_panel_package_devdependencies_vitejs_plugin_react" + "norm_label": "@vitejs/plugin-react" }, { "label": "autoprefixer", @@ -38519,10 +38522,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L31", "_origin": "ast", + "id": "autoprefixer", "community": 84, "community_name": "devDependencies", - "norm_label": "autoprefixer", - "id": "autoprefixer" + "norm_label": "autoprefixer" }, { "label": "eslint", @@ -38530,10 +38533,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L32", "_origin": "ast", + "id": "frontend_admin_panel_package_json_eslint", "community": 84, "community_name": "devDependencies", - "norm_label": "eslint", - "id": "frontend_admin_panel_package_json_eslint" + "norm_label": "eslint" }, { "label": "@eslint/js", @@ -38541,10 +38544,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L25", "_origin": "ast", + "id": "frontend_admin_panel_package_json_eslint_js", "community": 84, "community_name": "devDependencies", - "norm_label": "@eslint/js", - "id": "frontend_admin_panel_package_json_eslint_js" + "norm_label": "@eslint/js" }, { "label": "globals", @@ -38552,10 +38555,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L35", "_origin": "ast", + "id": "frontend_admin_panel_package_json_globals", "community": 84, "community_name": "devDependencies", - "norm_label": "globals", - "id": "frontend_admin_panel_package_json_globals" + "norm_label": "globals" }, { "label": "@types/node", @@ -38563,10 +38566,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L27", "_origin": "ast", + "id": "frontend_admin_panel_package_json_types_node", "community": 84, "community_name": "devDependencies", - "norm_label": "@types/node", - "id": "frontend_admin_panel_package_json_types_node" + "norm_label": "@types/node" }, { "label": "@types/react", @@ -38574,10 +38577,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L28", "_origin": "ast", + "id": "frontend_admin_panel_package_json_types_react", "community": 84, "community_name": "devDependencies", - "norm_label": "@types/react", - "id": "frontend_admin_panel_package_json_types_react" + "norm_label": "@types/react" }, { "label": "@types/react-dom", @@ -38585,10 +38588,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L29", "_origin": "ast", + "id": "frontend_admin_panel_package_json_types_react_dom", "community": 84, "community_name": "devDependencies", - "norm_label": "@types/react-dom", - "id": "frontend_admin_panel_package_json_types_react_dom" + "norm_label": "@types/react-dom" }, { "label": "@vitejs/plugin-react", @@ -38596,10 +38599,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L30", "_origin": "ast", + "id": "frontend_admin_panel_package_json_vitejs_plugin_react", "community": 84, "community_name": "devDependencies", - "norm_label": "@vitejs/plugin-react", - "id": "frontend_admin_panel_package_json_vitejs_plugin_react" + "norm_label": "@vitejs/plugin-react" }, { "label": "postcss", @@ -38607,10 +38610,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L36", "_origin": "ast", + "id": "postcss", "community": 84, "community_name": "devDependencies", - "norm_label": "postcss", - "id": "postcss" + "norm_label": "postcss" }, { "label": "seed.ts", @@ -38618,10 +38621,10 @@ "source_file": "backend/prisma/seed.ts", "source_location": "L1", "_origin": "ast", + "id": "backend_prisma_seed", "community": 85, "community_name": "seed-products.ts", - "norm_label": "seed.ts", - "id": "backend_prisma_seed" + "norm_label": "seed.ts" }, { "label": "seed-home.ts", @@ -38629,10 +38632,10 @@ "source_file": "backend/prisma/seed-home.ts", "source_location": "L1", "_origin": "ast", + "id": "backend_prisma_seed_home", "community": 85, "community_name": "seed-products.ts", - "norm_label": "seed-home.ts", - "id": "backend_prisma_seed_home" + "norm_label": "seed-home.ts" }, { "label": "prisma", @@ -38640,10 +38643,10 @@ "source_file": "backend/prisma/seed-home.ts", "source_location": "L3", "_origin": "ast", + "id": "backend_prisma_seed_home_prisma", "community": 85, "community_name": "seed-products.ts", - "norm_label": "prisma", - "id": "backend_prisma_seed_home_prisma" + "norm_label": "prisma" }, { "label": "prisma", @@ -38651,10 +38654,10 @@ "source_file": "backend/prisma/seed.ts", "source_location": "L9", "_origin": "ast", + "id": "backend_prisma_seed_prisma", "community": 85, "community_name": "seed-products.ts", - "norm_label": "prisma", - "id": "backend_prisma_seed_prisma" + "norm_label": "prisma" }, { "label": "seed-products.ts", @@ -38662,10 +38665,10 @@ "source_file": "backend/prisma/seed-products.ts", "source_location": "L1", "_origin": "ast", + "id": "backend_prisma_seed_products", "community": 85, "community_name": "seed-products.ts", - "norm_label": "seed-products.ts", - "id": "backend_prisma_seed_products" + "norm_label": "seed-products.ts" }, { "label": "prisma", @@ -38673,10 +38676,10 @@ "source_file": "backend/prisma/seed-products.ts", "source_location": "L5", "_origin": "ast", + "id": "backend_prisma_seed_products_prisma", "community": 85, "community_name": "seed-products.ts", - "norm_label": "prisma", - "id": "backend_prisma_seed_products_prisma" + "norm_label": "prisma" }, { "label": "PRODUCT_SYMPTOMS_MAP", @@ -38684,10 +38687,10 @@ "source_file": "backend/prisma/seed-products.ts", "source_location": "L148", "_origin": "ast", + "id": "backend_prisma_seed_products_product_symptoms_map", "community": 85, "community_name": "seed-products.ts", - "norm_label": "product_symptoms_map", - "id": "backend_prisma_seed_products_product_symptoms_map" + "norm_label": "product_symptoms_map" }, { "label": "PRODUCT_TAGLINES_MAP", @@ -38695,10 +38698,10 @@ "source_file": "backend/prisma/seed-products.ts", "source_location": "L208", "_origin": "ast", + "id": "backend_prisma_seed_products_product_taglines_map", "community": 85, "community_name": "seed-products.ts", - "norm_label": "product_taglines_map", - "id": "backend_prisma_seed_products_product_taglines_map" + "norm_label": "product_taglines_map" }, { "label": "02-audit-plan.md", @@ -38706,10 +38709,10 @@ "source_file": "docs/audit/02-audit-plan.md", "source_location": "L1", "_origin": "ast", + "id": "docs_audit_02_audit_plan", "community": 86, "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "02-audit-plan.md", - "id": "docs_audit_02_audit_plan" + "norm_label": "02-audit-plan.md" }, { "label": "10. Documentation Engineer", @@ -38717,10 +38720,10 @@ "source_file": "docs/audit/02-audit-plan.md", "source_location": "L73", "_origin": "ast", + "id": "docs_audit_02_audit_plan_10_documentation_engineer", "community": 86, "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "10. documentation engineer", - "id": "docs_audit_02_audit_plan_10_documentation_engineer" + "norm_label": "10. documentation engineer" }, { "label": "1. Lead Architect / Orchestrator", @@ -38728,10 +38731,10 @@ "source_file": "docs/audit/02-audit-plan.md", "source_location": "L28", "_origin": "ast", + "id": "docs_audit_02_audit_plan_1_lead_architect_orchestrator", "community": 86, "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "1. lead architect / orchestrator", - "id": "docs_audit_02_audit_plan_1_lead_architect_orchestrator" + "norm_label": "1. lead architect / orchestrator" }, { "label": "2. React / Vite Storefront Auditor", @@ -38739,10 +38742,10 @@ "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": 86, "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "2. react / vite storefront auditor", - "id": "docs_audit_02_audit_plan_2_react_vite_storefront_auditor" + "norm_label": "2. react / vite storefront auditor" }, { "label": "3. NestJS Backend Auditor", @@ -38750,10 +38753,10 @@ "source_file": "docs/audit/02-audit-plan.md", "source_location": "L38", "_origin": "ast", + "id": "docs_audit_02_audit_plan_3_nestjs_backend_auditor", "community": 86, "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "3. nestjs backend auditor", - "id": "docs_audit_02_audit_plan_3_nestjs_backend_auditor" + "norm_label": "3. nestjs backend auditor" }, { "label": "4. Admin Features Auditor", @@ -38761,10 +38764,10 @@ "source_file": "docs/audit/02-audit-plan.md", "source_location": "L43", "_origin": "ast", + "id": "docs_audit_02_audit_plan_4_admin_features_auditor", "community": 86, "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "4. admin features auditor", - "id": "docs_audit_02_audit_plan_4_admin_features_auditor" + "norm_label": "4. admin features auditor" }, { "label": "5. Database & Data Integrity Auditor", @@ -38772,10 +38775,10 @@ "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": 86, "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "5. database & data integrity auditor", - "id": "docs_audit_02_audit_plan_5_database_data_integrity_auditor" + "norm_label": "5. database & data integrity auditor" }, { "label": "6. Security Auditor", @@ -38783,10 +38786,10 @@ "source_file": "docs/audit/02-audit-plan.md", "source_location": "L53", "_origin": "ast", + "id": "docs_audit_02_audit_plan_6_security_auditor", "community": 86, "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "6. security auditor", - "id": "docs_audit_02_audit_plan_6_security_auditor" + "norm_label": "6. security auditor" }, { "label": "7. TypeScript & Code Quality Auditor", @@ -38794,10 +38797,10 @@ "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": 86, "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "7. typescript & code quality auditor", - "id": "docs_audit_02_audit_plan_7_typescript_code_quality_auditor" + "norm_label": "7. typescript & code quality auditor" }, { "label": "8. Testing & Reliability Auditor", @@ -38805,10 +38808,10 @@ "source_file": "docs/audit/02-audit-plan.md", "source_location": "L63", "_origin": "ast", + "id": "docs_audit_02_audit_plan_8_testing_reliability_auditor", "community": 86, "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "8. testing & reliability auditor", - "id": "docs_audit_02_audit_plan_8_testing_reliability_auditor" + "norm_label": "8. testing & reliability auditor" }, { "label": "9. DevOps & CI/CD Auditor", @@ -38816,10 +38819,10 @@ "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": 86, "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "9. devops & ci/cd auditor", - "id": "docs_audit_02_audit_plan_9_devops_ci_cd_auditor" + "norm_label": "9. devops & ci/cd auditor" }, { "label": "Audit Plan & Subagent Roles", @@ -38827,10 +38830,10 @@ "source_file": "docs/audit/02-audit-plan.md", "source_location": "L1", "_origin": "ast", + "id": "docs_audit_02_audit_plan_audit_plan_subagent_roles", "community": 86, "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "audit plan & subagent roles", - "id": "docs_audit_02_audit_plan_audit_plan_subagent_roles" + "norm_label": "audit plan & subagent roles" }, { "label": "Mandatory Global Audit Exclusions", @@ -38838,10 +38841,10 @@ "source_file": "docs/audit/02-audit-plan.md", "source_location": "L10", "_origin": "ast", + "id": "docs_audit_02_audit_plan_mandatory_global_audit_exclusions", "community": 86, "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "mandatory global audit exclusions", - "id": "docs_audit_02_audit_plan_mandatory_global_audit_exclusions" + "norm_label": "mandatory global audit exclusions" }, { "label": "Reconciled Audit Roles & Assignments", @@ -38849,10 +38852,10 @@ "source_file": "docs/audit/02-audit-plan.md", "source_location": "L26", "_origin": "ast", + "id": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", "community": 86, "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "reconciled audit roles & assignments", - "id": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments" + "norm_label": "reconciled audit roles & assignments" }, { "label": "Strategy for Deduplication & Consolidation", @@ -38860,10 +38863,10 @@ "source_file": "docs/audit/02-audit-plan.md", "source_location": "L80", "_origin": "ast", + "id": "docs_audit_02_audit_plan_strategy_for_deduplication_consolidation", "community": 86, "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "strategy for deduplication & consolidation", - "id": "docs_audit_02_audit_plan_strategy_for_deduplication_consolidation" + "norm_label": "strategy for deduplication & consolidation" }, { "label": "Subagent Execution Mode", @@ -38871,10 +38874,10 @@ "source_file": "docs/audit/02-audit-plan.md", "source_location": "L3", "_origin": "ast", + "id": "docs_audit_02_audit_plan_subagent_execution_mode", "community": 86, "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "subagent execution mode", - "id": "docs_audit_02_audit_plan_subagent_execution_mode" + "norm_label": "subagent execution mode" }, { "label": "20260526145407_init/migration.sql", @@ -38882,10 +38885,10 @@ "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "source_location": null, "_origin": "ast", + "id": "backend_prisma_migrations_20260526145407_init_migration", "community": 87, "community_name": "20260526145407_init/migration.sql", - "norm_label": "20260526145407_init/migration.sql", - "id": "backend_prisma_migrations_20260526145407_init_migration" + "norm_label": "20260526145407_init/migration.sql" }, { "label": "\"coupons\"", @@ -38893,10 +38896,10 @@ "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "source_location": "L148", "_origin": "ast", + "id": "backend_prisma_migrations_20260526145407_init_migration_coupons", "community": 87, "community_name": "20260526145407_init/migration.sql", - "norm_label": "\"coupons\"", - "id": "backend_prisma_migrations_20260526145407_init_migration_coupons" + "norm_label": "\"coupons\"" }, { "label": "\"health_logs\"", @@ -38904,10 +38907,10 @@ "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "source_location": "L134", "_origin": "ast", + "id": "backend_prisma_migrations_20260526145407_init_migration_health_logs", "community": 87, "community_name": "20260526145407_init/migration.sql", - "norm_label": "\"health_logs\"", - "id": "backend_prisma_migrations_20260526145407_init_migration_health_logs" + "norm_label": "\"health_logs\"" }, { "label": "\"order_items\"", @@ -38915,10 +38918,10 @@ "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "source_location": "L173", "_origin": "ast", + "id": "backend_prisma_migrations_20260526145407_init_migration_order_items", "community": 87, "community_name": "20260526145407_init/migration.sql", - "norm_label": "\"order_items\"", - "id": "backend_prisma_migrations_20260526145407_init_migration_order_items" + "norm_label": "\"order_items\"" }, { "label": "\"orders\"", @@ -38926,10 +38929,10 @@ "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "source_location": "L159", "_origin": "ast", + "id": "backend_prisma_migrations_20260526145407_init_migration_orders", "community": 87, "community_name": "20260526145407_init/migration.sql", - "norm_label": "\"orders\"", - "id": "backend_prisma_migrations_20260526145407_init_migration_orders" + "norm_label": "\"orders\"" }, { "label": "\"pet_medical_conditions\"", @@ -38937,10 +38940,10 @@ "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": 87, "community_name": "20260526145407_init/migration.sql", - "norm_label": "\"pet_medical_conditions\"", - "id": "backend_prisma_migrations_20260526145407_init_migration_pet_medical_conditions" + "norm_label": "\"pet_medical_conditions\"" }, { "label": "\"pets\"", @@ -38948,10 +38951,10 @@ "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "source_location": "L87", "_origin": "ast", + "id": "backend_prisma_migrations_20260526145407_init_migration_pets", "community": 87, "community_name": "20260526145407_init/migration.sql", - "norm_label": "\"pets\"", - "id": "backend_prisma_migrations_20260526145407_init_migration_pets" + "norm_label": "\"pets\"" }, { "label": "\"product_ingredients\"", @@ -38959,10 +38962,10 @@ "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "source_location": "L71", "_origin": "ast", + "id": "backend_prisma_migrations_20260526145407_init_migration_product_ingredients", "community": 87, "community_name": "20260526145407_init/migration.sql", - "norm_label": "\"product_ingredients\"", - "id": "backend_prisma_migrations_20260526145407_init_migration_product_ingredients" + "norm_label": "\"product_ingredients\"" }, { "label": "\"product_symptoms\"", @@ -38970,10 +38973,10 @@ "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "source_location": "L79", "_origin": "ast", + "id": "backend_prisma_migrations_20260526145407_init_migration_product_symptoms", "community": 87, "community_name": "20260526145407_init/migration.sql", - "norm_label": "\"product_symptoms\"", - "id": "backend_prisma_migrations_20260526145407_init_migration_product_symptoms" + "norm_label": "\"product_symptoms\"" }, { "label": "\"products\"", @@ -38981,10 +38984,10 @@ "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "source_location": "L49", "_origin": "ast", + "id": "backend_prisma_migrations_20260526145407_init_migration_products", "community": 87, "community_name": "20260526145407_init/migration.sql", - "norm_label": "\"products\"", - "id": "backend_prisma_migrations_20260526145407_init_migration_products" + "norm_label": "\"products\"" }, { "label": "\"reminder_completions\"", @@ -38992,10 +38995,10 @@ "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "source_location": "L124", "_origin": "ast", + "id": "backend_prisma_migrations_20260526145407_init_migration_reminder_completions", "community": 87, "community_name": "20260526145407_init/migration.sql", - "norm_label": "\"reminder_completions\"", - "id": "backend_prisma_migrations_20260526145407_init_migration_reminder_completions" + "norm_label": "\"reminder_completions\"" }, { "label": "\"reminders\"", @@ -39003,10 +39006,10 @@ "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "source_location": "L111", "_origin": "ast", + "id": "backend_prisma_migrations_20260526145407_init_migration_reminders", "community": 87, "community_name": "20260526145407_init/migration.sql", - "norm_label": "\"reminders\"", - "id": "backend_prisma_migrations_20260526145407_init_migration_reminders" + "norm_label": "\"reminders\"" }, { "label": "\"user_addresses\"", @@ -39014,10 +39017,10 @@ "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "source_location": "L18", "_origin": "ast", + "id": "backend_prisma_migrations_20260526145407_init_migration_user_addresses", "community": 87, "community_name": "20260526145407_init/migration.sql", - "norm_label": "\"user_addresses\"", - "id": "backend_prisma_migrations_20260526145407_init_migration_user_addresses" + "norm_label": "\"user_addresses\"" }, { "label": "\"users\"", @@ -39025,10 +39028,10 @@ "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "source_location": "L2", "_origin": "ast", + "id": "backend_prisma_migrations_20260526145407_init_migration_users", "community": 87, "community_name": "20260526145407_init/migration.sql", - "norm_label": "\"users\"", - "id": "backend_prisma_migrations_20260526145407_init_migration_users" + "norm_label": "\"users\"" }, { "label": "\"wallet_transactions\"", @@ -39036,10 +39039,10 @@ "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", "source_location": "L35", "_origin": "ast", + "id": "backend_prisma_migrations_20260526145407_init_migration_wallet_transactions", "community": 87, "community_name": "20260526145407_init/migration.sql", - "norm_label": "\"wallet_transactions\"", - "id": "backend_prisma_migrations_20260526145407_init_migration_wallet_transactions" + "norm_label": "\"wallet_transactions\"" }, { "label": "phase3.1-backlog-review.md", @@ -39047,10 +39050,10 @@ "source_file": "docs/audit/phase3.1-backlog-review.md", "source_location": "L1", "_origin": "ast", + "id": "docs_audit_phase3_1_backlog_review", "community": 88, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "phase3.1-backlog-review.md", - "id": "docs_audit_phase3_1_backlog_review" + "norm_label": "phase3.1-backlog-review.md" }, { "label": "10. Dependency & Wave Adjustments", @@ -39058,10 +39061,10 @@ "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": 88, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "10. dependency & wave adjustments", - "id": "docs_audit_phase3_1_backlog_review_10_dependency_wave_adjustments" + "norm_label": "10. dependency & wave adjustments" }, { "label": "11. Acceptance Criteria Refinements", @@ -39069,10 +39072,10 @@ "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": 88, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "11. acceptance criteria refinements", - "id": "docs_audit_phase3_1_backlog_review_11_acceptance_criteria_refinements" + "norm_label": "11. acceptance criteria refinements" }, { "label": "12. Business and Product Decision Classification", @@ -39080,10 +39083,10 @@ "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": 88, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "12. business and product decision classification", - "id": "docs_audit_phase3_1_backlog_review_12_business_and_product_decision_classification" + "norm_label": "12. business and product decision classification" }, { "label": "13. Final Recommended Backlog Summary", @@ -39091,10 +39094,10 @@ "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": 88, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "13. final recommended backlog summary", - "id": "docs_audit_phase3_1_backlog_review_13_final_recommended_backlog_summary" + "norm_label": "13. final recommended backlog summary" }, { "label": "1. Executive Assessment", @@ -39102,10 +39105,10 @@ "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": 88, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "1. executive assessment", - "id": "docs_audit_phase3_1_backlog_review_1_executive_assessment" + "norm_label": "1. executive assessment" }, { "label": "2. Findings That Require No Change", @@ -39113,10 +39116,10 @@ "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": 88, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "2. findings that require no change", - "id": "docs_audit_phase3_1_backlog_review_2_findings_that_require_no_change" + "norm_label": "2. findings that require no change" }, { "label": "3. Findings Requiring Task Refinements", @@ -39124,10 +39127,10 @@ "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": 88, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "3. findings requiring task refinements", - "id": "docs_audit_phase3_1_backlog_review_3_findings_requiring_task_refinements" + "norm_label": "3. findings requiring task refinements" }, { "label": "4. Tasks Requiring Splitting", @@ -39135,10 +39138,10 @@ "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": 88, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "4. tasks requiring splitting", - "id": "docs_audit_phase3_1_backlog_review_4_tasks_requiring_splitting" + "norm_label": "4. tasks requiring splitting" }, { "label": "5. Tasks Requiring Merging", @@ -39146,10 +39149,10 @@ "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": 88, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "5. tasks requiring merging", - "id": "docs_audit_phase3_1_backlog_review_5_tasks_requiring_merging" + "norm_label": "5. tasks requiring merging" }, { "label": "6. Unsupported Assumptions Identified", @@ -39157,10 +39160,10 @@ "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": 88, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "6. unsupported assumptions identified", - "id": "docs_audit_phase3_1_backlog_review_6_unsupported_assumptions_identified" + "norm_label": "6. unsupported assumptions identified" }, { "label": "7. Scope Creep Identified and Removed", @@ -39168,10 +39171,10 @@ "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": 88, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "7. scope creep identified and removed", - "id": "docs_audit_phase3_1_backlog_review_7_scope_creep_identified_and_removed" + "norm_label": "7. scope creep identified and removed" }, { "label": "8. Security Deep-Dive Review", @@ -39179,10 +39182,10 @@ "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": 88, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "8. security deep-dive review", - "id": "docs_audit_phase3_1_backlog_review_8_security_deep_dive_review" + "norm_label": "8. security deep-dive review" }, { "label": "9. Architecture Review", @@ -39190,10 +39193,10 @@ "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": 88, "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "9. architecture review", - "id": "docs_audit_phase3_1_backlog_review_9_architecture_review" + "norm_label": "9. architecture review" }, { "label": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", @@ -39201,10 +39204,10 @@ "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": 88, "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", - "id": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique" + "norm_label": "phase 3.1 \u2014 human review preparation and master backlog critique" }, { "label": "dependencies", @@ -39212,10 +39215,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L12", "_origin": "ast", + "id": "frontend_admin_panel_package_dependencies", "community": 89, "community_name": "dependencies", - "norm_label": "dependencies", - "id": "frontend_admin_panel_package_dependencies" + "norm_label": "dependencies" }, { "label": "axios", @@ -39223,10 +39226,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L14", "_origin": "ast", + "id": "frontend_admin_panel_package_dependencies_axios", "community": 89, "community_name": "dependencies", - "norm_label": "axios", - "id": "frontend_admin_panel_package_dependencies_axios" + "norm_label": "axios" }, { "label": "lucide-react", @@ -39234,10 +39237,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L15", "_origin": "ast", + "id": "frontend_admin_panel_package_dependencies_lucide_react", "community": 89, "community_name": "dependencies", - "norm_label": "lucide-react", - "id": "frontend_admin_panel_package_dependencies_lucide_react" + "norm_label": "lucide-react" }, { "label": "react", @@ -39245,10 +39248,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L16", "_origin": "ast", + "id": "frontend_admin_panel_package_dependencies_react", "community": 89, "community_name": "dependencies", - "norm_label": "react", - "id": "frontend_admin_panel_package_dependencies_react" + "norm_label": "react" }, { "label": "react-dom", @@ -39256,10 +39259,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L17", "_origin": "ast", + "id": "frontend_admin_panel_package_dependencies_react_dom", "community": 89, "community_name": "dependencies", - "norm_label": "react-dom", - "id": "frontend_admin_panel_package_dependencies_react_dom" + "norm_label": "react-dom" }, { "label": "react-hot-toast", @@ -39267,10 +39270,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L18", "_origin": "ast", + "id": "frontend_admin_panel_package_dependencies_react_hot_toast", "community": 89, "community_name": "dependencies", - "norm_label": "react-hot-toast", - "id": "frontend_admin_panel_package_dependencies_react_hot_toast" + "norm_label": "react-hot-toast" }, { "label": "react-router-dom", @@ -39278,10 +39281,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L19", "_origin": "ast", + "id": "frontend_admin_panel_package_dependencies_react_router_dom", "community": 89, "community_name": "dependencies", - "norm_label": "react-router-dom", - "id": "frontend_admin_panel_package_dependencies_react_router_dom" + "norm_label": "react-router-dom" }, { "label": "recharts", @@ -39289,10 +39292,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L20", "_origin": "ast", + "id": "frontend_admin_panel_package_dependencies_recharts", "community": 89, "community_name": "dependencies", - "norm_label": "recharts", - "id": "frontend_admin_panel_package_dependencies_recharts" + "norm_label": "recharts" }, { "label": "@tanstack/react-query", @@ -39300,10 +39303,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L13", "_origin": "ast", + "id": "frontend_admin_panel_package_dependencies_tanstack_react_query", "community": 89, "community_name": "dependencies", - "norm_label": "@tanstack/react-query", - "id": "frontend_admin_panel_package_dependencies_tanstack_react_query" + "norm_label": "@tanstack/react-query" }, { "label": "vite", @@ -39311,10 +39314,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L21", "_origin": "ast", + "id": "frontend_admin_panel_package_dependencies_vite", "community": 89, "community_name": "dependencies", - "norm_label": "vite", - "id": "frontend_admin_panel_package_dependencies_vite" + "norm_label": "vite" }, { "label": "zustand", @@ -39322,10 +39325,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L22", "_origin": "ast", + "id": "frontend_admin_panel_package_dependencies_zustand", "community": 89, "community_name": "dependencies", - "norm_label": "zustand", - "id": "frontend_admin_panel_package_dependencies_zustand" + "norm_label": "zustand" }, { "label": "axios", @@ -39333,10 +39336,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L14", "_origin": "ast", + "id": "frontend_admin_panel_package_json_axios", "community": 89, "community_name": "dependencies", - "norm_label": "axios", - "id": "frontend_admin_panel_package_json_axios" + "norm_label": "axios" }, { "label": "lucide-react", @@ -39344,10 +39347,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L15", "_origin": "ast", + "id": "frontend_admin_panel_package_json_lucide_react", "community": 89, "community_name": "dependencies", - "norm_label": "lucide-react", - "id": "frontend_admin_panel_package_json_lucide_react" + "norm_label": "lucide-react" }, { "label": "react", @@ -39355,10 +39358,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L16", "_origin": "ast", + "id": "frontend_admin_panel_package_json_react", "community": 89, "community_name": "dependencies", - "norm_label": "react", - "id": "frontend_admin_panel_package_json_react" + "norm_label": "react" }, { "label": "react-dom", @@ -39366,10 +39369,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L17", "_origin": "ast", + "id": "frontend_admin_panel_package_json_react_dom", "community": 89, "community_name": "dependencies", - "norm_label": "react-dom", - "id": "frontend_admin_panel_package_json_react_dom" + "norm_label": "react-dom" }, { "label": "zustand", @@ -39377,10 +39380,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L22", "_origin": "ast", + "id": "frontend_admin_panel_package_json_zustand", "community": 89, "community_name": "dependencies", - "norm_label": "zustand", - "id": "frontend_admin_panel_package_json_zustand" + "norm_label": "zustand" }, { "label": "react-hot-toast", @@ -39388,10 +39391,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L18", "_origin": "ast", + "id": "react_hot_toast", "community": 89, "community_name": "dependencies", - "norm_label": "react-hot-toast", - "id": "react_hot_toast" + "norm_label": "react-hot-toast" }, { "label": "react-router-dom", @@ -39399,10 +39402,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L19", "_origin": "ast", + "id": "react_router_dom", "community": 89, "community_name": "dependencies", - "norm_label": "react-router-dom", - "id": "react_router_dom" + "norm_label": "react-router-dom" }, { "label": "recharts", @@ -39410,10 +39413,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L20", "_origin": "ast", + "id": "recharts", "community": 89, "community_name": "dependencies", - "norm_label": "recharts", - "id": "recharts" + "norm_label": "recharts" }, { "label": "@tanstack/react-query", @@ -39421,10 +39424,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L13", "_origin": "ast", + "id": "tanstack_react_query", "community": 89, "community_name": "dependencies", - "norm_label": "@tanstack/react-query", - "id": "tanstack_react_query" + "norm_label": "@tanstack/react-query" }, { "label": "vite", @@ -39432,10 +39435,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L21", "_origin": "ast", + "id": "vite", "community": 89, "community_name": "dependencies", - "norm_label": "vite", - "id": "vite" + "norm_label": "vite" }, { "label": "loading.tsx", @@ -39443,10 +39446,10 @@ "source_file": "frontend/application/app/loading.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_app_loading", "community": 9, "community_name": "PetProfile.tsx", - "norm_label": "loading.tsx", - "id": "frontend_application_app_loading" + "norm_label": "loading.tsx" }, { "label": "profile/page.tsx", @@ -39454,10 +39457,10 @@ "source_file": "frontend/application/app/profile/page.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_app_profile_page", "community": 9, "community_name": "PetProfile.tsx", - "norm_label": "profile/page.tsx", - "id": "frontend_application_app_profile_page" + "norm_label": "profile/page.tsx" }, { "label": "FeaturedProducts.tsx", @@ -39465,10 +39468,10 @@ "source_file": "frontend/application/components/FeaturedProducts.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_components_featuredproducts", "community": 9, "community_name": "PetProfile.tsx", - "norm_label": "featuredproducts.tsx", - "id": "frontend_application_components_featuredproducts" + "norm_label": "featuredproducts.tsx" }, { "label": "PetProfile.tsx", @@ -39476,10 +39479,10 @@ "source_file": "frontend/application/components/PetProfile.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_components_petprofile", "community": 9, "community_name": "PetProfile.tsx", - "norm_label": "petprofile.tsx", - "id": "frontend_application_components_petprofile" + "norm_label": "petprofile.tsx" }, { "label": "components/Skeleton.tsx", @@ -39487,10 +39490,10 @@ "source_file": "frontend/application/components/Skeleton.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_components_skeleton", "community": 9, "community_name": "PetProfile.tsx", - "norm_label": "components/skeleton.tsx", - "id": "frontend_application_components_skeleton" + "norm_label": "components/skeleton.tsx" }, { "label": "FeaturedProducts.test.tsx", @@ -39498,10 +39501,10 @@ "source_file": "frontend/application/components/__tests__/FeaturedProducts.test.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_components_tests_featuredproducts_test", "community": 9, "community_name": "PetProfile.tsx", - "norm_label": "featuredproducts.test.tsx", - "id": "frontend_application_components_tests_featuredproducts_test" + "norm_label": "featuredproducts.test.tsx" }, { "label": "mockProducts", @@ -39509,10 +39512,10 @@ "source_file": "frontend/application/components/__tests__/FeaturedProducts.test.tsx", "source_location": "L19", "_origin": "ast", + "id": "frontend_application_components_tests_featuredproducts_test_mockproducts", "community": 9, "community_name": "PetProfile.tsx", - "norm_label": "mockproducts", - "id": "frontend_application_components_tests_featuredproducts_test_mockproducts" + "norm_label": "mockproducts" }, { "label": "usePetStore.ts", @@ -39520,10 +39523,10 @@ "source_file": "frontend/application/lib/store/usePetStore.ts", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_lib_store_usepetstore", "community": 9, "community_name": "PetProfile.tsx", - "norm_label": "usepetstore.ts", - "id": "frontend_application_lib_store_usepetstore" + "norm_label": "usepetstore.ts" }, { "label": "shop/[slug]/page.tsx", @@ -39531,10 +39534,10 @@ "source_file": "frontend/application/app/shop/[slug]/page.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_app_shop_slug_page", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "shop/[slug]/page.tsx", - "id": "frontend_application_app_shop_slug_page" + "norm_label": "shop/[slug]/page.tsx" }, { "label": "videos/page.tsx", @@ -39542,10 +39545,10 @@ "source_file": "frontend/application/app/videos/page.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_app_videos_page", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "videos/page.tsx", - "id": "frontend_application_app_videos_page" + "norm_label": "videos/page.tsx" }, { "label": "ProductDetailModal.tsx", @@ -39553,10 +39556,10 @@ "source_file": "frontend/application/components/catalog/ProductDetailModal.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_components_catalog_productdetailmodal", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "productdetailmodal.tsx", - "id": "frontend_application_components_catalog_productdetailmodal" + "norm_label": "productdetailmodal.tsx" }, { "label": "PodcastInlinePlayer.tsx", @@ -39564,10 +39567,10 @@ "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_components_podcastinlineplayer", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "podcastinlineplayer.tsx", - "id": "frontend_application_components_podcastinlineplayer" + "norm_label": "podcastinlineplayer.tsx" }, { "label": "PLAYBACK_RATES", @@ -39575,10 +39578,10 @@ "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", "source_location": "L29", "_origin": "ast", + "id": "frontend_application_components_podcastinlineplayer_playback_rates", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "playback_rates", - "id": "frontend_application_components_podcastinlineplayer_playback_rates" + "norm_label": "playback_rates" }, { "label": "ProductPage.tsx", @@ -39586,10 +39589,10 @@ "source_file": "frontend/application/components/ProductPage.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_components_productpage", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "productpage.tsx", - "id": "frontend_application_components_productpage" + "norm_label": "productpage.tsx" }, { "label": "ICON_MAP", @@ -39597,10 +39600,10 @@ "source_file": "frontend/application/components/ProductPage.tsx", "source_location": "L34", "_origin": "ast", + "id": "frontend_application_components_productpage_icon_map", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "icon_map", - "id": "frontend_application_components_productpage_icon_map" + "norm_label": "icon_map" }, { "label": "useCalculatorStore", @@ -39608,10 +39611,10 @@ "source_file": "frontend/application/components/ProductPage.tsx", "source_location": "L61", "_origin": "ast", + "id": "frontend_application_components_productpage_usecalculatorstore", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "usecalculatorstore", - "id": "frontend_application_components_productpage_usecalculatorstore" + "norm_label": "usecalculatorstore" }, { "label": "ProductReviews.tsx", @@ -39619,10 +39622,10 @@ "source_file": "frontend/application/components/ProductReviews.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_components_productreviews", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "productreviews.tsx", - "id": "frontend_application_components_productreviews" + "norm_label": "productreviews.tsx" }, { "label": "SafeImage.tsx", @@ -39630,10 +39633,10 @@ "source_file": "frontend/application/components/SafeImage.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_components_safeimage", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "safeimage.tsx", - "id": "frontend_application_components_safeimage" + "norm_label": "safeimage.tsx" }, { "label": "VetGallery.tsx", @@ -39641,10 +39644,10 @@ "source_file": "frontend/application/components/VetGallery.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_components_vetgallery", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "vetgallery.tsx", - "id": "frontend_application_components_vetgallery" + "norm_label": "vetgallery.tsx" }, { "label": "FALLBACK_VIDEOS", @@ -39652,10 +39655,10 @@ "source_file": "frontend/application/components/VetGallery.tsx", "source_location": "L28", "_origin": "ast", + "id": "frontend_application_components_vetgallery_fallback_videos", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "fallback_videos", - "id": "frontend_application_components_vetgallery_fallback_videos" + "norm_label": "fallback_videos" }, { "label": "VideoModalPlayer.tsx", @@ -39663,10 +39666,10 @@ "source_file": "frontend/application/components/VideoModalPlayer.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_components_videomodalplayer", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "videomodalplayer.tsx", - "id": "frontend_application_components_videomodalplayer" + "norm_label": "videomodalplayer.tsx" }, { "label": "PLAYBACK_RATES", @@ -39674,10 +39677,10 @@ "source_file": "frontend/application/components/VideoModalPlayer.tsx", "source_location": "L37", "_origin": "ast", + "id": "frontend_application_components_videomodalplayer_playback_rates", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "playback_rates", - "id": "frontend_application_components_videomodalplayer_playback_rates" + "norm_label": "playback_rates" }, { "label": "VideosPage.tsx", @@ -39685,10 +39688,10 @@ "source_file": "frontend/application/components/VideosPage.tsx", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_components_videospage", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "videospage.tsx", - "id": "frontend_application_components_videospage" + "norm_label": "videospage.tsx" }, { "label": "data/scientificTerms.ts", @@ -39696,10 +39699,10 @@ "source_file": "frontend/application/lib/data/scientificTerms.ts", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_lib_data_scientificterms", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "data/scientificterms.ts", - "id": "frontend_application_lib_data_scientificterms" + "norm_label": "data/scientificterms.ts" }, { "label": "SCIENTIFIC_TERMS", @@ -39707,10 +39710,10 @@ "source_file": "frontend/application/lib/data/scientificTerms.ts", "source_location": "L7", "_origin": "ast", + "id": "frontend_application_lib_data_scientificterms_scientific_terms", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "scientific_terms", - "id": "frontend_application_lib_data_scientificterms_scientific_terms" + "norm_label": "scientific_terms" }, { "label": "videoService.ts", @@ -39718,10 +39721,10 @@ "source_file": "frontend/application/lib/services/videoService.ts", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_lib_services_videoservice", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "videoservice.ts", - "id": "frontend_application_lib_services_videoservice" + "norm_label": "videoservice.ts" }, { "label": "videoService", @@ -39729,10 +39732,10 @@ "source_file": "frontend/application/lib/services/videoService.ts", "source_location": "L15", "_origin": "ast", + "id": "frontend_application_lib_services_videoservice_videoservice", "community": 90, "community_name": "ProductPage.tsx", - "norm_label": "videoservice", - "id": "frontend_application_lib_services_videoservice_videoservice" + "norm_label": "videoservice" }, { "label": "application/tsconfig.json", @@ -39740,10 +39743,10 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L1", "_origin": "ast", + "id": "frontend_application_tsconfig", "community": 91, "community_name": "compilerOptions", - "norm_label": "application/tsconfig.json", - "id": "frontend_application_tsconfig" + "norm_label": "application/tsconfig.json" }, { "label": "compilerOptions", @@ -39751,10 +39754,10 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L2", "_origin": "ast", + "id": "frontend_application_tsconfig_compileroptions", "community": 91, "community_name": "compilerOptions", - "norm_label": "compileroptions", - "id": "frontend_application_tsconfig_compileroptions" + "norm_label": "compileroptions" }, { "label": "allowJs", @@ -39762,10 +39765,10 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L5", "_origin": "ast", + "id": "frontend_application_tsconfig_compileroptions_allowjs", "community": 91, "community_name": "compilerOptions", - "norm_label": "allowjs", - "id": "frontend_application_tsconfig_compileroptions_allowjs" + "norm_label": "allowjs" }, { "label": "esModuleInterop", @@ -39773,10 +39776,10 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L9", "_origin": "ast", + "id": "frontend_application_tsconfig_compileroptions_esmoduleinterop", "community": 91, "community_name": "compilerOptions", - "norm_label": "esmoduleinterop", - "id": "frontend_application_tsconfig_compileroptions_esmoduleinterop" + "norm_label": "esmoduleinterop" }, { "label": "incremental", @@ -39784,10 +39787,10 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L15", "_origin": "ast", + "id": "frontend_application_tsconfig_compileroptions_incremental", "community": 91, "community_name": "compilerOptions", - "norm_label": "incremental", - "id": "frontend_application_tsconfig_compileroptions_incremental" + "norm_label": "incremental" }, { "label": "isolatedModules", @@ -39795,10 +39798,10 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L13", "_origin": "ast", + "id": "frontend_application_tsconfig_compileroptions_isolatedmodules", "community": 91, "community_name": "compilerOptions", - "norm_label": "isolatedmodules", - "id": "frontend_application_tsconfig_compileroptions_isolatedmodules" + "norm_label": "isolatedmodules" }, { "label": "jsx", @@ -39806,10 +39809,10 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L14", "_origin": "ast", + "id": "frontend_application_tsconfig_compileroptions_jsx", "community": 91, "community_name": "compilerOptions", - "norm_label": "jsx", - "id": "frontend_application_tsconfig_compileroptions_jsx" + "norm_label": "jsx" }, { "label": "lib", @@ -39817,10 +39820,10 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L4", "_origin": "ast", + "id": "frontend_application_tsconfig_compileroptions_lib", "community": 91, "community_name": "compilerOptions", - "norm_label": "lib", - "id": "frontend_application_tsconfig_compileroptions_lib" + "norm_label": "lib" }, { "label": "module", @@ -39828,10 +39831,10 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L10", "_origin": "ast", + "id": "frontend_application_tsconfig_compileroptions_module", "community": 91, "community_name": "compilerOptions", - "norm_label": "module", - "id": "frontend_application_tsconfig_compileroptions_module" + "norm_label": "module" }, { "label": "moduleResolution", @@ -39839,10 +39842,10 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L11", "_origin": "ast", + "id": "frontend_application_tsconfig_compileroptions_moduleresolution", "community": 91, "community_name": "compilerOptions", - "norm_label": "moduleresolution", - "id": "frontend_application_tsconfig_compileroptions_moduleresolution" + "norm_label": "moduleresolution" }, { "label": "noEmit", @@ -39850,10 +39853,10 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L8", "_origin": "ast", + "id": "frontend_application_tsconfig_compileroptions_noemit", "community": 91, "community_name": "compilerOptions", - "norm_label": "noemit", - "id": "frontend_application_tsconfig_compileroptions_noemit" + "norm_label": "noemit" }, { "label": "paths", @@ -39861,10 +39864,10 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L21", "_origin": "ast", + "id": "frontend_application_tsconfig_compileroptions_paths", "community": 91, "community_name": "compilerOptions", - "norm_label": "paths", - "id": "frontend_application_tsconfig_compileroptions_paths" + "norm_label": "paths" }, { "label": "plugins", @@ -39872,10 +39875,10 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L16", "_origin": "ast", + "id": "frontend_application_tsconfig_compileroptions_plugins", "community": 91, "community_name": "compilerOptions", - "norm_label": "plugins", - "id": "frontend_application_tsconfig_compileroptions_plugins" + "norm_label": "plugins" }, { "label": "resolveJsonModule", @@ -39883,10 +39886,10 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L12", "_origin": "ast", + "id": "frontend_application_tsconfig_compileroptions_resolvejsonmodule", "community": 91, "community_name": "compilerOptions", - "norm_label": "resolvejsonmodule", - "id": "frontend_application_tsconfig_compileroptions_resolvejsonmodule" + "norm_label": "resolvejsonmodule" }, { "label": "skipLibCheck", @@ -39894,10 +39897,10 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L6", "_origin": "ast", + "id": "frontend_application_tsconfig_compileroptions_skiplibcheck", "community": 91, "community_name": "compilerOptions", - "norm_label": "skiplibcheck", - "id": "frontend_application_tsconfig_compileroptions_skiplibcheck" + "norm_label": "skiplibcheck" }, { "label": "strict", @@ -39905,10 +39908,10 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L7", "_origin": "ast", + "id": "frontend_application_tsconfig_compileroptions_strict", "community": 91, "community_name": "compilerOptions", - "norm_label": "strict", - "id": "frontend_application_tsconfig_compileroptions_strict" + "norm_label": "strict" }, { "label": "target", @@ -39916,10 +39919,10 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L3", "_origin": "ast", + "id": "frontend_application_tsconfig_compileroptions_target", "community": 91, "community_name": "compilerOptions", - "norm_label": "target", - "id": "frontend_application_tsconfig_compileroptions_target" + "norm_label": "target" }, { "label": "exclude", @@ -39927,10 +39930,10 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L33", "_origin": "ast", + "id": "frontend_application_tsconfig_exclude", "community": 91, "community_name": "compilerOptions", - "norm_label": "exclude", - "id": "frontend_application_tsconfig_exclude" + "norm_label": "exclude" }, { "label": "include", @@ -39938,10 +39941,10 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L25", "_origin": "ast", + "id": "frontend_application_tsconfig_include", "community": 91, "community_name": "compilerOptions", - "norm_label": "include", - "id": "frontend_application_tsconfig_include" + "norm_label": "include" }, { "label": "dom", @@ -39949,10 +39952,10 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L4", "_origin": "ast", + "id": "frontend_application_tsconfig_json_ref_dom", "community": 91, "community_name": "compilerOptions", - "norm_label": "dom", - "id": "frontend_application_tsconfig_json_ref_dom" + "norm_label": "dom" }, { "label": "dom.iterable", @@ -39960,10 +39963,10 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L4", "_origin": "ast", + "id": "frontend_application_tsconfig_json_ref_dom_iterable", "community": 91, "community_name": "compilerOptions", - "norm_label": "dom.iterable", - "id": "frontend_application_tsconfig_json_ref_dom_iterable" + "norm_label": "dom.iterable" }, { "label": "node_modules", @@ -39971,10 +39974,10 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L33", "_origin": "ast", + "id": "frontend_application_tsconfig_json_ref_node_modules", "community": 91, "community_name": "compilerOptions", - "norm_label": "node_modules", - "id": "frontend_application_tsconfig_json_ref_node_modules" + "norm_label": "node_modules" }, { "label": "prisma", @@ -39982,10 +39985,10 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L33", "_origin": "ast", + "id": "frontend_application_tsconfig_json_ref_prisma", "community": 91, "community_name": "compilerOptions", - "norm_label": "prisma", - "id": "frontend_application_tsconfig_json_ref_prisma" + "norm_label": "prisma" }, { "label": "**/*.ts", @@ -39993,10 +39996,10 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L25", "_origin": "ast", + "id": "frontend_application_tsconfig_json_ref_ts", "community": 91, "community_name": "compilerOptions", - "norm_label": "**/*.ts", - "id": "frontend_application_tsconfig_json_ref_ts" + "norm_label": "**/*.ts" }, { "label": "esnext", @@ -40004,10 +40007,10 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L4", "_origin": "ast", + "id": "ref_esnext", "community": 91, "community_name": "compilerOptions", - "norm_label": "esnext", - "id": "ref_esnext" + "norm_label": "esnext" }, { "label": "**/*.mts", @@ -40015,10 +40018,10 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L25", "_origin": "ast", + "id": "ref_mts", "community": 91, "community_name": "compilerOptions", - "norm_label": "**/*.mts", - "id": "ref_mts" + "norm_label": "**/*.mts" }, { "label": ".next/dev/types/**/*.ts", @@ -40026,10 +40029,10 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L25", "_origin": "ast", + "id": "ref_next_dev_types_ts", "community": 91, "community_name": "compilerOptions", - "norm_label": ".next/dev/types/**/*.ts", - "id": "ref_next_dev_types_ts" + "norm_label": ".next/dev/types/**/*.ts" }, { "label": "next-env.d.ts", @@ -40037,10 +40040,10 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L25", "_origin": "ast", + "id": "ref_next_env_d_ts", "community": 91, "community_name": "compilerOptions", - "norm_label": "next-env.d.ts", - "id": "ref_next_env_d_ts" + "norm_label": "next-env.d.ts" }, { "label": ".next/types/**/*.ts", @@ -40048,10 +40051,10 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L25", "_origin": "ast", + "id": "ref_next_types_ts", "community": 91, "community_name": "compilerOptions", - "norm_label": ".next/types/**/*.ts", - "id": "ref_next_types_ts" + "norm_label": ".next/types/**/*.ts" }, { "label": "**/__tests__/**", @@ -40059,10 +40062,10 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L33", "_origin": "ast", + "id": "ref_tests", "community": 91, "community_name": "compilerOptions", - "norm_label": "**/__tests__/**", - "id": "ref_tests" + "norm_label": "**/__tests__/**" }, { "label": "**/*.tsx", @@ -40070,10 +40073,10 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L25", "_origin": "ast", + "id": "ref_tsx", "community": 91, "community_name": "compilerOptions", - "norm_label": "**/*.tsx", - "id": "ref_tsx" + "norm_label": "**/*.tsx" }, { "label": "vitest.config.ts", @@ -40081,10 +40084,10 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L33", "_origin": "ast", + "id": "ref_vitest_config_ts", "community": 91, "community_name": "compilerOptions", - "norm_label": "vitest.config.ts", - "id": "ref_vitest_config_ts" + "norm_label": "vitest.config.ts" }, { "label": "vitest.setup.ts", @@ -40092,10 +40095,10 @@ "source_file": "frontend/application/tsconfig.json", "source_location": "L33", "_origin": "ast", + "id": "ref_vitest_setup_ts", "community": 91, "community_name": "compilerOptions", - "norm_label": "vitest.setup.ts", - "id": "ref_vitest_setup_ts" + "norm_label": "vitest.setup.ts" }, { "label": "scripts", @@ -40103,10 +40106,10 @@ "source_file": "backend/package.json", "source_location": "L8", "_origin": "ast", + "id": "backend_package_scripts", "community": 92, "community_name": "scripts", - "norm_label": "scripts", - "id": "backend_package_scripts" + "norm_label": "scripts" }, { "label": "build", @@ -40114,10 +40117,10 @@ "source_file": "backend/package.json", "source_location": "L9", "_origin": "ast", + "id": "backend_package_scripts_build", "community": 92, "community_name": "scripts", - "norm_label": "build", - "id": "backend_package_scripts_build" + "norm_label": "build" }, { "label": "docs:generate", @@ -40125,10 +40128,10 @@ "source_file": "backend/package.json", "source_location": "L21", "_origin": "ast", + "id": "backend_package_scripts_docs_generate", "community": 92, "community_name": "scripts", - "norm_label": "docs:generate", - "id": "backend_package_scripts_docs_generate" + "norm_label": "docs:generate" }, { "label": "format", @@ -40136,10 +40139,10 @@ "source_file": "backend/package.json", "source_location": "L10", "_origin": "ast", + "id": "backend_package_scripts_format", "community": 92, "community_name": "scripts", - "norm_label": "format", - "id": "backend_package_scripts_format" + "norm_label": "format" }, { "label": "lint", @@ -40147,10 +40150,10 @@ "source_file": "backend/package.json", "source_location": "L15", "_origin": "ast", + "id": "backend_package_scripts_lint", "community": 92, "community_name": "scripts", - "norm_label": "lint", - "id": "backend_package_scripts_lint" + "norm_label": "lint" }, { "label": "start", @@ -40158,10 +40161,10 @@ "source_file": "backend/package.json", "source_location": "L11", "_origin": "ast", + "id": "backend_package_scripts_start", "community": 92, "community_name": "scripts", - "norm_label": "start", - "id": "backend_package_scripts_start" + "norm_label": "start" }, { "label": "start:debug", @@ -40169,10 +40172,10 @@ "source_file": "backend/package.json", "source_location": "L13", "_origin": "ast", + "id": "backend_package_scripts_start_debug", "community": 92, "community_name": "scripts", - "norm_label": "start:debug", - "id": "backend_package_scripts_start_debug" + "norm_label": "start:debug" }, { "label": "start:dev", @@ -40180,10 +40183,10 @@ "source_file": "backend/package.json", "source_location": "L12", "_origin": "ast", + "id": "backend_package_scripts_start_dev", "community": 92, "community_name": "scripts", - "norm_label": "start:dev", - "id": "backend_package_scripts_start_dev" + "norm_label": "start:dev" }, { "label": "start:prod", @@ -40191,10 +40194,10 @@ "source_file": "backend/package.json", "source_location": "L14", "_origin": "ast", + "id": "backend_package_scripts_start_prod", "community": 92, "community_name": "scripts", - "norm_label": "start:prod", - "id": "backend_package_scripts_start_prod" + "norm_label": "start:prod" }, { "label": "test", @@ -40202,10 +40205,10 @@ "source_file": "backend/package.json", "source_location": "L16", "_origin": "ast", + "id": "backend_package_scripts_test", "community": 92, "community_name": "scripts", - "norm_label": "test", - "id": "backend_package_scripts_test" + "norm_label": "test" }, { "label": "test:cov", @@ -40213,10 +40216,10 @@ "source_file": "backend/package.json", "source_location": "L18", "_origin": "ast", + "id": "backend_package_scripts_test_cov", "community": 92, "community_name": "scripts", - "norm_label": "test:cov", - "id": "backend_package_scripts_test_cov" + "norm_label": "test:cov" }, { "label": "test:debug", @@ -40224,10 +40227,10 @@ "source_file": "backend/package.json", "source_location": "L19", "_origin": "ast", + "id": "backend_package_scripts_test_debug", "community": 92, "community_name": "scripts", - "norm_label": "test:debug", - "id": "backend_package_scripts_test_debug" + "norm_label": "test:debug" }, { "label": "test:e2e", @@ -40235,10 +40238,10 @@ "source_file": "backend/package.json", "source_location": "L20", "_origin": "ast", + "id": "backend_package_scripts_test_e2e", "community": 92, "community_name": "scripts", - "norm_label": "test:e2e", - "id": "backend_package_scripts_test_e2e" + "norm_label": "test:e2e" }, { "label": "test:watch", @@ -40246,10 +40249,10 @@ "source_file": "backend/package.json", "source_location": "L17", "_origin": "ast", + "id": "backend_package_scripts_test_watch", "community": 92, "community_name": "scripts", - "norm_label": "test:watch", - "id": "backend_package_scripts_test_watch" + "norm_label": "test:watch" }, { "label": "16-deep-audit-summary.md", @@ -40257,10 +40260,10 @@ "source_file": "docs/audit/16-deep-audit-summary.md", "source_location": "L1", "_origin": "ast", + "id": "docs_audit_16_deep_audit_summary", "community": 93, "community_name": "Deep Audit Summary Report", - "norm_label": "16-deep-audit-summary.md", - "id": "docs_audit_16_deep_audit_summary" + "norm_label": "16-deep-audit-summary.md" }, { "label": "1. Audit Overview", @@ -40268,10 +40271,10 @@ "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": 93, "community_name": "Deep Audit Summary Report", - "norm_label": "1. audit overview", - "id": "docs_audit_16_deep_audit_summary_1_audit_overview" + "norm_label": "1. audit overview" }, { "label": "2. Findings Metrics", @@ -40279,10 +40282,10 @@ "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": 93, "community_name": "Deep Audit Summary Report", - "norm_label": "2. findings metrics", - "id": "docs_audit_16_deep_audit_summary_2_findings_metrics" + "norm_label": "2. findings metrics" }, { "label": "3. Inspected Scope & Command Log", @@ -40290,10 +40293,10 @@ "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": 93, "community_name": "Deep Audit Summary Report", - "norm_label": "3. inspected scope & command log", - "id": "docs_audit_16_deep_audit_summary_3_inspected_scope_command_log" + "norm_label": "3. inspected scope & command log" }, { "label": "4. Key Business & Integration Questions", @@ -40301,10 +40304,10 @@ "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": 93, "community_name": "Deep Audit Summary Report", - "norm_label": "4. key business & integration questions", - "id": "docs_audit_16_deep_audit_summary_4_key_business_integration_questions" + "norm_label": "4. key business & integration questions" }, { "label": "5. Audit Limitations & Integrity Confirmation", @@ -40312,10 +40315,10 @@ "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": 93, "community_name": "Deep Audit Summary Report", - "norm_label": "5. audit limitations & integrity confirmation", - "id": "docs_audit_16_deep_audit_summary_5_audit_limitations_integrity_confirmation" + "norm_label": "5. audit limitations & integrity confirmation" }, { "label": "6. Exact Next Recommended Phase", @@ -40323,10 +40326,10 @@ "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": 93, "community_name": "Deep Audit Summary Report", - "norm_label": "6. exact next recommended phase", - "id": "docs_audit_16_deep_audit_summary_6_exact_next_recommended_phase" + "norm_label": "6. exact next recommended phase" }, { "label": "Blocked Commands & Reasons", @@ -40334,10 +40337,10 @@ "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": 93, "community_name": "Deep Audit Summary Report", - "norm_label": "blocked commands & reasons", - "id": "docs_audit_16_deep_audit_summary_blocked_commands_reasons" + "norm_label": "blocked commands & reasons" }, { "label": "By Confidence", @@ -40345,10 +40348,10 @@ "source_file": "docs/audit/16-deep-audit-summary.md", "source_location": "L21", "_origin": "ast", + "id": "docs_audit_16_deep_audit_summary_by_confidence", "community": 93, "community_name": "Deep Audit Summary Report", - "norm_label": "by confidence", - "id": "docs_audit_16_deep_audit_summary_by_confidence" + "norm_label": "by confidence" }, { "label": "By Domain", @@ -40356,10 +40359,10 @@ "source_file": "docs/audit/16-deep-audit-summary.md", "source_location": "L27", "_origin": "ast", + "id": "docs_audit_16_deep_audit_summary_by_domain", "community": 93, "community_name": "Deep Audit Summary Report", - "norm_label": "by domain", - "id": "docs_audit_16_deep_audit_summary_by_domain" + "norm_label": "by domain" }, { "label": "By Severity", @@ -40367,10 +40370,10 @@ "source_file": "docs/audit/16-deep-audit-summary.md", "source_location": "L14", "_origin": "ast", + "id": "docs_audit_16_deep_audit_summary_by_severity", "community": 93, "community_name": "Deep Audit Summary Report", - "norm_label": "by severity", - "id": "docs_audit_16_deep_audit_summary_by_severity" + "norm_label": "by severity" }, { "label": "Deep Audit Summary Report", @@ -40378,10 +40381,10 @@ "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": 93, "community_name": "Deep Audit Summary Report", - "norm_label": "deep audit summary report", - "id": "docs_audit_16_deep_audit_summary_deep_audit_summary_report" + "norm_label": "deep audit summary report" }, { "label": "Executed Commands & Results", @@ -40389,10 +40392,10 @@ "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": 93, "community_name": "Deep Audit Summary Report", - "norm_label": "executed commands & results", - "id": "docs_audit_16_deep_audit_summary_executed_commands_results" + "norm_label": "executed commands & results" }, { "label": "Inspected Scopes", @@ -40400,10 +40403,10 @@ "source_file": "docs/audit/16-deep-audit-summary.md", "source_location": "L43", "_origin": "ast", + "id": "docs_audit_16_deep_audit_summary_inspected_scopes", "community": 93, "community_name": "Deep Audit Summary Report", - "norm_label": "inspected scopes", - "id": "docs_audit_16_deep_audit_summary_inspected_scopes" + "norm_label": "inspected scopes" }, { "label": "dependencies", @@ -40411,10 +40414,10 @@ "source_file": "frontend/application/package.json", "source_location": "L11", "_origin": "ast", + "id": "frontend_application_package_dependencies", "community": 94, "community_name": "dependencies", - "norm_label": "dependencies", - "id": "frontend_application_package_dependencies" + "norm_label": "dependencies" }, { "label": "axios", @@ -40422,10 +40425,10 @@ "source_file": "frontend/application/package.json", "source_location": "L12", "_origin": "ast", + "id": "frontend_application_package_dependencies_axios", "community": 94, "community_name": "dependencies", - "norm_label": "axios", - "id": "frontend_application_package_dependencies_axios" + "norm_label": "axios" }, { "label": "lucide-react", @@ -40433,10 +40436,10 @@ "source_file": "frontend/application/package.json", "source_location": "L13", "_origin": "ast", + "id": "frontend_application_package_dependencies_lucide_react", "community": 94, "community_name": "dependencies", - "norm_label": "lucide-react", - "id": "frontend_application_package_dependencies_lucide_react" + "norm_label": "lucide-react" }, { "label": "motion", @@ -40444,10 +40447,10 @@ "source_file": "frontend/application/package.json", "source_location": "L14", "_origin": "ast", + "id": "frontend_application_package_dependencies_motion", "community": 94, "community_name": "dependencies", - "norm_label": "motion", - "id": "frontend_application_package_dependencies_motion" + "norm_label": "motion" }, { "label": "next", @@ -40455,10 +40458,10 @@ "source_file": "frontend/application/package.json", "source_location": "L15", "_origin": "ast", + "id": "frontend_application_package_dependencies_next", "community": 94, "community_name": "dependencies", - "norm_label": "next", - "id": "frontend_application_package_dependencies_next" + "norm_label": "next" }, { "label": "react", @@ -40466,10 +40469,10 @@ "source_file": "frontend/application/package.json", "source_location": "L16", "_origin": "ast", + "id": "frontend_application_package_dependencies_react", "community": 94, "community_name": "dependencies", - "norm_label": "react", - "id": "frontend_application_package_dependencies_react" + "norm_label": "react" }, { "label": "react-dom", @@ -40477,10 +40480,10 @@ "source_file": "frontend/application/package.json", "source_location": "L17", "_origin": "ast", + "id": "frontend_application_package_dependencies_react_dom", "community": 94, "community_name": "dependencies", - "norm_label": "react-dom", - "id": "frontend_application_package_dependencies_react_dom" + "norm_label": "react-dom" }, { "label": "sonner", @@ -40488,10 +40491,10 @@ "source_file": "frontend/application/package.json", "source_location": "L18", "_origin": "ast", + "id": "frontend_application_package_dependencies_sonner", "community": 94, "community_name": "dependencies", - "norm_label": "sonner", - "id": "frontend_application_package_dependencies_sonner" + "norm_label": "sonner" }, { "label": "zustand", @@ -40499,10 +40502,10 @@ "source_file": "frontend/application/package.json", "source_location": "L19", "_origin": "ast", + "id": "frontend_application_package_dependencies_zustand", "community": 94, "community_name": "dependencies", - "norm_label": "zustand", - "id": "frontend_application_package_dependencies_zustand" + "norm_label": "zustand" }, { "label": "axios", @@ -40510,10 +40513,10 @@ "source_file": "frontend/application/package.json", "source_location": "L12", "_origin": "ast", + "id": "frontend_application_package_json_axios", "community": 94, "community_name": "dependencies", - "norm_label": "axios", - "id": "frontend_application_package_json_axios" + "norm_label": "axios" }, { "label": "lucide-react", @@ -40521,10 +40524,10 @@ "source_file": "frontend/application/package.json", "source_location": "L13", "_origin": "ast", + "id": "frontend_application_package_json_lucide_react", "community": 94, "community_name": "dependencies", - "norm_label": "lucide-react", - "id": "frontend_application_package_json_lucide_react" + "norm_label": "lucide-react" }, { "label": "react", @@ -40532,10 +40535,10 @@ "source_file": "frontend/application/package.json", "source_location": "L16", "_origin": "ast", + "id": "frontend_application_package_json_react", "community": 94, "community_name": "dependencies", - "norm_label": "react", - "id": "frontend_application_package_json_react" + "norm_label": "react" }, { "label": "react-dom", @@ -40543,10 +40546,10 @@ "source_file": "frontend/application/package.json", "source_location": "L17", "_origin": "ast", + "id": "frontend_application_package_json_react_dom", "community": 94, "community_name": "dependencies", - "norm_label": "react-dom", - "id": "frontend_application_package_json_react_dom" + "norm_label": "react-dom" }, { "label": "zustand", @@ -40554,10 +40557,10 @@ "source_file": "frontend/application/package.json", "source_location": "L19", "_origin": "ast", + "id": "frontend_application_package_json_zustand", "community": 94, "community_name": "dependencies", - "norm_label": "zustand", - "id": "frontend_application_package_json_zustand" + "norm_label": "zustand" }, { "label": "motion", @@ -40565,10 +40568,10 @@ "source_file": "frontend/application/package.json", "source_location": "L14", "_origin": "ast", + "id": "motion", "community": 94, "community_name": "dependencies", - "norm_label": "motion", - "id": "motion" + "norm_label": "motion" }, { "label": "next", @@ -40576,10 +40579,10 @@ "source_file": "frontend/application/package.json", "source_location": "L15", "_origin": "ast", + "id": "next", "community": 94, "community_name": "dependencies", - "norm_label": "next", - "id": "next" + "norm_label": "next" }, { "label": "sonner", @@ -40587,10 +40590,10 @@ "source_file": "frontend/application/package.json", "source_location": "L18", "_origin": "ast", + "id": "sonner", "community": 94, "community_name": "dependencies", - "norm_label": "sonner", - "id": "sonner" + "norm_label": "sonner" }, { "label": "04_architect.md", @@ -40598,10 +40601,10 @@ "source_file": ".ai_agency/agents/04_architect.md", "source_location": "L1", "_origin": "ast", + "id": "ai_agency_agents_04_architect", "community": 95, "community_name": "Operational Rules & Boundaries", - "norm_label": "04_architect.md", - "id": "ai_agency_agents_04_architect" + "norm_label": "04_architect.md" }, { "label": "1. Stack Detection (Brownfield)", @@ -40609,10 +40612,10 @@ "source_file": ".ai_agency/agents/04_architect.md", "source_location": "L20", "_origin": "ast", + "id": "ai_agency_agents_04_architect_1_stack_detection_brownfield", "community": 95, "community_name": "Operational Rules & Boundaries", - "norm_label": "1. stack detection (brownfield)", - "id": "ai_agency_agents_04_architect_1_stack_detection_brownfield" + "norm_label": "1. stack detection (brownfield)" }, { "label": "2. Stack Selection (Greenfield)", @@ -40620,10 +40623,10 @@ "source_file": ".ai_agency/agents/04_architect.md", "source_location": "L27", "_origin": "ast", + "id": "ai_agency_agents_04_architect_2_stack_selection_greenfield", "community": 95, "community_name": "Operational Rules & Boundaries", - "norm_label": "2. stack selection (greenfield)", - "id": "ai_agency_agents_04_architect_2_stack_selection_greenfield" + "norm_label": "2. stack selection (greenfield)" }, { "label": "3. Single Non-Negotiable Stack Choice", @@ -40631,10 +40634,10 @@ "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": 95, "community_name": "Operational Rules & Boundaries", - "norm_label": "3. single non-negotiable stack choice", - "id": "ai_agency_agents_04_architect_3_single_non_negotiable_stack_choice" + "norm_label": "3. single non-negotiable stack choice" }, { "label": "4. Tech Stack Must Be Written to state.json", @@ -40642,10 +40645,10 @@ "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": 95, "community_name": "Operational Rules & Boundaries", - "norm_label": "4. tech stack must be written to state.json", - "id": "ai_agency_agents_04_architect_4_tech_stack_must_be_written_to_state_json" + "norm_label": "4. tech stack must be written to state.json" }, { "label": "5. Directory Layout", @@ -40653,10 +40656,10 @@ "source_file": ".ai_agency/agents/04_architect.md", "source_location": "L61", "_origin": "ast", + "id": "ai_agency_agents_04_architect_5_directory_layout", "community": 95, "community_name": "Operational Rules & Boundaries", - "norm_label": "5. directory layout", - "id": "ai_agency_agents_04_architect_5_directory_layout" + "norm_label": "5. directory layout" }, { "label": "6. OpenAPI / API Contract", @@ -40664,10 +40667,10 @@ "source_file": ".ai_agency/agents/04_architect.md", "source_location": "L65", "_origin": "ast", + "id": "ai_agency_agents_04_architect_6_openapi_api_contract", "community": 95, "community_name": "Operational Rules & Boundaries", - "norm_label": "6. openapi / api contract", - "id": "ai_agency_agents_04_architect_6_openapi_api_contract" + "norm_label": "6. openapi / api contract" }, { "label": "7. Forbidden Actions", @@ -40675,10 +40678,10 @@ "source_file": ".ai_agency/agents/04_architect.md", "source_location": "L71", "_origin": "ast", + "id": "ai_agency_agents_04_architect_7_forbidden_actions", "community": 95, "community_name": "Operational Rules & Boundaries", - "norm_label": "7. forbidden actions", - "id": "ai_agency_agents_04_architect_7_forbidden_actions" + "norm_label": "7. forbidden actions" }, { "label": "Expected JSON Output Schema", @@ -40686,10 +40689,10 @@ "source_file": ".ai_agency/agents/04_architect.md", "source_location": "L88", "_origin": "ast", + "id": "ai_agency_agents_04_architect_expected_json_output_schema", "community": 95, "community_name": "Operational Rules & Boundaries", - "norm_label": "expected json output schema", - "id": "ai_agency_agents_04_architect_expected_json_output_schema" + "norm_label": "expected json output schema" }, { "label": "Operational Rules & Boundaries", @@ -40697,10 +40700,10 @@ "source_file": ".ai_agency/agents/04_architect.md", "source_location": "L18", "_origin": "ast", + "id": "ai_agency_agents_04_architect_operational_rules_boundaries", "community": 95, "community_name": "Operational Rules & Boundaries", - "norm_label": "operational rules & boundaries", - "id": "ai_agency_agents_04_architect_operational_rules_boundaries" + "norm_label": "operational rules & boundaries" }, { "label": "Required Output Artifacts (What files to write/update)", @@ -40708,10 +40711,10 @@ "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": 95, "community_name": "Operational Rules & Boundaries", - "norm_label": "required output artifacts (what files to write/update)", - "id": "ai_agency_agents_04_architect_required_output_artifacts_what_files_to_write_update" + "norm_label": "required output artifacts (what files to write/update)" }, { "label": "Role & Core Objective", @@ -40719,10 +40722,10 @@ "source_file": ".ai_agency/agents/04_architect.md", "source_location": "L1", "_origin": "ast", + "id": "ai_agency_agents_04_architect_role_core_objective", "community": 95, "community_name": "Operational Rules & Boundaries", - "norm_label": "role & core objective", - "id": "ai_agency_agents_04_architect_role_core_objective" + "norm_label": "role & core objective" }, { "label": "Strict Input Specifications (What files to read)", @@ -40730,10 +40733,10 @@ "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": 95, "community_name": "Operational Rules & Boundaries", - "norm_label": "strict input specifications (what files to read)", - "id": "ai_agency_agents_04_architect_strict_input_specifications_what_files_to_read" + "norm_label": "strict input specifications (what files to read)" }, { "label": "tsconfig.build.json", @@ -40741,10 +40744,10 @@ "source_file": "backend/tsconfig.build.json", "source_location": "L1", "_origin": "ast", + "id": "backend_tsconfig_build", "community": 96, "community_name": "exclude", - "norm_label": "tsconfig.build.json", - "id": "backend_tsconfig_build" + "norm_label": "tsconfig.build.json" }, { "label": "exclude", @@ -40752,10 +40755,10 @@ "source_file": "backend/tsconfig.build.json", "source_location": "L3", "_origin": "ast", + "id": "backend_tsconfig_build_exclude", "community": 96, "community_name": "exclude", - "norm_label": "exclude", - "id": "backend_tsconfig_build_exclude" + "norm_label": "exclude" }, { "label": "extends", @@ -40763,10 +40766,10 @@ "source_file": "backend/tsconfig.build.json", "source_location": "L2", "_origin": "ast", + "id": "backend_tsconfig_build_extends", "community": 96, "community_name": "exclude", - "norm_label": "extends", - "id": "backend_tsconfig_build_extends" + "norm_label": "extends" }, { "label": "dist", @@ -40774,10 +40777,10 @@ "source_file": "backend/tsconfig.build.json", "source_location": "L3", "_origin": "ast", + "id": "backend_tsconfig_build_json_ref_dist", "community": 96, "community_name": "exclude", - "norm_label": "dist", - "id": "backend_tsconfig_build_json_ref_dist" + "norm_label": "dist" }, { "label": "node_modules", @@ -40785,10 +40788,10 @@ "source_file": "backend/tsconfig.build.json", "source_location": "L3", "_origin": "ast", + "id": "backend_tsconfig_build_json_ref_node_modules", "community": 96, "community_name": "exclude", - "norm_label": "node_modules", - "id": "backend_tsconfig_build_json_ref_node_modules" + "norm_label": "node_modules" }, { "label": "prisma", @@ -40796,10 +40799,10 @@ "source_file": "backend/tsconfig.build.json", "source_location": "L3", "_origin": "ast", + "id": "backend_tsconfig_build_json_ref_prisma", "community": 96, "community_name": "exclude", - "norm_label": "prisma", - "id": "backend_tsconfig_build_json_ref_prisma" + "norm_label": "prisma" }, { "label": "**/*spec.ts", @@ -40807,10 +40810,10 @@ "source_file": "backend/tsconfig.build.json", "source_location": "L3", "_origin": "ast", + "id": "backend_tsconfig_build_json_ref_spec_ts", "community": 96, "community_name": "exclude", - "norm_label": "**/*spec.ts", - "id": "backend_tsconfig_build_json_ref_spec_ts" + "norm_label": "**/*spec.ts" }, { "label": "test", @@ -40818,10 +40821,10 @@ "source_file": "backend/tsconfig.build.json", "source_location": "L3", "_origin": "ast", + "id": "ref_test", "community": 96, "community_name": "exclude", - "norm_label": "test", - "id": "ref_test" + "norm_label": "test" }, { "label": "./tsconfig.json", @@ -40829,10 +40832,10 @@ "source_file": "backend/tsconfig.build.json", "source_location": "L2", "_origin": "ast", + "id": "ref_tsconfig_json", "community": 96, "community_name": "exclude", - "norm_label": "./tsconfig.json", - "id": "ref_tsconfig_json" + "norm_label": "./tsconfig.json" }, { "label": "jest", @@ -40840,10 +40843,10 @@ "source_file": "backend/package.json", "source_location": "L76", "_origin": "ast", + "id": "backend_package_jest", "community": 97, "community_name": "jest", - "norm_label": "jest", - "id": "backend_package_jest" + "norm_label": "jest" }, { "label": "collectCoverageFrom", @@ -40851,10 +40854,10 @@ "source_file": "backend/package.json", "source_location": "L87", "_origin": "ast", + "id": "backend_package_jest_collectcoveragefrom", "community": 97, "community_name": "jest", - "norm_label": "collectcoveragefrom", - "id": "backend_package_jest_collectcoveragefrom" + "norm_label": "collectcoveragefrom" }, { "label": "coverageDirectory", @@ -40862,10 +40865,10 @@ "source_file": "backend/package.json", "source_location": "L90", "_origin": "ast", + "id": "backend_package_jest_coveragedirectory", "community": 97, "community_name": "jest", - "norm_label": "coveragedirectory", - "id": "backend_package_jest_coveragedirectory" + "norm_label": "coveragedirectory" }, { "label": "moduleFileExtensions", @@ -40873,10 +40876,10 @@ "source_file": "backend/package.json", "source_location": "L77", "_origin": "ast", + "id": "backend_package_jest_modulefileextensions", "community": 97, "community_name": "jest", - "norm_label": "modulefileextensions", - "id": "backend_package_jest_modulefileextensions" + "norm_label": "modulefileextensions" }, { "label": "rootDir", @@ -40884,10 +40887,10 @@ "source_file": "backend/package.json", "source_location": "L82", "_origin": "ast", + "id": "backend_package_jest_rootdir", "community": 97, "community_name": "jest", - "norm_label": "rootdir", - "id": "backend_package_jest_rootdir" + "norm_label": "rootdir" }, { "label": "testEnvironment", @@ -40895,10 +40898,10 @@ "source_file": "backend/package.json", "source_location": "L91", "_origin": "ast", + "id": "backend_package_jest_testenvironment", "community": 97, "community_name": "jest", - "norm_label": "testenvironment", - "id": "backend_package_jest_testenvironment" + "norm_label": "testenvironment" }, { "label": "testRegex", @@ -40906,10 +40909,10 @@ "source_file": "backend/package.json", "source_location": "L83", "_origin": "ast", + "id": "backend_package_jest_testregex", "community": 97, "community_name": "jest", - "norm_label": "testregex", - "id": "backend_package_jest_testregex" + "norm_label": "testregex" }, { "label": "transform", @@ -40917,10 +40920,10 @@ "source_file": "backend/package.json", "source_location": "L84", "_origin": "ast", + "id": "backend_package_jest_transform", "community": 97, "community_name": "jest", - "norm_label": "transform", - "id": "backend_package_jest_transform" + "norm_label": "transform" }, { "label": "^.+\\\\.(t|j)s$", @@ -40928,10 +40931,10 @@ "source_file": "backend/package.json", "source_location": "L85", "_origin": "ast", + "id": "backend_package_transform_t_j_s", "community": 97, "community_name": "jest", - "norm_label": "^.+\\\\.(t|j)s$", - "id": "backend_package_transform_t_j_s" + "norm_label": "^.+\\\\.(t|j)s$" }, { "label": "ts", @@ -40939,10 +40942,10 @@ "source_file": "backend/package.json", "source_location": "L77", "_origin": "ast", + "id": "backend_package_json_ref_ts", "community": 97, "community_name": "jest", - "norm_label": "ts", - "id": "backend_package_json_ref_ts" + "norm_label": "ts" }, { "label": "js", @@ -40950,10 +40953,10 @@ "source_file": "backend/package.json", "source_location": "L77", "_origin": "ast", + "id": "ref_js", "community": 97, "community_name": "jest", - "norm_label": "js", - "id": "ref_js" + "norm_label": "js" }, { "label": "json", @@ -40961,10 +40964,10 @@ "source_file": "backend/package.json", "source_location": "L77", "_origin": "ast", + "id": "ref_json", "community": 97, "community_name": "jest", - "norm_label": "json", - "id": "ref_json" + "norm_label": "json" }, { "label": "**/*.(t|j)s", @@ -40972,21 +40975,76 @@ "source_file": "backend/package.json", "source_location": "L87", "_origin": "ast", + "id": "ref_t_j_s", "community": 97, "community_name": "jest", - "norm_label": "**/*.(t|j)s", - "id": "ref_t_j_s" + "norm_label": "**/*.(t|j)s" }, { - "label": "Injectable", + "label": "ApiBearerAuth", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", + "id": "backend_src_admin_admin_controller_ts_apibearerauth", "community": 98, - "community_name": "OrdersService", - "norm_label": "injectable", - "id": "backend_src_orders_orders_service_ts_injectable" + "community_name": "AdminController", + "norm_label": "apibearerauth" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_admin_controller_ts_apitags", + "community": 98, + "community_name": "AdminController", + "norm_label": "apitags" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_admin_controller_ts_controller", + "community": 98, + "community_name": "AdminController", + "norm_label": "controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_admin_controller_ts_delete", + "community": 98, + "community_name": "AdminController", + "norm_label": "delete" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_admin_controller_ts_param", + "community": 98, + "community_name": "AdminController", + "norm_label": "param" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_admin_controller_ts_useguards", + "community": 98, + "community_name": "AdminController", + "norm_label": "useguards" }, { "label": "phase3.2-change-log.md", @@ -40994,10 +41052,10 @@ "source_file": "docs/audit/phase3.2-change-log.md", "source_location": "L1", "_origin": "ast", + "id": "docs_audit_phase3_2_change_log", "community": 99, "community_name": "Comprehensive Change Log", - "norm_label": "phase3.2-change-log.md", - "id": "docs_audit_phase3_2_change_log" + "norm_label": "phase3.2-change-log.md" }, { "label": "10. `TASK-VERIFY-001`", @@ -41005,10 +41063,10 @@ "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": 99, "community_name": "Comprehensive Change Log", - "norm_label": "10. `task-verify-001`", - "id": "docs_audit_phase3_2_change_log_10_task_verify_001" + "norm_label": "10. `task-verify-001`" }, { "label": "1. `TASK-SEC-001`", @@ -41016,10 +41074,10 @@ "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": 99, "community_name": "Comprehensive Change Log", - "norm_label": "1. `task-sec-001`", - "id": "docs_audit_phase3_2_change_log_1_task_sec_001" + "norm_label": "1. `task-sec-001`" }, { "label": "2. `TASK-SEC-002`", @@ -41027,10 +41085,10 @@ "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": 99, "community_name": "Comprehensive Change Log", - "norm_label": "2. `task-sec-002`", - "id": "docs_audit_phase3_2_change_log_2_task_sec_002" + "norm_label": "2. `task-sec-002`" }, { "label": "3. `TASK-SEC-003`", @@ -41038,10 +41096,10 @@ "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": 99, "community_name": "Comprehensive Change Log", - "norm_label": "3. `task-sec-003`", - "id": "docs_audit_phase3_2_change_log_3_task_sec_003" + "norm_label": "3. `task-sec-003`" }, { "label": "4. `TASK-FIN-001`", @@ -41049,10 +41107,10 @@ "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": 99, "community_name": "Comprehensive Change Log", - "norm_label": "4. `task-fin-001`", - "id": "docs_audit_phase3_2_change_log_4_task_fin_001" + "norm_label": "4. `task-fin-001`" }, { "label": "5. `TASK-BUILD-001`", @@ -41060,10 +41118,10 @@ "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": 99, "community_name": "Comprehensive Change Log", - "norm_label": "5. `task-build-001`", - "id": "docs_audit_phase3_2_change_log_5_task_build_001" + "norm_label": "5. `task-build-001`" }, { "label": "6. `TASK-AUTH-001`", @@ -41071,10 +41129,10 @@ "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": 99, "community_name": "Comprehensive Change Log", - "norm_label": "6. `task-auth-001`", - "id": "docs_audit_phase3_2_change_log_6_task_auth_001" + "norm_label": "6. `task-auth-001`" }, { "label": "7. `TASK-FE-001`", @@ -41082,10 +41140,10 @@ "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": 99, "community_name": "Comprehensive Change Log", - "norm_label": "7. `task-fe-001`", - "id": "docs_audit_phase3_2_change_log_7_task_fe_001" + "norm_label": "7. `task-fe-001`" }, { "label": "8. `TASK-DEVOPS-001`", @@ -41093,10 +41151,10 @@ "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": 99, "community_name": "Comprehensive Change Log", - "norm_label": "8. `task-devops-001`", - "id": "docs_audit_phase3_2_change_log_8_task_devops_001" + "norm_label": "8. `task-devops-001`" }, { "label": "9. `TASK-DOC-001`", @@ -41104,10 +41162,10 @@ "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": 99, "community_name": "Comprehensive Change Log", - "norm_label": "9. `task-doc-001`", - "id": "docs_audit_phase3_2_change_log_9_task_doc_001" + "norm_label": "9. `task-doc-001`" }, { "label": "Comprehensive Change Log", @@ -41115,10 +41173,10 @@ "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": 99, "community_name": "Comprehensive Change Log", - "norm_label": "comprehensive change log", - "id": "docs_audit_phase3_2_change_log_comprehensive_change_log" + "norm_label": "comprehensive change log" }, { "label": "Phase 3.2 \u2014 Implementation Readiness Change Log", @@ -41126,10 +41184,10 @@ "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": 99, "community_name": "Comprehensive Change Log", - "norm_label": "phase 3.2 \u2014 implementation readiness change log", - "id": "docs_audit_phase3_2_change_log_phase_3_2_implementation_readiness_change_log" + "norm_label": "phase 3.2 \u2014 implementation readiness change log" }, { "label": "Vazirmatn Authors", @@ -41550,9 +41608,9 @@ "source_location": "L106", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_orchestrate_cmd_next_task", - "target": "ai_agency_orchestrate_load_json" + "target": "ai_agency_orchestrate_load_json", + "confidence_score": 1.0 }, { "relation": "calls", @@ -41562,9 +41620,9 @@ "source_location": "L76", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_orchestrate_cmd_progress", - "target": "ai_agency_orchestrate_load_json" + "target": "ai_agency_orchestrate_load_json", + "confidence_score": 1.0 }, { "relation": "calls", @@ -41574,9 +41632,9 @@ "source_location": "L177", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_orchestrate_cmd_reset", - "target": "ai_agency_orchestrate_save_json" + "target": "ai_agency_orchestrate_save_json", + "confidence_score": 1.0 }, { "relation": "calls", @@ -41586,9 +41644,9 @@ "source_location": "L42", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_orchestrate_cmd_status", - "target": "ai_agency_orchestrate_load_json" + "target": "ai_agency_orchestrate_load_json", + "confidence_score": 1.0 }, { "relation": "calls", @@ -41598,9 +41656,9 @@ "source_location": "L129", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_orchestrate_cmd_unblock", - "target": "ai_agency_orchestrate_load_json" + "target": "ai_agency_orchestrate_load_json", + "confidence_score": 1.0 }, { "relation": "calls", @@ -41610,9 +41668,9 @@ "source_location": "L138", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_orchestrate_cmd_unblock", - "target": "ai_agency_orchestrate_save_json" + "target": "ai_agency_orchestrate_save_json", + "confidence_score": 1.0 }, { "relation": "calls", @@ -41622,9 +41680,9 @@ "source_location": "L292", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_seed_products_main", - "target": "backend_prisma_seed_products_determinesuitablefor" + "target": "backend_prisma_seed_products_determinesuitablefor", + "confidence_score": 1.0 }, { "relation": "calls", @@ -41634,9 +41692,9 @@ "source_location": "L302", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_seed_products_main", - "target": "backend_prisma_seed_products_slugify" + "target": "backend_prisma_seed_products_slugify", + "confidence_score": 1.0 }, { "relation": "calls", @@ -41646,9 +41704,9 @@ "source_location": "L304", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_seed_products_main", - "target": "backend_prisma_seed_products_findorcreatecategory" + "target": "backend_prisma_seed_products_findorcreatecategory", + "confidence_score": 1.0 }, { "relation": "calls", @@ -41658,9 +41716,9 @@ "source_location": "L312", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_seed_products_main", - "target": "backend_prisma_seed_products_parsesize" + "target": "backend_prisma_seed_products_parsesize", + "confidence_score": 1.0 }, { "relation": "calls", @@ -41670,9 +41728,9 @@ "source_location": "L359", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_seed_products_main", - "target": "backend_prisma_seed_products_getproductimageurl" + "target": "backend_prisma_seed_products_getproductimageurl", + "confidence_score": 1.0 }, { "relation": "calls", @@ -41694,9 +41752,9 @@ "source_location": "L671", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service_adminservice_updatesettings", - "target": "backend_src_admin_admin_service_adminservice_getsettings" + "target": "backend_src_admin_admin_service_adminservice_getsettings", + "confidence_score": 1.0 }, { "relation": "calls", @@ -41718,9 +41776,9 @@ "source_location": "L59", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_ssl_service_sslservice_getstatus", - "target": "backend_src_admin_ssl_service_sslservice_getcertpath" + "target": "backend_src_admin_ssl_service_sslservice_getcertpath", + "confidence_score": 1.0 }, { "relation": "calls", @@ -41730,9 +41788,9 @@ "source_location": "L92", "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" + "target": "backend_src_admin_ssl_service_sslservice_toshamsi", + "confidence_score": 1.0 }, { "relation": "calls", @@ -41742,9 +41800,9 @@ "source_location": "L191", "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" + "target": "backend_src_admin_ssl_service_sslservice_toshamsi", + "confidence_score": 1.0 }, { "relation": "calls", @@ -41754,9 +41812,9 @@ "source_location": "L137", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_ssl_service_sslservice_updatecertificates", - "target": "backend_src_admin_ssl_service_sslservice_getcertpath" + "target": "backend_src_admin_ssl_service_sslservice_getcertpath", + "confidence_score": 1.0 }, { "relation": "calls", @@ -41766,9 +41824,9 @@ "source_location": "L138", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_ssl_service_sslservice_updatecertificates", - "target": "backend_src_admin_ssl_service_sslservice_getkeypath" + "target": "backend_src_admin_ssl_service_sslservice_getkeypath", + "confidence_score": 1.0 }, { "relation": "calls", @@ -41778,9 +41836,9 @@ "source_location": "L158", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_ssl_service_sslservice_updatecertificates", - "target": "backend_src_admin_ssl_service_sslservice_getstatus" + "target": "backend_src_admin_ssl_service_sslservice_getstatus", + "confidence_score": 1.0 }, { "relation": "calls", @@ -41862,9 +41920,9 @@ "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" + "target": "backend_src_banners_banners_service_bannersservice_update", + "confidence_score": 1.0 }, { "relation": "calls", @@ -41874,9 +41932,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_catch", - "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_translategenericmessage" + "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_translategenericmessage", + "confidence_score": 1.0 }, { "relation": "calls", @@ -41886,9 +41944,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_catch", - "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_deriveerrorcode" + "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_deriveerrorcode", + "confidence_score": 1.0 }, { "relation": "calls", @@ -41898,81 +41956,81 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_intercept", - "target": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_transform" + "target": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_transform", + "confidence_score": 1.0 }, { "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L412", + "source_location": "L478", "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" + "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": "L422", + "source_location": "L488", "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" + "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": "L435", + "source_location": "L501", "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" + "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": "L490", + "source_location": "L556", "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" + "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": "L500", + "source_location": "L566", "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" + "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": "L512", + "source_location": "L578", "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" + "target": "backend_src_common_services_sms_service_smsservice_updatelocalpattern", + "confidence_score": 1.0 }, { "relation": "calls", @@ -41982,225 +42040,237 @@ "source_location": "L301", "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" + "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": "L306", + "source_location": "L367", "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" + "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": "L310", + "source_location": "L372", "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" + "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": "L915", + "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_parsepatternsxml", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "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_sendb2bnotification", - "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig" + "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": "L916", + "source_location": "L982", "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" + "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": "L881", + "source_location": "L947", "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_getsmsconfig" + "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": "L883", + "source_location": "L949", "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" + "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": "L863", + "source_location": "L929", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_sendotp", - "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig" + "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": "L864", + "source_location": "L930", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_sendotp", - "target": "backend_src_common_services_sms_service_smsservice_sendpatternsms" + "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": "L610", + "source_location": "L676", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_sendpatternsms", - "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig" + "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": "L615", + "source_location": "L681", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_sendpatternsms", - "target": "backend_src_common_services_sms_service_smsservice_recordlog" + "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": "L932", + "source_location": "L1000", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_sendpetcarereminder", - "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig" + "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": "L934", + "source_location": "L998", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_sendpetcarereminder", - "target": "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": "L899", + "source_location": "L965", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_sendshippingnotification", - "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig" + "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": "L900", + "source_location": "L966", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_sendshippingnotification", - "target": "backend_src_common_services_sms_service_smsservice_sendpatternsms" + "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": "L946", + "source_location": "L1012", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_sendsms", - "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig" + "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": "L948", + "source_location": "L1014", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_sendsms", - "target": "backend_src_common_services_sms_service_smsservice_recordlog" + "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": "L746", + "source_location": "L812", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_testsms", - "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig" + "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": "L750", + "source_location": "L816", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_testsms", - "target": "backend_src_common_services_sms_service_smsservice_recordlog" + "target": "backend_src_common_services_sms_service_smsservice_recordlog", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42210,9 +42280,9 @@ "source_location": "L178", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_contact_contact_service_contactservice_updatecontactinfoitems", - "target": "backend_src_contact_contact_service_contactservice_getcontactinfo" + "target": "backend_src_contact_contact_service_contactservice_getcontactinfo", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42222,9 +42292,9 @@ "source_location": "L96", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_doctors_doctors_service_doctorsservice_remove", - "target": "backend_src_doctors_doctors_service_doctorsservice_findone" + "target": "backend_src_doctors_doctors_service_doctorsservice_findone", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42234,9 +42304,9 @@ "source_location": "L87", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_doctors_doctors_service_doctorsservice_update", - "target": "backend_src_doctors_doctors_service_doctorsservice_findone" + "target": "backend_src_doctors_doctors_service_doctorsservice_findone", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42246,9 +42316,9 @@ "source_location": "L167", "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" + "target": "backend_src_orders_orders_service_ordersservice_validatecoupon", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42258,9 +42328,9 @@ "source_location": "L186", "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" + "target": "backend_src_orders_orders_service_ordersservice_generatetrackingnumber", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42270,9 +42340,9 @@ "source_location": "L484", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_service_ordersservice_retrypayment", - "target": "backend_src_orders_orders_service_ordersservice_create" + "target": "backend_src_orders_orders_service_ordersservice_create", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42282,9 +42352,9 @@ "source_location": "L849", "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" + "target": "backend_src_payment_payment_service_paymentservice_verifyandprocess", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42294,9 +42364,9 @@ "source_location": "L576", "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" + "target": "backend_src_payment_payment_service_paymentservice_verifyandprocess", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42306,9 +42376,9 @@ "source_location": "L293", "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" + "target": "backend_src_payment_zibal_service_zibalservice_getmerchant", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42318,9 +42388,9 @@ "source_location": "L143", "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" + "target": "backend_src_payment_zibal_service_zibalservice_getfrontendurl", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42330,9 +42400,9 @@ "source_location": "L253", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice_inquirypayment", - "target": "backend_src_payment_zibal_service_zibalservice_getmerchant" + "target": "backend_src_payment_zibal_service_zibalservice_getmerchant", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42342,9 +42412,9 @@ "source_location": "L260", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice_inquirypayment", - "target": "backend_src_payment_zibal_service_zibalservice_callwithretry" + "target": "backend_src_payment_zibal_service_zibalservice_callwithretry", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42354,9 +42424,9 @@ "source_location": "L158", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice_requestpayment", - "target": "backend_src_payment_zibal_service_zibalservice_getmerchant" + "target": "backend_src_payment_zibal_service_zibalservice_getmerchant", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42366,9 +42436,9 @@ "source_location": "L171", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice_requestpayment", - "target": "backend_src_payment_zibal_service_zibalservice_callwithretry" + "target": "backend_src_payment_zibal_service_zibalservice_callwithretry", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42378,9 +42448,9 @@ "source_location": "L213", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice_verifypayment", - "target": "backend_src_payment_zibal_service_zibalservice_getmerchant" + "target": "backend_src_payment_zibal_service_zibalservice_getmerchant", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42390,9 +42460,9 @@ "source_location": "L220", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice_verifypayment", - "target": "backend_src_payment_zibal_service_zibalservice_callwithretry" + "target": "backend_src_payment_zibal_service_zibalservice_callwithretry", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42402,9 +42472,9 @@ "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" + "target": "backend_src_pets_pets_service_petsservice_findone", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42414,9 +42484,9 @@ "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" + "target": "backend_src_pets_pets_service_petsservice_create", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42426,9 +42496,9 @@ "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" + "target": "backend_src_pets_pets_service_petsservice_findone", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42438,9 +42508,9 @@ "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" + "target": "backend_src_pets_pets_service_petsservice_create", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42450,9 +42520,9 @@ "source_location": "L192", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_service_petsservice_remove", - "target": "backend_src_pets_pets_service_petsservice_findone" + "target": "backend_src_pets_pets_service_petsservice_findone", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42462,9 +42532,9 @@ "source_location": "L217", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_service_petsservice_togglereminder", - "target": "backend_src_pets_pets_service_petsservice_findone" + "target": "backend_src_pets_pets_service_petsservice_findone", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42474,9 +42544,9 @@ "source_location": "L250", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_service_petsservice_togglereminder", - "target": "backend_src_pets_pets_service_petsservice_create" + "target": "backend_src_pets_pets_service_petsservice_create", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42486,9 +42556,9 @@ "source_location": "L162", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_service_petsservice_update", - "target": "backend_src_pets_pets_service_petsservice_findone" + "target": "backend_src_pets_pets_service_petsservice_findone", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42498,9 +42568,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_prisma_prisma_service_prismaservice_onmoduleinit", - "target": "backend_src_prisma_prisma_service_prismaservice_ensuretablesexist" + "target": "backend_src_prisma_prisma_service_prismaservice_ensuretablesexist", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42510,9 +42580,9 @@ "source_location": "L304", "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" + "target": "backend_src_settings_settings_service_settingsservice_getuitexts", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42522,9 +42592,9 @@ "source_location": "L201", "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" + "target": "backend_src_settings_settings_service_settingsservice_getuitexts", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42534,9 +42604,9 @@ "source_location": "L121", "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" + "target": "backend_src_settings_settings_service_settingsservice_seeddefaultuitexts", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42546,9 +42616,9 @@ "source_location": "L95", "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" + "target": "backend_src_settings_settings_service_settingsservice_seeddefaultuitexts", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42558,9 +42628,9 @@ "source_location": "L195", "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" + "target": "backend_src_settings_settings_service_settingsservice_updateuitext", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42570,9 +42640,9 @@ "source_location": "L360", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service_settingsservice_updatecategorysetting", - "target": "backend_src_settings_settings_service_settingsservice_updatebulkuitexts" + "target": "backend_src_settings_settings_service_settingsservice_updatebulkuitexts", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42582,9 +42652,9 @@ "source_location": "L267", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service_settingsservice_updatefinancialsettings", - "target": "backend_src_settings_settings_service_settingsservice_updatebulkuitexts" + "target": "backend_src_settings_settings_service_settingsservice_updatebulkuitexts", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42594,9 +42664,9 @@ "source_location": "L268", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service_settingsservice_updatefinancialsettings", - "target": "backend_src_settings_settings_service_settingsservice_getfinancialsettings" + "target": "backend_src_settings_settings_service_settingsservice_getfinancialsettings", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42606,9 +42676,9 @@ "source_location": "L33", "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" + "target": "backend_src_tickets_tickets_service_ticketsservice_generateticketnumber", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42618,9 +42688,9 @@ "source_location": "L259", "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" + "target": "backend_src_users_users_service_usersservice_update", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42630,9 +42700,9 @@ "source_location": "L280", "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" + "target": "backend_src_users_users_service_usersservice_update", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42654,9 +42724,9 @@ "source_location": "L233", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_service_usersservice_updateaddress", - "target": "backend_src_users_users_service_usersservice_update" + "target": "backend_src_users_users_service_usersservice_update", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42666,9 +42736,9 @@ "source_location": "L106", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_videos_videos_service_videosservice_remove", - "target": "backend_src_videos_videos_service_videosservice_findone" + "target": "backend_src_videos_videos_service_videosservice_findone", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42678,9 +42748,9 @@ "source_location": "L94", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_videos_videos_service_videosservice_update", - "target": "backend_src_videos_videos_service_videosservice_findone" + "target": "backend_src_videos_videos_service_videosservice_findone", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42714,9 +42784,9 @@ "source_location": "L238", "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_getfiletype" + "target": "frontend_admin_panel_src_components_ui_mediaselector_getfiletype", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42726,9 +42796,9 @@ "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" + "target": "frontend_admin_panel_src_components_ui_priceinput_toenglishdigits", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42738,9 +42808,9 @@ "source_location": "L52", "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_formatpricewithcommas" + "target": "frontend_admin_panel_src_components_ui_priceinput_formatpricewithcommas", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42750,9 +42820,9 @@ "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" + "target": "frontend_admin_panel_src_components_ui_priceinput_toenglishdigits", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42774,9 +42844,9 @@ "source_location": "L253", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_media_mediamanager", - "target": "frontend_admin_panel_src_pages_media_getfiletype" + "target": "frontend_admin_panel_src_pages_media_getfiletype", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42810,9 +42880,9 @@ "source_location": "L288", "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" + "target": "frontend_admin_panel_src_pages_reviews_topersiandigits", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42822,9 +42892,9 @@ "source_location": "L44", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_blog_page_blog", - "target": "frontend_application_app_blog_page_getblogs" + "target": "frontend_application_app_blog_page_getblogs", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42834,9 +42904,9 @@ "source_location": "L59", "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" + "target": "frontend_application_app_blog_slug_page_getblog", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42846,9 +42916,9 @@ "source_location": "L34", "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" + "target": "frontend_application_app_blog_slug_page_getblog", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42918,9 +42988,9 @@ "source_location": "L56", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_page_home", - "target": "frontend_application_app_page_gethomedata" + "target": "frontend_application_app_page_gethomedata", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42930,9 +43000,9 @@ "source_location": "L121", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_payment_verify_page_verifycontent", - "target": "frontend_application_lib_utils_cn" + "target": "frontend_application_lib_utils_cn", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42942,9 +43012,9 @@ "source_location": "L189", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_payment_verify_page_verifycontent", - "target": "frontend_application_lib_utils_topersian" + "target": "frontend_application_lib_utils_topersian", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42954,9 +43024,9 @@ "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" + "target": "frontend_application_lib_store_cartstore_usecartstore", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42966,9 +43036,9 @@ "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" + "target": "frontend_application_lib_store_userstore_useuserstore", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42978,9 +43048,9 @@ "source_location": "L20", "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" + "target": "frontend_application_app_wiki_slug_page_getwikiterm", + "confidence_score": 1.0 }, { "relation": "calls", @@ -42990,9 +43060,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_wiki_slug_page_wikitermpage", - "target": "frontend_application_app_wiki_slug_page_getwikiterm" + "target": "frontend_application_app_wiki_slug_page_getwikiterm", + "confidence_score": 1.0 }, { "relation": "calls", @@ -43014,9 +43084,9 @@ "source_location": "L192", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_archivepage_archiveproductcard", - "target": "frontend_application_lib_utils_topersian" + "target": "frontend_application_lib_utils_topersian", + "confidence_score": 1.0 }, { "relation": "calls", @@ -43026,9 +43096,9 @@ "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" + "target": "frontend_application_lib_store_cartstore_usecartstore", + "confidence_score": 1.0 }, { "relation": "calls", @@ -43038,9 +43108,9 @@ "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" + "target": "frontend_application_lib_store_usepetstore_usepetstore", + "confidence_score": 1.0 }, { "relation": "calls", @@ -43050,9 +43120,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" + "target": "frontend_application_components_authmodal_extractotpfromtext", + "confidence_score": 1.0 }, { "relation": "calls", @@ -43110,9 +43180,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_authmodal_extractotpfromtext", - "target": "frontend_application_lib_utils_toenglishdigits" + "target": "frontend_application_lib_utils_toenglishdigits", + "confidence_score": 1.0 }, { "relation": "calls", @@ -43218,9 +43288,9 @@ "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" + "target": "frontend_application_components_catalog_catalogpagespread_getformbadge", + "confidence_score": 1.0 }, { "relation": "calls", @@ -43230,9 +43300,9 @@ "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" + "target": "frontend_application_components_catalog_catalogpagespread_getspeciesbadge", + "confidence_score": 1.0 }, { "relation": "calls", @@ -43242,9 +43312,9 @@ "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" + "target": "frontend_application_components_catalog_flipbookcatalog_normalizesearchtext", + "confidence_score": 1.0 }, { "relation": "calls", @@ -43350,9 +43420,9 @@ "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" + "target": "frontend_application_lib_store_settingsstore_usesettingsstore", + "confidence_score": 1.0 }, { "relation": "calls", @@ -43362,9 +43432,9 @@ "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" + "target": "frontend_application_lib_store_usepetstore_usepetstore", + "confidence_score": 1.0 }, { "relation": "calls", @@ -43374,9 +43444,9 @@ "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" + "target": "frontend_application_lib_store_cartstore_usecartstore", + "confidence_score": 1.0 }, { "relation": "calls", @@ -43494,9 +43564,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_hero_statcounter", - "target": "frontend_application_lib_utils_topersian" + "target": "frontend_application_lib_utils_topersian", + "confidence_score": 1.0 }, { "relation": "calls", @@ -43506,9 +43576,9 @@ "source_location": "L90", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_ingredientwiki_ingredientwiki", - "target": "frontend_application_components_ingredientwiki_formatingredientdisplayname" + "target": "frontend_application_components_ingredientwiki_formatingredientdisplayname", + "confidence_score": 1.0 }, { "relation": "calls", @@ -43710,9 +43780,9 @@ "source_location": "L122", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productpage_productpage", - "target": "frontend_application_components_productpage_usecalculatorstore" + "target": "frontend_application_components_productpage_usecalculatorstore", + "confidence_score": 1.0 }, { "relation": "calls", @@ -44022,9 +44092,9 @@ "source_location": "L271", "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" + "target": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend", + "confidence_score": 1.0 }, { "relation": "calls", @@ -44034,9 +44104,9 @@ "source_location": "L251", "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" + "target": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend", + "confidence_score": 1.0 }, { "relation": "calls", @@ -44046,9 +44116,9 @@ "source_location": "L261", "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" + "target": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend", + "confidence_score": 1.0 }, { "relation": "calls", @@ -44058,9 +44128,9 @@ "source_location": "L239", "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" + "target": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend", + "confidence_score": 1.0 }, { "relation": "calls", @@ -44070,9 +44140,9 @@ "weight": 1.0, "context": "call", "_origin": "ast", - "confidence_score": 1.0, "source": "gitea_scripts_with_vpn_cleanup", - "target": "gitea_scripts_with_vpn_log" + "target": "gitea_scripts_with_vpn_log", + "confidence_score": 1.0 }, { "relation": "calls", @@ -44082,9 +44152,9 @@ "weight": 1.0, "context": "call", "_origin": "ast", - "confidence_score": 1.0, "source": "gitea_scripts_with_vpn_cleanup", - "target": "gitea_scripts_with_vpn_stop_vpn" + "target": "gitea_scripts_with_vpn_stop_vpn", + "confidence_score": 1.0 }, { "relation": "calls", @@ -44094,9 +44164,9 @@ "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" + "target": "gitea_scripts_with_vpn_start_vpn", + "confidence_score": 1.0 }, { "relation": "calls", @@ -44106,9 +44176,9 @@ "weight": 1.0, "context": "call", "_origin": "ast", - "confidence_score": 1.0, "source": "gitea_scripts_with_vpn_sh__entry", - "target": "gitea_scripts_with_vpn_log" + "target": "gitea_scripts_with_vpn_log", + "confidence_score": 1.0 }, { "relation": "calls", @@ -44118,9 +44188,9 @@ "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" + "target": "gitea_scripts_with_vpn_vpn_is_up", + "confidence_score": 1.0 }, { "relation": "calls", @@ -44130,9 +44200,9 @@ "weight": 1.0, "context": "call", "_origin": "ast", - "confidence_score": 1.0, "source": "gitea_scripts_with_vpn_start_vpn", - "target": "gitea_scripts_with_vpn_log" + "target": "gitea_scripts_with_vpn_log", + "confidence_score": 1.0 }, { "relation": "calls", @@ -44142,9 +44212,9 @@ "weight": 1.0, "context": "call", "_origin": "ast", - "confidence_score": 1.0, "source": "gitea_scripts_with_vpn_stop_vpn", - "target": "gitea_scripts_with_vpn_log" + "target": "gitea_scripts_with_vpn_log", + "confidence_score": 1.0 }, { "relation": "calls", @@ -44154,9 +44224,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "scripts_open_browsers_checkandopen", - "target": "scripts_open_browsers_openurl" + "target": "scripts_open_browsers_openurl", + "confidence_score": 1.0 }, { "relation": "contains", @@ -44166,9 +44236,9 @@ "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" + "target": "frontend_application_components_contactformclient_contactformclient_fetchcontactinfo", + "confidence_score": 1.0 }, { "relation": "contains", @@ -44178,9 +44248,9 @@ "source_location": "L282", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_orderdetailsmodal_orderdetailsmodal", - "target": "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatusicon" + "target": "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatusicon", + "confidence_score": 1.0 }, { "relation": "contains", @@ -44190,9 +44260,9 @@ "source_location": "L302", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_orderdetailsmodal_orderdetailsmodal", - "target": "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatuslabel" + "target": "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatuslabel", + "confidence_score": 1.0 }, { "relation": "contains", @@ -44202,9 +44272,9 @@ "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" + "target": "frontend_application_components_testimonialssection_testimonialssection_loadtestimonials", + "confidence_score": 1.0 }, { "relation": "references", @@ -44214,9 +44284,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_apitags", + "confidence_score": 1.0 }, { "relation": "references", @@ -44226,9 +44296,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -44238,9 +44308,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -44250,9 +44320,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_controller", + "confidence_score": 1.0 }, { "relation": "references", @@ -44262,9 +44332,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -44274,9 +44344,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -44286,9 +44356,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -44298,9 +44368,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -44310,9 +44380,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -44322,9 +44392,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -44334,9 +44404,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -44346,9 +44416,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -44358,9 +44428,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -44370,9 +44440,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -44382,9 +44452,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -44394,9 +44464,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -44406,9 +44476,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -44418,9 +44488,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -44430,9 +44500,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -44442,9 +44512,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -44454,9 +44524,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_delete", + "confidence_score": 1.0 }, { "relation": "references", @@ -44466,9 +44536,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -44478,9 +44548,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -44490,9 +44560,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_delete", + "confidence_score": 1.0 }, { "relation": "references", @@ -44502,9 +44572,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -44514,9 +44584,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -44526,9 +44596,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_delete", + "confidence_score": 1.0 }, { "relation": "references", @@ -44538,9 +44608,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -44550,9 +44620,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -44562,9 +44632,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_delete", + "confidence_score": 1.0 }, { "relation": "references", @@ -44574,9 +44644,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -44586,9 +44656,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -44598,9 +44668,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -44610,9 +44680,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -44622,9 +44692,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_apiquery", + "confidence_score": 1.0 }, { "relation": "references", @@ -44634,9 +44704,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_query", + "confidence_score": 1.0 }, { "relation": "references", @@ -44646,9 +44716,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -44658,9 +44728,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -44670,9 +44740,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -44682,9 +44752,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -44694,9 +44764,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -44706,9 +44776,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -44718,9 +44788,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_apiquery", + "confidence_score": 1.0 }, { "relation": "references", @@ -44730,9 +44800,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_query", + "confidence_score": 1.0 }, { "relation": "references", @@ -44742,9 +44812,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -44754,9 +44824,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -44766,9 +44836,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_apiquery", + "confidence_score": 1.0 }, { "relation": "references", @@ -44778,9 +44848,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_query", + "confidence_score": 1.0 }, { "relation": "references", @@ -44790,9 +44860,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -44802,9 +44872,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -44814,9 +44884,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -44826,9 +44896,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -44838,9 +44908,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -44850,9 +44920,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -44862,9 +44932,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -44874,9 +44944,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_apiquery", + "confidence_score": 1.0 }, { "relation": "references", @@ -44886,9 +44956,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_query", + "confidence_score": 1.0 }, { "relation": "references", @@ -44898,9 +44968,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_put", + "confidence_score": 1.0 }, { "relation": "references", @@ -44910,9 +44980,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -44922,9 +44992,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -44934,9 +45004,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -44946,9 +45016,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_put", + "confidence_score": 1.0 }, { "relation": "references", @@ -44958,9 +45028,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -44970,9 +45040,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -44982,9 +45052,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -44994,9 +45064,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_put", + "confidence_score": 1.0 }, { "relation": "references", @@ -45006,9 +45076,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -45018,9 +45088,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -45030,9 +45100,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -45042,9 +45112,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_put", + "confidence_score": 1.0 }, { "relation": "references", @@ -45054,9 +45124,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -45066,9 +45136,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -45078,9 +45148,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -45090,9 +45160,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_put", + "confidence_score": 1.0 }, { "relation": "references", @@ -45102,9 +45172,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -45114,9 +45184,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -45126,9 +45196,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -45138,9 +45208,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_put", + "confidence_score": 1.0 }, { "relation": "references", @@ -45150,9 +45220,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -45162,9 +45232,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -45174,9 +45244,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_put", + "confidence_score": 1.0 }, { "relation": "references", @@ -45186,9 +45256,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -45198,9 +45268,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -45210,9 +45280,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -45222,9 +45292,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_put", + "confidence_score": 1.0 }, { "relation": "references", @@ -45234,9 +45304,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -45246,9 +45316,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -45258,9 +45328,9 @@ "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" + "target": "backend_src_admin_admin_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -45270,9 +45340,9 @@ "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" + "target": "backend_src_admin_admin_module_ts_module", + "confidence_score": 1.0 }, { "relation": "references", @@ -45282,9 +45352,9 @@ "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" + "target": "backend_src_admin_admin_service_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -45294,9 +45364,9 @@ "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" + "target": "backend_src_admin_blogs_controller_ts_apitags", + "confidence_score": 1.0 }, { "relation": "references", @@ -45306,9 +45376,9 @@ "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" + "target": "backend_src_admin_blogs_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -45318,9 +45388,9 @@ "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" + "target": "backend_src_admin_blogs_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -45330,9 +45400,9 @@ "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" + "target": "backend_src_admin_blogs_controller_ts_controller", + "confidence_score": 1.0 }, { "relation": "references", @@ -45342,9 +45412,9 @@ "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" + "target": "backend_src_admin_blogs_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -45354,9 +45424,9 @@ "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" + "target": "backend_src_admin_blogs_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -45366,9 +45436,9 @@ "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" + "target": "backend_src_admin_blogs_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -45378,9 +45448,9 @@ "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" + "target": "backend_src_admin_blogs_controller_ts_request", + "confidence_score": 1.0 }, { "relation": "references", @@ -45390,9 +45460,9 @@ "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" + "target": "backend_src_admin_blogs_controller_ts_delete", + "confidence_score": 1.0 }, { "relation": "references", @@ -45402,9 +45472,9 @@ "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" + "target": "backend_src_admin_blogs_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -45414,9 +45484,9 @@ "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" + "target": "backend_src_admin_blogs_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -45426,9 +45496,9 @@ "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" + "target": "backend_src_admin_blogs_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -45438,9 +45508,9 @@ "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" + "target": "backend_src_admin_blogs_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -45450,9 +45520,9 @@ "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" + "target": "backend_src_admin_blogs_controller_ts_apiquery", + "confidence_score": 1.0 }, { "relation": "references", @@ -45462,9 +45532,9 @@ "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" + "target": "backend_src_admin_blogs_controller_ts_query", + "confidence_score": 1.0 }, { "relation": "references", @@ -45474,9 +45544,9 @@ "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" + "target": "backend_src_admin_blogs_controller_ts_put", + "confidence_score": 1.0 }, { "relation": "references", @@ -45486,9 +45556,9 @@ "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" + "target": "backend_src_admin_blogs_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -45498,9 +45568,9 @@ "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" + "target": "backend_src_admin_blogs_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -45510,9 +45580,9 @@ "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" + "target": "backend_src_admin_blogs_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -45522,9 +45592,9 @@ "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" + "target": "backend_src_admin_blogs_service_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -45534,9 +45604,9 @@ "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" + "target": "backend_src_admin_categories_controller_ts_apitags", + "confidence_score": 1.0 }, { "relation": "references", @@ -45546,9 +45616,9 @@ "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" + "target": "backend_src_admin_categories_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -45558,9 +45628,9 @@ "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" + "target": "backend_src_admin_categories_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -45570,9 +45640,9 @@ "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" + "target": "backend_src_admin_categories_controller_ts_controller", + "confidence_score": 1.0 }, { "relation": "references", @@ -45582,9 +45652,9 @@ "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" + "target": "backend_src_admin_categories_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -45594,9 +45664,9 @@ "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" + "target": "backend_src_admin_categories_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -45606,9 +45676,9 @@ "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" + "target": "backend_src_admin_categories_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -45618,9 +45688,9 @@ "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" + "target": "backend_src_admin_categories_controller_ts_delete", + "confidence_score": 1.0 }, { "relation": "references", @@ -45630,9 +45700,9 @@ "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" + "target": "backend_src_admin_categories_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -45642,9 +45712,9 @@ "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" + "target": "backend_src_admin_categories_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -45654,9 +45724,9 @@ "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" + "target": "backend_src_admin_categories_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -45666,9 +45736,9 @@ "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" + "target": "backend_src_admin_categories_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -45678,9 +45748,9 @@ "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" + "target": "backend_src_admin_categories_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -45690,9 +45760,9 @@ "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" + "target": "backend_src_admin_categories_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -45702,9 +45772,9 @@ "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" + "target": "backend_src_admin_categories_controller_ts_apiquery", + "confidence_score": 1.0 }, { "relation": "references", @@ -45714,9 +45784,9 @@ "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" + "target": "backend_src_admin_categories_controller_ts_query", + "confidence_score": 1.0 }, { "relation": "references", @@ -45726,9 +45796,9 @@ "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" + "target": "backend_src_admin_categories_controller_ts_put", + "confidence_score": 1.0 }, { "relation": "references", @@ -45738,9 +45808,9 @@ "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" + "target": "backend_src_admin_categories_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -45750,9 +45820,9 @@ "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" + "target": "backend_src_admin_categories_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -45762,9 +45832,9 @@ "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" + "target": "backend_src_admin_categories_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -45774,9 +45844,9 @@ "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" + "target": "backend_src_admin_categories_service_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -45786,9 +45856,9 @@ "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" + "target": "backend_src_admin_dto_admin_query_dto_ts_apipropertyoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -45798,9 +45868,9 @@ "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" + "target": "backend_src_admin_dto_admin_query_dto_ts_isoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -45810,9 +45880,9 @@ "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" + "target": "backend_src_admin_dto_admin_query_dto_ts_isstring", + "confidence_score": 1.0 }, { "relation": "references", @@ -45822,9 +45892,9 @@ "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" + "target": "backend_src_admin_dto_product_dto_ts_isarray", + "confidence_score": 1.0 }, { "relation": "references", @@ -45834,9 +45904,9 @@ "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" + "target": "backend_src_admin_dto_product_dto_ts_isboolean", + "confidence_score": 1.0 }, { "relation": "references", @@ -45846,9 +45916,9 @@ "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" + "target": "backend_src_admin_dto_product_dto_ts_apipropertyoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -45858,9 +45928,9 @@ "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" + "target": "backend_src_admin_dto_product_dto_ts_isoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -45870,9 +45940,9 @@ "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" + "target": "backend_src_admin_dto_product_dto_ts_isstring", + "confidence_score": 1.0 }, { "relation": "references", @@ -45882,9 +45952,9 @@ "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" + "target": "backend_src_admin_dto_product_dto_ts_isnumber", + "confidence_score": 1.0 }, { "relation": "references", @@ -45894,9 +45964,9 @@ "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" + "target": "backend_src_admin_dto_user_dto_ts_apiproperty", + "confidence_score": 1.0 }, { "relation": "references", @@ -45906,9 +45976,9 @@ "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" + "target": "backend_src_admin_dto_user_dto_ts_isnotempty", + "confidence_score": 1.0 }, { "relation": "references", @@ -45918,9 +45988,9 @@ "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" + "target": "backend_src_admin_dto_user_dto_ts_isemail", + "confidence_score": 1.0 }, { "relation": "references", @@ -45930,9 +46000,9 @@ "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" + "target": "backend_src_admin_dto_user_dto_ts_minlength", + "confidence_score": 1.0 }, { "relation": "references", @@ -45942,9 +46012,9 @@ "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" + "target": "backend_src_admin_dto_user_dto_ts_isstring", + "confidence_score": 1.0 }, { "relation": "references", @@ -45954,9 +46024,9 @@ "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" + "target": "backend_src_admin_dto_user_dto_ts_apipropertyoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -45966,9 +46036,9 @@ "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" + "target": "backend_src_admin_dto_user_dto_ts_isoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -45978,9 +46048,9 @@ "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" + "target": "backend_src_admin_dto_user_dto_ts_isnumber", + "confidence_score": 1.0 }, { "relation": "references", @@ -45990,9 +46060,9 @@ "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" + "target": "backend_src_admin_dto_user_dto_ts_isemail", + "confidence_score": 1.0 }, { "relation": "references", @@ -46002,9 +46072,9 @@ "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" + "target": "backend_src_admin_dto_user_dto_ts_minlength", + "confidence_score": 1.0 }, { "relation": "references", @@ -46014,9 +46084,9 @@ "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" + "target": "backend_src_admin_dto_user_dto_ts_isstring", + "confidence_score": 1.0 }, { "relation": "references", @@ -46026,9 +46096,9 @@ "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" + "target": "backend_src_admin_dto_user_dto_ts_apipropertyoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -46038,9 +46108,9 @@ "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" + "target": "backend_src_admin_dto_user_dto_ts_isoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -46050,9 +46120,9 @@ "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" + "target": "backend_src_admin_dto_user_dto_ts_isnumber", + "confidence_score": 1.0 }, { "relation": "references", @@ -46062,9 +46132,9 @@ "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" + "target": "backend_src_admin_media_controller_ts_apitags", + "confidence_score": 1.0 }, { "relation": "references", @@ -46074,9 +46144,9 @@ "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" + "target": "backend_src_admin_media_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -46086,9 +46156,9 @@ "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" + "target": "backend_src_admin_media_controller_ts_controller", + "confidence_score": 1.0 }, { "relation": "references", @@ -46098,9 +46168,9 @@ "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" + "target": "backend_src_admin_media_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -46110,9 +46180,9 @@ "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" + "target": "backend_src_admin_media_controller_ts_delete", + "confidence_score": 1.0 }, { "relation": "references", @@ -46122,9 +46192,9 @@ "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" + "target": "backend_src_admin_media_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -46134,9 +46204,9 @@ "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" + "target": "backend_src_admin_media_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -46146,9 +46216,9 @@ "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" + "target": "backend_src_admin_media_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -46158,9 +46228,9 @@ "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" + "target": "backend_src_admin_media_controller_ts_delete", + "confidence_score": 1.0 }, { "relation": "references", @@ -46170,9 +46240,9 @@ "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" + "target": "backend_src_admin_media_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -46182,9 +46252,9 @@ "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" + "target": "backend_src_admin_media_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -46194,9 +46264,9 @@ "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" + "target": "backend_src_admin_media_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -46206,9 +46276,9 @@ "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" + "target": "backend_src_admin_media_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -46218,9 +46288,9 @@ "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" + "target": "backend_src_admin_media_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -46230,9 +46300,9 @@ "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" + "target": "backend_src_admin_media_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -46242,9 +46312,9 @@ "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" + "target": "backend_src_admin_media_controller_ts_put", + "confidence_score": 1.0 }, { "relation": "references", @@ -46254,9 +46324,9 @@ "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" + "target": "backend_src_admin_media_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -46266,9 +46336,9 @@ "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" + "target": "backend_src_admin_media_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -46278,9 +46348,9 @@ "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" + "target": "backend_src_admin_media_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -46290,9 +46360,9 @@ "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" + "target": "backend_src_admin_media_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -46302,9 +46372,9 @@ "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" + "target": "backend_src_admin_media_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -46314,9 +46384,9 @@ "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" + "target": "backend_src_admin_media_controller_ts_useinterceptors", + "confidence_score": 1.0 }, { "relation": "references", @@ -46326,9 +46396,9 @@ "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" + "target": "backend_src_admin_media_controller_ts_uploadedfile", + "confidence_score": 1.0 }, { "relation": "references", @@ -46338,9 +46408,9 @@ "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" + "target": "backend_src_admin_media_service_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -46350,9 +46420,9 @@ "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" + "target": "backend_src_admin_pets_controller_ts_apitags", + "confidence_score": 1.0 }, { "relation": "references", @@ -46362,9 +46432,9 @@ "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" + "target": "backend_src_admin_pets_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -46374,9 +46444,9 @@ "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" + "target": "backend_src_admin_pets_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -46386,9 +46456,9 @@ "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" + "target": "backend_src_admin_pets_controller_ts_controller", + "confidence_score": 1.0 }, { "relation": "references", @@ -46398,9 +46468,9 @@ "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" + "target": "backend_src_admin_pets_controller_ts_delete", + "confidence_score": 1.0 }, { "relation": "references", @@ -46410,9 +46480,9 @@ "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" + "target": "backend_src_admin_pets_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -46422,9 +46492,9 @@ "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" + "target": "backend_src_admin_pets_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -46434,9 +46504,9 @@ "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" + "target": "backend_src_admin_pets_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -46446,9 +46516,9 @@ "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" + "target": "backend_src_admin_pets_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -46458,9 +46528,9 @@ "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" + "target": "backend_src_admin_pets_controller_ts_apiquery", + "confidence_score": 1.0 }, { "relation": "references", @@ -46470,9 +46540,9 @@ "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" + "target": "backend_src_admin_pets_controller_ts_query", + "confidence_score": 1.0 }, { "relation": "references", @@ -46482,9 +46552,9 @@ "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" + "target": "backend_src_admin_pets_service_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -46494,9 +46564,9 @@ "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" + "target": "backend_src_admin_reports_controller_ts_apitags", + "confidence_score": 1.0 }, { "relation": "references", @@ -46506,9 +46576,9 @@ "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" + "target": "backend_src_admin_reports_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -46518,9 +46588,9 @@ "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" + "target": "backend_src_admin_reports_controller_ts_controller", + "confidence_score": 1.0 }, { "relation": "references", @@ -46530,9 +46600,9 @@ "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" + "target": "backend_src_admin_reports_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -46542,9 +46612,9 @@ "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" + "target": "backend_src_admin_reports_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -46554,9 +46624,9 @@ "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" + "target": "backend_src_admin_reports_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -46566,9 +46636,9 @@ "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" + "target": "backend_src_admin_reports_service_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -46578,9 +46648,9 @@ "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" + "target": "backend_src_admin_ssl_controller_ts_apitags", + "confidence_score": 1.0 }, { "relation": "references", @@ -46590,9 +46660,9 @@ "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" + "target": "backend_src_admin_ssl_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -46602,9 +46672,9 @@ "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" + "target": "backend_src_admin_ssl_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -46614,9 +46684,9 @@ "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" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -46626,9 +46696,9 @@ "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" + "target": "backend_src_admin_ssl_controller_ts_controller", + "confidence_score": 1.0 }, { "relation": "references", @@ -46638,9 +46708,9 @@ "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" + "target": "backend_src_admin_ssl_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -46650,9 +46720,9 @@ "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" + "target": "backend_src_admin_ssl_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -46662,9 +46732,9 @@ "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" + "target": "backend_src_admin_ssl_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -46674,9 +46744,9 @@ "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" + "target": "backend_src_admin_ssl_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -46686,9 +46756,9 @@ "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" + "target": "backend_src_admin_ssl_controller_ts_query", + "confidence_score": 1.0 }, { "relation": "references", @@ -46698,9 +46768,9 @@ "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" + "target": "backend_src_admin_ssl_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -46710,9 +46780,9 @@ "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" + "target": "backend_src_admin_ssl_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -46722,9 +46792,9 @@ "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" + "target": "backend_src_admin_ssl_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -46734,9 +46804,9 @@ "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" + "target": "backend_src_admin_ssl_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -46746,9 +46816,9 @@ "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" + "target": "backend_src_admin_ssl_controller_ts_useinterceptors", + "confidence_score": 1.0 }, { "relation": "references", @@ -46758,9 +46828,9 @@ "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" + "target": "backend_src_admin_ssl_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -46770,9 +46840,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles", - "target": "uploadedfiles" + "target": "uploadedfiles", + "confidence_score": 1.0 }, { "relation": "references", @@ -46782,9 +46852,9 @@ "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" + "target": "backend_src_admin_ssl_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -46794,9 +46864,9 @@ "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" + "target": "backend_src_admin_ssl_service_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -46806,9 +46876,9 @@ "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" + "target": "backend_src_admin_wiki_controller_ts_apitags", + "confidence_score": 1.0 }, { "relation": "references", @@ -46818,9 +46888,9 @@ "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" + "target": "backend_src_admin_wiki_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -46830,9 +46900,9 @@ "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" + "target": "backend_src_admin_wiki_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -46842,9 +46912,9 @@ "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" + "target": "backend_src_admin_wiki_controller_ts_controller", + "confidence_score": 1.0 }, { "relation": "references", @@ -46854,9 +46924,9 @@ "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" + "target": "backend_src_admin_wiki_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -46866,9 +46936,9 @@ "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" + "target": "backend_src_admin_wiki_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -46878,9 +46948,9 @@ "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" + "target": "backend_src_admin_wiki_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -46890,9 +46960,9 @@ "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" + "target": "backend_src_admin_wiki_controller_ts_delete", + "confidence_score": 1.0 }, { "relation": "references", @@ -46902,9 +46972,9 @@ "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" + "target": "backend_src_admin_wiki_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -46914,9 +46984,9 @@ "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" + "target": "backend_src_admin_wiki_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -46926,9 +46996,9 @@ "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" + "target": "backend_src_admin_wiki_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -46938,9 +47008,9 @@ "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" + "target": "backend_src_admin_wiki_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -46950,9 +47020,9 @@ "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" + "target": "backend_src_admin_wiki_controller_ts_apiquery", + "confidence_score": 1.0 }, { "relation": "references", @@ -46962,9 +47032,9 @@ "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" + "target": "backend_src_admin_wiki_controller_ts_query", + "confidence_score": 1.0 }, { "relation": "references", @@ -46974,9 +47044,9 @@ "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" + "target": "backend_src_admin_wiki_controller_ts_put", + "confidence_score": 1.0 }, { "relation": "references", @@ -46986,9 +47056,9 @@ "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" + "target": "backend_src_admin_wiki_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -46998,9 +47068,9 @@ "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_param" + "target": "backend_src_admin_wiki_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -47010,9 +47080,9 @@ "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_body" + "target": "backend_src_admin_wiki_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -47022,9 +47092,9 @@ "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" + "target": "backend_src_admin_wiki_service_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -47034,9 +47104,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_controller_appcontroller", - "target": "backend_src_app_controller_ts_controller" + "target": "backend_src_app_controller_ts_controller", + "confidence_score": 1.0 }, { "relation": "references", @@ -47046,9 +47116,9 @@ "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" + "target": "backend_src_app_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -47058,9 +47128,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module_appmodule", - "target": "backend_src_app_module_ts_module" + "target": "backend_src_app_module_ts_module", + "confidence_score": 1.0 }, { "relation": "references", @@ -47070,9 +47140,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_service_appservice", - "target": "backend_src_app_service_ts_injectable" + "target": "backend_src_app_service_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -47082,9 +47152,9 @@ "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" + "target": "backend_src_auth_auth_controller_ts_apitags", + "confidence_score": 1.0 }, { "relation": "references", @@ -47094,9 +47164,9 @@ "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" + "target": "backend_src_auth_auth_controller_ts_controller", + "confidence_score": 1.0 }, { "relation": "references", @@ -47106,9 +47176,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller", - "target": "frontend_admin_panel_src_types_admin_apiresponse" + "target": "frontend_admin_panel_src_types_admin_apiresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -47118,9 +47188,9 @@ "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" + "target": "backend_src_auth_auth_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -47130,9 +47200,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_adminlogin", - "target": "httpcode" + "target": "httpcode", + "confidence_score": 1.0 }, { "relation": "references", @@ -47142,9 +47212,9 @@ "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" + "target": "backend_src_auth_auth_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -47154,9 +47224,9 @@ "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" + "target": "backend_src_auth_auth_controller_ts_apiokresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -47166,9 +47236,9 @@ "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" + "target": "backend_src_auth_auth_controller_ts_apibadrequestresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -47178,9 +47248,9 @@ "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" + "target": "backend_src_auth_auth_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -47190,9 +47260,9 @@ "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" + "target": "backend_src_auth_auth_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -47202,9 +47272,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_login", - "target": "httpcode" + "target": "httpcode", + "confidence_score": 1.0 }, { "relation": "references", @@ -47214,9 +47284,9 @@ "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" + "target": "backend_src_auth_auth_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -47226,9 +47296,9 @@ "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" + "target": "backend_src_auth_auth_controller_ts_apiokresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -47238,9 +47308,9 @@ "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" + "target": "backend_src_auth_auth_controller_ts_apibadrequestresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -47250,9 +47320,9 @@ "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" + "target": "backend_src_auth_auth_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -47262,9 +47332,9 @@ "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" + "target": "backend_src_auth_auth_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -47274,9 +47344,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_logout", - "target": "httpcode" + "target": "httpcode", + "confidence_score": 1.0 }, { "relation": "references", @@ -47286,9 +47356,9 @@ "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" + "target": "backend_src_auth_auth_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -47298,9 +47368,9 @@ "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" + "target": "backend_src_auth_auth_controller_ts_apiokresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -47310,9 +47380,9 @@ "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" + "target": "backend_src_auth_auth_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -47322,9 +47392,9 @@ "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" + "target": "backend_src_auth_auth_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -47334,9 +47404,9 @@ "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" + "target": "backend_src_auth_auth_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -47346,9 +47416,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_refresh", - "target": "httpcode" + "target": "httpcode", + "confidence_score": 1.0 }, { "relation": "references", @@ -47358,9 +47428,9 @@ "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" + "target": "backend_src_auth_auth_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -47370,9 +47440,9 @@ "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" + "target": "backend_src_auth_auth_controller_ts_apiokresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -47382,9 +47452,9 @@ "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" + "target": "backend_src_auth_auth_controller_ts_req", + "confidence_score": 1.0 }, { "relation": "references", @@ -47394,9 +47464,9 @@ "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" + "target": "backend_src_auth_auth_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -47406,9 +47476,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_register", - "target": "httpcode" + "target": "httpcode", + "confidence_score": 1.0 }, { "relation": "references", @@ -47418,9 +47488,9 @@ "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" + "target": "backend_src_auth_auth_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -47430,9 +47500,9 @@ "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" + "target": "backend_src_auth_auth_controller_ts_apiokresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -47442,9 +47512,9 @@ "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" + "target": "backend_src_auth_auth_controller_ts_apibadrequestresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -47454,9 +47524,9 @@ "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" + "target": "backend_src_auth_auth_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -47466,9 +47536,9 @@ "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" + "target": "backend_src_auth_auth_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -47478,9 +47548,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_sendotp", - "target": "httpcode" + "target": "httpcode", + "confidence_score": 1.0 }, { "relation": "references", @@ -47490,9 +47560,9 @@ "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" + "target": "backend_src_auth_auth_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -47502,9 +47572,9 @@ "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" + "target": "backend_src_auth_auth_controller_ts_apiokresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -47514,9 +47584,9 @@ "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" + "target": "backend_src_auth_auth_controller_ts_apibadrequestresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -47526,9 +47596,9 @@ "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" + "target": "backend_src_auth_auth_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -47538,9 +47608,9 @@ "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" + "target": "backend_src_auth_auth_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -47550,9 +47620,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_verifyotp", - "target": "httpcode" + "target": "httpcode", + "confidence_score": 1.0 }, { "relation": "references", @@ -47562,9 +47632,9 @@ "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" + "target": "backend_src_auth_auth_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -47574,9 +47644,9 @@ "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" + "target": "backend_src_auth_auth_controller_ts_apiokresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -47586,9 +47656,9 @@ "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" + "target": "backend_src_auth_auth_controller_ts_apibadrequestresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -47598,9 +47668,9 @@ "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" + "target": "backend_src_auth_auth_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -47610,9 +47680,9 @@ "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" + "target": "backend_src_auth_auth_module_ts_module", + "confidence_score": 1.0 }, { "relation": "references", @@ -47622,9 +47692,9 @@ "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" + "target": "backend_src_auth_auth_service_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -47634,9 +47704,9 @@ "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" + "target": "backend_src_auth_dto_admin_login_dto_ts_apiproperty", + "confidence_score": 1.0 }, { "relation": "references", @@ -47646,9 +47716,9 @@ "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" + "target": "backend_src_auth_dto_admin_login_dto_ts_isstring", + "confidence_score": 1.0 }, { "relation": "references", @@ -47658,9 +47728,9 @@ "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" + "target": "backend_src_auth_dto_admin_login_dto_ts_minlength", + "confidence_score": 1.0 }, { "relation": "references", @@ -47670,9 +47740,9 @@ "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" + "target": "backend_src_auth_dto_admin_login_dto_ts_isnotempty", + "confidence_score": 1.0 }, { "relation": "references", @@ -47682,9 +47752,9 @@ "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" + "target": "backend_src_auth_dto_admin_login_dto_ts_isemail", + "confidence_score": 1.0 }, { "relation": "references", @@ -47694,9 +47764,9 @@ "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" + "target": "backend_src_auth_dto_login_dto_ts_apiproperty", + "confidence_score": 1.0 }, { "relation": "references", @@ -47706,9 +47776,9 @@ "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" + "target": "backend_src_auth_dto_login_dto_ts_isnotempty", + "confidence_score": 1.0 }, { "relation": "references", @@ -47718,9 +47788,9 @@ "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" + "target": "backend_src_auth_dto_login_dto_ts_minlength", + "confidence_score": 1.0 }, { "relation": "references", @@ -47730,9 +47800,9 @@ "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" + "target": "backend_src_auth_dto_login_dto_ts_isstring", + "confidence_score": 1.0 }, { "relation": "references", @@ -47742,9 +47812,9 @@ "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" + "target": "backend_src_auth_dto_register_dto_ts_apipropertyoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -47754,9 +47824,9 @@ "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" + "target": "backend_src_auth_dto_register_dto_ts_isoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -47766,9 +47836,9 @@ "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" + "target": "backend_src_auth_dto_register_dto_ts_isemail", + "confidence_score": 1.0 }, { "relation": "references", @@ -47778,9 +47848,9 @@ "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" + "target": "backend_src_auth_dto_register_dto_ts_isstring", + "confidence_score": 1.0 }, { "relation": "references", @@ -47790,9 +47860,9 @@ "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" + "target": "backend_src_auth_dto_register_dto_ts_apiproperty", + "confidence_score": 1.0 }, { "relation": "references", @@ -47802,9 +47872,9 @@ "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" + "target": "backend_src_auth_dto_register_dto_ts_isnotempty", + "confidence_score": 1.0 }, { "relation": "references", @@ -47814,9 +47884,9 @@ "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" + "target": "backend_src_auth_dto_register_dto_ts_minlength", + "confidence_score": 1.0 }, { "relation": "references", @@ -47826,9 +47896,9 @@ "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" + "target": "backend_src_auth_dto_send_otp_dto_ts_apiproperty", + "confidence_score": 1.0 }, { "relation": "references", @@ -47838,9 +47908,9 @@ "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" + "target": "backend_src_auth_dto_send_otp_dto_ts_isnotempty", + "confidence_score": 1.0 }, { "relation": "references", @@ -47850,9 +47920,9 @@ "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" + "target": "backend_src_auth_dto_send_otp_dto_ts_isstring", + "confidence_score": 1.0 }, { "relation": "references", @@ -47862,9 +47932,9 @@ "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" + "target": "backend_src_auth_dto_send_otp_dto_ts_matches", + "confidence_score": 1.0 }, { "relation": "references", @@ -47874,9 +47944,9 @@ "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" + "target": "backend_src_auth_dto_verify_otp_dto_ts_apiproperty", + "confidence_score": 1.0 }, { "relation": "references", @@ -47886,9 +47956,9 @@ "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" + "target": "backend_src_auth_dto_verify_otp_dto_ts_isnotempty", + "confidence_score": 1.0 }, { "relation": "references", @@ -47898,9 +47968,9 @@ "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" + "target": "backend_src_auth_dto_verify_otp_dto_ts_isstring", + "confidence_score": 1.0 }, { "relation": "references", @@ -47910,9 +47980,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", - "target": "length" + "target": "length", + "confidence_score": 1.0 }, { "relation": "references", @@ -47922,9 +47992,9 @@ "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" + "target": "backend_src_auth_dto_verify_otp_dto_ts_matches", + "confidence_score": 1.0 }, { "relation": "references", @@ -47934,9 +48004,9 @@ "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" + "target": "backend_src_auth_jwt_auth_guard_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -47946,9 +48016,9 @@ "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" + "target": "backend_src_auth_jwt_strategy_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -47958,9 +48028,9 @@ "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" + "target": "backend_src_b2b_b2b_controller_ts_apitags", + "confidence_score": 1.0 }, { "relation": "references", @@ -47970,9 +48040,9 @@ "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" + "target": "backend_src_b2b_b2b_controller_ts_controller", + "confidence_score": 1.0 }, { "relation": "references", @@ -47982,9 +48052,9 @@ "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" + "target": "backend_src_b2b_b2b_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -47994,9 +48064,9 @@ "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" + "target": "backend_src_b2b_b2b_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -48006,9 +48076,9 @@ "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" + "target": "backend_src_b2b_b2b_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -48018,9 +48088,9 @@ "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" + "target": "backend_src_b2b_b2b_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -48030,9 +48100,9 @@ "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" + "target": "backend_src_b2b_b2b_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -48042,9 +48112,9 @@ "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" + "target": "backend_src_b2b_b2b_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -48054,9 +48124,9 @@ "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" + "target": "backend_src_b2b_b2b_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -48066,9 +48136,9 @@ "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" + "target": "backend_src_b2b_b2b_controller_ts_req", + "confidence_score": 1.0 }, { "relation": "references", @@ -48078,9 +48148,9 @@ "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" + "target": "backend_src_b2b_b2b_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -48090,9 +48160,9 @@ "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" + "target": "backend_src_b2b_b2b_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -48102,9 +48172,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -48114,9 +48184,9 @@ "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" + "target": "backend_src_b2b_b2b_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -48126,9 +48196,9 @@ "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" + "target": "backend_src_b2b_b2b_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -48138,9 +48208,9 @@ "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" + "target": "backend_src_b2b_b2b_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -48150,9 +48220,9 @@ "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" + "target": "backend_src_b2b_b2b_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -48162,9 +48232,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -48174,9 +48244,9 @@ "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" + "target": "backend_src_b2b_b2b_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -48186,9 +48256,9 @@ "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" + "target": "backend_src_b2b_b2b_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -48198,9 +48268,9 @@ "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" + "target": "backend_src_b2b_b2b_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -48210,9 +48280,9 @@ "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" + "target": "backend_src_b2b_b2b_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -48222,9 +48292,9 @@ "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" + "target": "backend_src_b2b_b2b_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -48234,9 +48304,9 @@ "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" + "target": "backend_src_b2b_b2b_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -48246,9 +48316,9 @@ "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" + "target": "backend_src_b2b_b2b_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -48258,9 +48328,9 @@ "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" + "target": "backend_src_b2b_b2b_controller_ts_req", + "confidence_score": 1.0 }, { "relation": "references", @@ -48270,9 +48340,9 @@ "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" + "target": "backend_src_b2b_b2b_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -48282,9 +48352,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -48294,9 +48364,9 @@ "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" + "target": "backend_src_b2b_b2b_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -48306,9 +48376,9 @@ "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" + "target": "backend_src_b2b_b2b_controller_ts_put", + "confidence_score": 1.0 }, { "relation": "references", @@ -48318,9 +48388,9 @@ "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" + "target": "backend_src_b2b_b2b_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -48330,9 +48400,9 @@ "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" + "target": "backend_src_b2b_b2b_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -48342,9 +48412,9 @@ "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" + "target": "backend_src_b2b_b2b_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -48354,9 +48424,9 @@ "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" + "target": "backend_src_b2b_b2b_module_ts_module", + "confidence_score": 1.0 }, { "relation": "references", @@ -48366,9 +48436,9 @@ "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" + "target": "backend_src_b2b_b2b_service_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -48378,9 +48448,9 @@ "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" + "target": "backend_src_banners_banners_controller_ts_apitags", + "confidence_score": 1.0 }, { "relation": "references", @@ -48390,9 +48460,9 @@ "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" + "target": "backend_src_banners_banners_controller_ts_controller", + "confidence_score": 1.0 }, { "relation": "references", @@ -48402,9 +48472,9 @@ "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" + "target": "backend_src_banners_banners_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -48414,9 +48484,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller_create", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -48426,9 +48496,9 @@ "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" + "target": "backend_src_banners_banners_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -48438,9 +48508,9 @@ "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" + "target": "backend_src_banners_banners_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -48450,9 +48520,9 @@ "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" + "target": "backend_src_banners_banners_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -48462,9 +48532,9 @@ "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" + "target": "backend_src_banners_banners_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -48474,9 +48544,9 @@ "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" + "target": "backend_src_banners_banners_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -48486,9 +48556,9 @@ "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" + "target": "backend_src_banners_banners_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -48498,9 +48568,9 @@ "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" + "target": "backend_src_banners_banners_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -48510,9 +48580,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller_remove", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -48522,9 +48592,9 @@ "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" + "target": "backend_src_banners_banners_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -48534,9 +48604,9 @@ "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" + "target": "backend_src_banners_banners_controller_ts_delete", + "confidence_score": 1.0 }, { "relation": "references", @@ -48546,9 +48616,9 @@ "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" + "target": "backend_src_banners_banners_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -48558,9 +48628,9 @@ "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" + "target": "backend_src_banners_banners_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -48570,9 +48640,9 @@ "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" + "target": "backend_src_banners_banners_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -48582,9 +48652,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller_reorder", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -48594,9 +48664,9 @@ "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" + "target": "backend_src_banners_banners_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -48606,9 +48676,9 @@ "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" + "target": "backend_src_banners_banners_controller_ts_put", + "confidence_score": 1.0 }, { "relation": "references", @@ -48618,9 +48688,9 @@ "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" + "target": "backend_src_banners_banners_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -48630,9 +48700,9 @@ "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" + "target": "backend_src_banners_banners_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -48642,9 +48712,9 @@ "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" + "target": "backend_src_banners_banners_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -48654,9 +48724,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller_update", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -48666,9 +48736,9 @@ "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" + "target": "backend_src_banners_banners_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -48678,9 +48748,9 @@ "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" + "target": "backend_src_banners_banners_controller_ts_patch", + "confidence_score": 1.0 }, { "relation": "references", @@ -48690,9 +48760,9 @@ "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" + "target": "backend_src_banners_banners_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -48702,9 +48772,9 @@ "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" + "target": "backend_src_banners_banners_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -48714,9 +48784,9 @@ "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" + "target": "backend_src_banners_banners_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -48726,9 +48796,9 @@ "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" + "target": "backend_src_banners_banners_module_ts_module", + "confidence_score": 1.0 }, { "relation": "references", @@ -48738,9 +48808,9 @@ "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" + "target": "backend_src_banners_banners_service_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -48750,9 +48820,9 @@ "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" + "target": "backend_src_blogs_blogs_controller_ts_apitags", + "confidence_score": 1.0 }, { "relation": "references", @@ -48762,9 +48832,9 @@ "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" + "target": "backend_src_blogs_blogs_controller_ts_controller", + "confidence_score": 1.0 }, { "relation": "references", @@ -48774,9 +48844,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_blogs_blogs_controller_blogscontroller", - "target": "frontend_admin_panel_src_types_admin_apiresponse" + "target": "frontend_admin_panel_src_types_admin_apiresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -48786,9 +48856,9 @@ "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" + "target": "backend_src_blogs_blogs_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -48798,9 +48868,9 @@ "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" + "target": "backend_src_blogs_blogs_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -48810,9 +48880,9 @@ "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" + "target": "backend_src_blogs_blogs_controller_ts_apiokresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -48822,9 +48892,9 @@ "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" + "target": "backend_src_blogs_blogs_controller_ts_query", + "confidence_score": 1.0 }, { "relation": "references", @@ -48834,9 +48904,9 @@ "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" + "target": "backend_src_blogs_blogs_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -48846,9 +48916,9 @@ "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" + "target": "backend_src_blogs_blogs_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -48858,9 +48928,9 @@ "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" + "target": "backend_src_blogs_blogs_controller_ts_apiokresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -48870,9 +48940,9 @@ "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" + "target": "backend_src_blogs_blogs_controller_ts_apinotfoundresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -48882,9 +48952,9 @@ "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" + "target": "backend_src_blogs_blogs_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -48894,9 +48964,9 @@ "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" + "target": "backend_src_blogs_blogs_module_ts_module", + "confidence_score": 1.0 }, { "relation": "references", @@ -48906,9 +48976,9 @@ "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" + "target": "backend_src_blogs_blogs_service_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -48918,9 +48988,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_apitags", + "confidence_score": 1.0 }, { "relation": "references", @@ -48930,9 +49000,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_controller", + "confidence_score": 1.0 }, { "relation": "references", @@ -48942,9 +49012,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -48954,9 +49024,9 @@ "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" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -48966,9 +49036,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -48978,9 +49048,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -48990,9 +49060,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -49002,9 +49072,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -49014,9 +49084,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -49026,9 +49096,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -49038,9 +49108,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -49050,9 +49120,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -49062,9 +49132,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -49074,9 +49144,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -49086,9 +49156,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_delete", + "confidence_score": 1.0 }, { "relation": "references", @@ -49098,9 +49168,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -49110,9 +49180,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -49122,9 +49192,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_delete", + "confidence_score": 1.0 }, { "relation": "references", @@ -49134,9 +49204,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -49146,9 +49216,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -49158,9 +49228,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_delete", + "confidence_score": 1.0 }, { "relation": "references", @@ -49170,9 +49240,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -49182,9 +49252,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -49194,9 +49264,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -49206,9 +49276,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -49218,9 +49288,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -49230,9 +49300,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -49242,9 +49312,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -49254,9 +49324,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -49266,9 +49336,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_put", + "confidence_score": 1.0 }, { "relation": "references", @@ -49278,9 +49348,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -49290,9 +49360,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -49302,9 +49372,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -49314,9 +49384,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -49326,9 +49396,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -49338,9 +49408,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -49350,9 +49420,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_put", + "confidence_score": 1.0 }, { "relation": "references", @@ -49362,9 +49432,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_put", + "confidence_score": 1.0 }, { "relation": "references", @@ -49374,9 +49444,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -49386,9 +49456,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -49398,9 +49468,9 @@ "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" + "target": "backend_src_cms_cms_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -49410,9 +49480,9 @@ "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" + "target": "backend_src_cms_cms_module_ts_module", + "confidence_score": 1.0 }, { "relation": "references", @@ -49422,9 +49492,9 @@ "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" + "target": "backend_src_cms_cms_service_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -49434,9 +49504,9 @@ "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" + "target": "backend_src_cms_dto_cms_dto_ts_apiproperty", + "confidence_score": 1.0 }, { "relation": "references", @@ -49446,9 +49516,9 @@ "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" + "target": "backend_src_cms_dto_cms_dto_ts_isstring", + "confidence_score": 1.0 }, { "relation": "references", @@ -49458,9 +49528,9 @@ "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" + "target": "backend_src_cms_dto_cms_dto_ts_isnumber", + "confidence_score": 1.0 }, { "relation": "references", @@ -49470,9 +49540,9 @@ "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" + "target": "backend_src_cms_dto_cms_dto_ts_apipropertyoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -49482,9 +49552,9 @@ "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" + "target": "backend_src_cms_dto_cms_dto_ts_isoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -49494,9 +49564,9 @@ "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" + "target": "backend_src_cms_dto_cms_dto_ts_isboolean", + "confidence_score": 1.0 }, { "relation": "references", @@ -49506,9 +49576,9 @@ "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" + "target": "backend_src_cms_dto_cms_dto_ts_apipropertyoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -49518,9 +49588,9 @@ "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" + "target": "backend_src_cms_dto_cms_dto_ts_isoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -49530,9 +49600,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", - "target": "isuuid" + "target": "isuuid", + "confidence_score": 1.0 }, { "relation": "references", @@ -49542,9 +49612,9 @@ "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" + "target": "backend_src_cms_dto_cms_dto_ts_apiproperty", + "confidence_score": 1.0 }, { "relation": "references", @@ -49554,9 +49624,9 @@ "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" + "target": "backend_src_cms_dto_cms_dto_ts_isstring", + "confidence_score": 1.0 }, { "relation": "references", @@ -49566,9 +49636,9 @@ "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" + "target": "backend_src_cms_dto_cms_dto_ts_apiproperty", + "confidence_score": 1.0 }, { "relation": "references", @@ -49578,9 +49648,9 @@ "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" + "target": "backend_src_cms_dto_cms_dto_ts_isstring", + "confidence_score": 1.0 }, { "relation": "references", @@ -49590,9 +49660,9 @@ "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" + "target": "backend_src_cms_dto_cms_dto_ts_isnumber", + "confidence_score": 1.0 }, { "relation": "references", @@ -49602,9 +49672,9 @@ "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" + "target": "backend_src_cms_dto_cms_dto_ts_apipropertyoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -49614,9 +49684,9 @@ "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" + "target": "backend_src_cms_dto_cms_dto_ts_isoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -49626,9 +49696,9 @@ "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" + "target": "backend_src_cms_dto_cms_dto_ts_isboolean", + "confidence_score": 1.0 }, { "relation": "references", @@ -49638,9 +49708,9 @@ "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" + "target": "backend_src_common_dto_pagination_dto_ts_type", + "confidence_score": 1.0 }, { "relation": "references", @@ -49650,9 +49720,9 @@ "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" + "target": "backend_src_common_dto_pagination_dto_ts_isint", + "confidence_score": 1.0 }, { "relation": "references", @@ -49662,9 +49732,9 @@ "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" + "target": "backend_src_common_dto_pagination_dto_ts_min", + "confidence_score": 1.0 }, { "relation": "references", @@ -49674,9 +49744,9 @@ "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" + "target": "backend_src_common_dto_pagination_dto_ts_isenum", + "confidence_score": 1.0 }, { "relation": "references", @@ -49686,9 +49756,9 @@ "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" + "target": "backend_src_common_dto_pagination_dto_ts_apipropertyoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -49698,9 +49768,9 @@ "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" + "target": "backend_src_common_dto_pagination_dto_ts_isoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -49710,9 +49780,9 @@ "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" + "target": "backend_src_common_dto_pagination_dto_ts_isstring", + "confidence_score": 1.0 }, { "relation": "references", @@ -49722,9 +49792,9 @@ "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" + "target": "backend_src_common_filters_http_exception_filter_ts_catch", + "confidence_score": 1.0 }, { "relation": "references", @@ -49734,9 +49804,9 @@ "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" + "target": "backend_src_common_filters_prisma_exception_filter_ts_catch", + "confidence_score": 1.0 }, { "relation": "references", @@ -49746,9 +49816,9 @@ "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" + "target": "backend_src_common_guards_roles_guard_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -49758,9 +49828,9 @@ "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" + "target": "backend_src_common_interceptors_decimal_interceptor_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -49770,9 +49840,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_metrics_controller_metricscontroller", - "target": "apiexcludecontroller" + "target": "apiexcludecontroller", + "confidence_score": 1.0 }, { "relation": "references", @@ -49782,9 +49852,9 @@ "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" + "target": "backend_src_common_metrics_controller_ts_controller", + "confidence_score": 1.0 }, { "relation": "references", @@ -49794,9 +49864,9 @@ "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" + "target": "backend_src_common_metrics_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -49806,9 +49876,9 @@ "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" + "target": "backend_src_common_metrics_controller_ts_res", + "confidence_score": 1.0 }, { "relation": "references", @@ -49818,9 +49888,9 @@ "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" + "target": "backend_src_common_schemas_error_response_schema_ts_apiproperty", + "confidence_score": 1.0 }, { "relation": "references", @@ -49830,9 +49900,9 @@ "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" + "target": "backend_src_common_schemas_error_response_schema_ts_apiproperty", + "confidence_score": 1.0 }, { "relation": "references", @@ -49842,9 +49912,9 @@ "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" + "target": "backend_src_common_schemas_paginated_response_schema_ts_apiproperty", + "confidence_score": 1.0 }, { "relation": "references", @@ -49854,9 +49924,9 @@ "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" + "target": "backend_src_common_schemas_paginated_response_schema_ts_apiproperty", + "confidence_score": 1.0 }, { "relation": "references", @@ -49866,9 +49936,9 @@ "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" + "target": "backend_src_common_services_sms_service_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -49878,9 +49948,9 @@ "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" + "target": "backend_src_common_sms_module_ts_global", + "confidence_score": 1.0 }, { "relation": "references", @@ -49890,9 +49960,9 @@ "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" + "target": "backend_src_common_sms_module_ts_module", + "confidence_score": 1.0 }, { "relation": "references", @@ -49902,9 +49972,9 @@ "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" + "target": "backend_src_contact_contact_controller_ts_controller", + "confidence_score": 1.0 }, { "relation": "references", @@ -49914,9 +49984,9 @@ "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" + "target": "backend_src_contact_contact_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -49926,9 +49996,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_contact_contact_controller_contactcontroller_getallsubmissions", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -49938,9 +50008,9 @@ "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" + "target": "backend_src_contact_contact_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -49950,9 +50020,9 @@ "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" + "target": "backend_src_contact_contact_controller_ts_query", + "confidence_score": 1.0 }, { "relation": "references", @@ -49962,9 +50032,9 @@ "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" + "target": "backend_src_contact_contact_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -49974,9 +50044,9 @@ "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" + "target": "backend_src_contact_contact_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -49986,9 +50056,9 @@ "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" + "target": "backend_src_contact_contact_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -49998,9 +50068,9 @@ "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" + "target": "backend_src_contact_contact_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -50010,9 +50080,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_contact_contact_controller_contactcontroller_updatecontactinfo", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -50022,9 +50092,9 @@ "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" + "target": "backend_src_contact_contact_controller_ts_put", + "confidence_score": 1.0 }, { "relation": "references", @@ -50034,9 +50104,9 @@ "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" + "target": "backend_src_contact_contact_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -50046,9 +50116,9 @@ "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" + "target": "backend_src_contact_contact_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -50058,9 +50128,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_contact_contact_controller_contactcontroller_updatesubmissionstatus", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -50070,9 +50140,9 @@ "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" + "target": "backend_src_contact_contact_controller_ts_put", + "confidence_score": 1.0 }, { "relation": "references", @@ -50082,9 +50152,9 @@ "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" + "target": "backend_src_contact_contact_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -50094,9 +50164,9 @@ "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" + "target": "backend_src_contact_contact_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -50106,9 +50176,9 @@ "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" + "target": "backend_src_contact_contact_module_ts_module", + "confidence_score": 1.0 }, { "relation": "references", @@ -50118,9 +50188,9 @@ "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" + "target": "backend_src_contact_contact_service_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -50130,9 +50200,9 @@ "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" + "target": "backend_src_doctors_doctors_controller_ts_apitags", + "confidence_score": 1.0 }, { "relation": "references", @@ -50142,9 +50212,9 @@ "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" + "target": "backend_src_doctors_doctors_controller_ts_controller", + "confidence_score": 1.0 }, { "relation": "references", @@ -50154,9 +50224,9 @@ "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" + "target": "backend_src_doctors_doctors_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -50166,9 +50236,9 @@ "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_useguards" + "target": "backend_src_doctors_doctors_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -50178,9 +50248,9 @@ "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_apibearerauth" + "target": "backend_src_doctors_doctors_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -50190,9 +50260,9 @@ "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_apioperation" + "target": "backend_src_doctors_doctors_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -50202,9 +50272,9 @@ "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_body" + "target": "backend_src_doctors_doctors_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -50214,9 +50284,9 @@ "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" + "target": "backend_src_doctors_doctors_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -50226,9 +50296,9 @@ "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" + "target": "backend_src_doctors_doctors_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -50238,9 +50308,9 @@ "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" + "target": "backend_src_doctors_doctors_controller_ts_query", + "confidence_score": 1.0 }, { "relation": "references", @@ -50250,9 +50320,9 @@ "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" + "target": "backend_src_doctors_doctors_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -50262,9 +50332,9 @@ "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" + "target": "backend_src_doctors_doctors_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -50274,9 +50344,9 @@ "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" + "target": "backend_src_doctors_doctors_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -50286,9 +50356,9 @@ "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_delete" + "target": "backend_src_doctors_doctors_controller_ts_delete", + "confidence_score": 1.0 }, { "relation": "references", @@ -50298,9 +50368,9 @@ "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" + "target": "backend_src_doctors_doctors_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -50310,9 +50380,9 @@ "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" + "target": "backend_src_doctors_doctors_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -50322,9 +50392,9 @@ "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" + "target": "backend_src_doctors_doctors_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -50334,9 +50404,9 @@ "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" + "target": "backend_src_doctors_doctors_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -50346,9 +50416,9 @@ "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" + "target": "backend_src_doctors_doctors_controller_ts_put", + "confidence_score": 1.0 }, { "relation": "references", @@ -50358,9 +50428,9 @@ "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" + "target": "backend_src_doctors_doctors_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -50370,9 +50440,9 @@ "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_apibearerauth" + "target": "backend_src_doctors_doctors_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -50382,9 +50452,9 @@ "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_apioperation" + "target": "backend_src_doctors_doctors_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -50394,9 +50464,9 @@ "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" + "target": "backend_src_doctors_doctors_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -50406,9 +50476,9 @@ "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" + "target": "backend_src_doctors_doctors_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -50418,9 +50488,9 @@ "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" + "target": "backend_src_doctors_doctors_module_ts_module", + "confidence_score": 1.0 }, { "relation": "references", @@ -50430,9 +50500,9 @@ "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" + "target": "backend_src_doctors_doctors_service_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -50442,9 +50512,9 @@ "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" + "target": "backend_src_home_home_controller_ts_apitags", + "confidence_score": 1.0 }, { "relation": "references", @@ -50454,9 +50524,9 @@ "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" + "target": "backend_src_home_home_controller_ts_controller", + "confidence_score": 1.0 }, { "relation": "references", @@ -50466,9 +50536,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_home_home_controller_homecontroller", - "target": "frontend_admin_panel_src_types_admin_apiresponse" + "target": "frontend_admin_panel_src_types_admin_apiresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -50478,9 +50548,9 @@ "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" + "target": "backend_src_home_home_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -50490,9 +50560,9 @@ "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" + "target": "backend_src_home_home_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -50502,9 +50572,9 @@ "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" + "target": "backend_src_home_home_controller_ts_apiokresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -50514,9 +50584,9 @@ "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" + "target": "backend_src_home_home_module_ts_module", + "confidence_score": 1.0 }, { "relation": "references", @@ -50526,9 +50596,9 @@ "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" + "target": "backend_src_home_home_service_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -50538,9 +50608,9 @@ "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" + "target": "backend_src_ingredients_ingredients_controller_ts_apitags", + "confidence_score": 1.0 }, { "relation": "references", @@ -50550,9 +50620,9 @@ "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" + "target": "backend_src_ingredients_ingredients_controller_ts_controller", + "confidence_score": 1.0 }, { "relation": "references", @@ -50562,9 +50632,9 @@ "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" + "target": "backend_src_ingredients_ingredients_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -50574,9 +50644,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -50586,9 +50656,9 @@ "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" + "target": "backend_src_ingredients_ingredients_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -50598,9 +50668,9 @@ "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" + "target": "backend_src_ingredients_ingredients_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -50610,9 +50680,9 @@ "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" + "target": "backend_src_ingredients_ingredients_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -50622,9 +50692,9 @@ "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" + "target": "backend_src_ingredients_ingredients_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -50634,9 +50704,9 @@ "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" + "target": "backend_src_ingredients_ingredients_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -50646,9 +50716,9 @@ "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" + "target": "backend_src_ingredients_ingredients_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -50658,9 +50728,9 @@ "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" + "target": "backend_src_ingredients_ingredients_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -50670,9 +50740,9 @@ "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" + "target": "backend_src_ingredients_ingredients_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -50682,9 +50752,9 @@ "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" + "target": "backend_src_ingredients_ingredients_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -50694,9 +50764,9 @@ "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" + "target": "backend_src_ingredients_ingredients_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -50706,9 +50776,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -50718,9 +50788,9 @@ "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" + "target": "backend_src_ingredients_ingredients_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -50730,9 +50800,9 @@ "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" + "target": "backend_src_ingredients_ingredients_controller_ts_delete", + "confidence_score": 1.0 }, { "relation": "references", @@ -50742,9 +50812,9 @@ "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" + "target": "backend_src_ingredients_ingredients_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -50754,9 +50824,9 @@ "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" + "target": "backend_src_ingredients_ingredients_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -50766,9 +50836,9 @@ "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" + "target": "backend_src_ingredients_ingredients_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -50778,9 +50848,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -50790,9 +50860,9 @@ "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" + "target": "backend_src_ingredients_ingredients_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -50802,9 +50872,9 @@ "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" + "target": "backend_src_ingredients_ingredients_controller_ts_patch", + "confidence_score": 1.0 }, { "relation": "references", @@ -50814,9 +50884,9 @@ "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" + "target": "backend_src_ingredients_ingredients_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -50826,9 +50896,9 @@ "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" + "target": "backend_src_ingredients_ingredients_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -50838,9 +50908,9 @@ "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" + "target": "backend_src_ingredients_ingredients_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -50850,9 +50920,9 @@ "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" + "target": "backend_src_ingredients_ingredients_module_ts_module", + "confidence_score": 1.0 }, { "relation": "references", @@ -50862,9 +50932,9 @@ "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" + "target": "backend_src_ingredients_ingredients_service_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -50874,9 +50944,9 @@ "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" + "target": "backend_src_orders_dto_create_order_dto_ts_isnumber", + "confidence_score": 1.0 }, { "relation": "references", @@ -50886,9 +50956,9 @@ "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" + "target": "backend_src_orders_dto_create_order_dto_ts_apipropertyoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -50898,9 +50968,9 @@ "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" + "target": "backend_src_orders_dto_create_order_dto_ts_isoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -50910,9 +50980,9 @@ "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" + "target": "backend_src_orders_dto_create_order_dto_ts_isstring", + "confidence_score": 1.0 }, { "relation": "references", @@ -50922,9 +50992,9 @@ "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" + "target": "backend_src_orders_dto_create_order_dto_ts_apiproperty", + "confidence_score": 1.0 }, { "relation": "references", @@ -50934,9 +51004,9 @@ "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" + "target": "backend_src_orders_dto_create_order_dto_ts_isarray", + "confidence_score": 1.0 }, { "relation": "references", @@ -50946,9 +51016,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_dto_create_order_dto_createorderdto", - "target": "validatenested" + "target": "validatenested", + "confidence_score": 1.0 }, { "relation": "references", @@ -50958,9 +51028,9 @@ "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" + "target": "backend_src_orders_dto_create_order_dto_ts_type", + "confidence_score": 1.0 }, { "relation": "references", @@ -50970,9 +51040,9 @@ "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" + "target": "backend_src_orders_dto_create_order_dto_ts_isstring", + "confidence_score": 1.0 }, { "relation": "references", @@ -50982,9 +51052,9 @@ "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" + "target": "backend_src_orders_dto_create_order_dto_ts_apiproperty", + "confidence_score": 1.0 }, { "relation": "references", @@ -50994,9 +51064,9 @@ "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" + "target": "backend_src_orders_dto_create_order_dto_ts_isnotempty", + "confidence_score": 1.0 }, { "relation": "references", @@ -51006,9 +51076,9 @@ "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" + "target": "backend_src_orders_dto_create_order_dto_ts_isnumber", + "confidence_score": 1.0 }, { "relation": "references", @@ -51018,9 +51088,9 @@ "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" + "target": "backend_src_orders_orders_controller_ts_apitags", + "confidence_score": 1.0 }, { "relation": "references", @@ -51030,9 +51100,9 @@ "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" + "target": "backend_src_orders_orders_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -51042,9 +51112,9 @@ "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" + "target": "backend_src_orders_orders_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -51054,9 +51124,9 @@ "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" + "target": "backend_src_orders_orders_controller_ts_controller", + "confidence_score": 1.0 }, { "relation": "references", @@ -51066,9 +51136,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller", - "target": "frontend_admin_panel_src_types_admin_apiresponse" + "target": "frontend_admin_panel_src_types_admin_apiresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -51078,9 +51148,9 @@ "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" + "target": "backend_src_orders_orders_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -51090,9 +51160,9 @@ "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" + "target": "backend_src_orders_orders_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -51102,9 +51172,9 @@ "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" + "target": "backend_src_orders_orders_controller_ts_apicreatedresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -51114,9 +51184,9 @@ "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" + "target": "backend_src_orders_orders_controller_ts_apibadrequestresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -51126,9 +51196,9 @@ "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" + "target": "backend_src_orders_orders_controller_ts_req", + "confidence_score": 1.0 }, { "relation": "references", @@ -51138,9 +51208,9 @@ "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" + "target": "backend_src_orders_orders_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -51150,9 +51220,9 @@ "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" + "target": "backend_src_orders_orders_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -51162,9 +51232,9 @@ "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" + "target": "backend_src_orders_orders_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -51174,9 +51244,9 @@ "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" + "target": "backend_src_orders_orders_controller_ts_apiokresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -51186,9 +51256,9 @@ "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" + "target": "backend_src_orders_orders_controller_ts_query", + "confidence_score": 1.0 }, { "relation": "references", @@ -51198,9 +51268,9 @@ "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" + "target": "backend_src_orders_orders_controller_ts_req", + "confidence_score": 1.0 }, { "relation": "references", @@ -51210,9 +51280,9 @@ "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" + "target": "backend_src_orders_orders_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -51222,9 +51292,9 @@ "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" + "target": "backend_src_orders_orders_controller_ts_req", + "confidence_score": 1.0 }, { "relation": "references", @@ -51234,9 +51304,9 @@ "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" + "target": "backend_src_orders_orders_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -51246,9 +51316,9 @@ "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" + "target": "backend_src_orders_orders_controller_ts_apinotfoundresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -51258,9 +51328,9 @@ "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" + "target": "backend_src_orders_orders_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -51270,9 +51340,9 @@ "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" + "target": "backend_src_orders_orders_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -51282,9 +51352,9 @@ "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" + "target": "backend_src_orders_orders_controller_ts_apiokresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -51294,9 +51364,9 @@ "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" + "target": "backend_src_orders_orders_controller_ts_req", + "confidence_score": 1.0 }, { "relation": "references", @@ -51306,9 +51376,9 @@ "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" + "target": "backend_src_orders_orders_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -51318,9 +51388,9 @@ "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" + "target": "backend_src_orders_orders_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -51330,9 +51400,9 @@ "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" + "target": "backend_src_orders_orders_controller_ts_apibadrequestresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -51342,9 +51412,9 @@ "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" + "target": "backend_src_orders_orders_controller_ts_req", + "confidence_score": 1.0 }, { "relation": "references", @@ -51354,9 +51424,9 @@ "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" + "target": "backend_src_orders_orders_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -51366,9 +51436,9 @@ "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" + "target": "backend_src_orders_orders_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -51378,9 +51448,9 @@ "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" + "target": "backend_src_orders_orders_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -51390,9 +51460,9 @@ "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" + "target": "backend_src_orders_orders_controller_ts_apiokresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -51402,9 +51472,9 @@ "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" + "target": "backend_src_orders_orders_controller_ts_isstring", + "confidence_score": 1.0 }, { "relation": "references", @@ -51414,9 +51484,9 @@ "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" + "target": "backend_src_orders_orders_controller_ts_isnotempty", + "confidence_score": 1.0 }, { "relation": "references", @@ -51426,9 +51496,9 @@ "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" + "target": "backend_src_orders_orders_controller_ts_isnumber", + "confidence_score": 1.0 }, { "relation": "references", @@ -51438,9 +51508,9 @@ "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" + "target": "backend_src_orders_orders_module_ts_module", + "confidence_score": 1.0 }, { "relation": "references", @@ -51450,9 +51520,9 @@ "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" + "target": "backend_src_orders_orders_service_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -51462,9 +51532,9 @@ "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" + "target": "backend_src_payment_dto_admin_transaction_filter_dto_ts_type", + "confidence_score": 1.0 }, { "relation": "references", @@ -51474,9 +51544,9 @@ "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" + "target": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isnumber", + "confidence_score": 1.0 }, { "relation": "references", @@ -51486,9 +51556,9 @@ "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" + "target": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isstring", + "confidence_score": 1.0 }, { "relation": "references", @@ -51498,9 +51568,9 @@ "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" + "target": "backend_src_payment_dto_admin_transaction_filter_dto_ts_apipropertyoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -51510,9 +51580,9 @@ "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" + "target": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -51522,9 +51592,9 @@ "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" + "target": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isin", + "confidence_score": 1.0 }, { "relation": "references", @@ -51534,9 +51604,9 @@ "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" + "target": "backend_src_payment_dto_initiate_payment_dto_ts_apipropertyoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -51546,9 +51616,9 @@ "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" + "target": "backend_src_payment_dto_initiate_payment_dto_ts_isoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -51558,9 +51628,9 @@ "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" + "target": "backend_src_payment_dto_initiate_payment_dto_ts_isstring", + "confidence_score": 1.0 }, { "relation": "references", @@ -51570,9 +51640,9 @@ "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" + "target": "backend_src_payment_dto_initiate_payment_dto_ts_apiproperty", + "confidence_score": 1.0 }, { "relation": "references", @@ -51582,9 +51652,9 @@ "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" + "target": "backend_src_payment_dto_initiate_payment_dto_ts_isnotempty", + "confidence_score": 1.0 }, { "relation": "references", @@ -51594,9 +51664,9 @@ "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" + "target": "backend_src_payment_dto_initiate_payment_dto_ts_apiproperty", + "confidence_score": 1.0 }, { "relation": "references", @@ -51606,9 +51676,9 @@ "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" + "target": "backend_src_payment_dto_initiate_payment_dto_ts_isnotempty", + "confidence_score": 1.0 }, { "relation": "references", @@ -51618,9 +51688,9 @@ "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" + "target": "backend_src_payment_dto_initiate_payment_dto_ts_apipropertyoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -51630,9 +51700,9 @@ "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" + "target": "backend_src_payment_dto_initiate_payment_dto_ts_isoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -51642,9 +51712,9 @@ "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" + "target": "backend_src_payment_dto_initiate_payment_dto_ts_isstring", + "confidence_score": 1.0 }, { "relation": "references", @@ -51654,9 +51724,9 @@ "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" + "target": "backend_src_payment_dto_verify_payment_dto_ts_apipropertyoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -51666,9 +51736,9 @@ "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" + "target": "backend_src_payment_dto_verify_payment_dto_ts_isoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -51678,9 +51748,9 @@ "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" + "target": "backend_src_payment_dto_verify_payment_dto_ts_isstring", + "confidence_score": 1.0 }, { "relation": "references", @@ -51690,9 +51760,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_ts_apitags" + "target": "backend_src_payment_payment_controller_ts_apitags", + "confidence_score": 1.0 }, { "relation": "references", @@ -51702,9 +51772,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_ts_controller" + "target": "backend_src_payment_payment_controller_ts_controller", + "confidence_score": 1.0 }, { "relation": "references", @@ -51714,9 +51784,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -51726,9 +51796,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -51738,9 +51808,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -51750,9 +51820,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -51762,9 +51832,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -51774,9 +51844,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -51786,9 +51856,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -51798,9 +51868,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -51810,9 +51880,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -51822,9 +51892,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -51834,9 +51904,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_query", + "confidence_score": 1.0 }, { "relation": "references", @@ -51846,9 +51916,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -51858,9 +51928,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_gethealth", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -51870,9 +51940,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -51882,9 +51952,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -51894,9 +51964,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -51906,9 +51976,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -51918,9 +51988,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -51930,9 +52000,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -51942,9 +52012,9 @@ "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_get" + "target": "backend_src_payment_payment_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -51954,9 +52024,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -51966,9 +52036,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_query", + "confidence_score": 1.0 }, { "relation": "references", @@ -51978,9 +52048,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_res", + "confidence_score": 1.0 }, { "relation": "references", @@ -51990,9 +52060,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", - "target": "ip" + "target": "ip", + "confidence_score": 1.0 }, { "relation": "references", @@ -52002,9 +52072,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", - "target": "headers" + "target": "headers", + "confidence_score": 1.0 }, { "relation": "references", @@ -52014,9 +52084,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -52026,9 +52096,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -52038,9 +52108,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -52050,9 +52120,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_res", + "confidence_score": 1.0 }, { "relation": "references", @@ -52062,9 +52132,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", - "target": "ip" + "target": "ip", + "confidence_score": 1.0 }, { "relation": "references", @@ -52074,9 +52144,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", - "target": "headers" + "target": "headers", + "confidence_score": 1.0 }, { "relation": "references", @@ -52086,9 +52156,9 @@ "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_useguards" + "target": "backend_src_payment_payment_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -52098,9 +52168,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -52110,9 +52180,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -52122,9 +52192,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -52134,9 +52204,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_apiokresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -52146,9 +52216,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_apibadrequestresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -52158,9 +52228,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_req", + "confidence_score": 1.0 }, { "relation": "references", @@ -52170,9 +52240,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -52182,9 +52252,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", - "target": "ip" + "target": "ip", + "confidence_score": 1.0 }, { "relation": "references", @@ -52194,9 +52264,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", - "target": "headers" + "target": "headers", + "confidence_score": 1.0 }, { "relation": "references", @@ -52206,9 +52276,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "target": "backend_src_payment_payment_controller_ts_useguards" + "target": "backend_src_payment_payment_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -52218,9 +52288,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "target": "backend_src_payment_payment_controller_ts_apibearerauth" + "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -52230,9 +52300,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "target": "backend_src_payment_payment_controller_ts_post" + "target": "backend_src_payment_payment_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -52242,9 +52312,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "target": "backend_src_payment_payment_controller_ts_apioperation" + "target": "backend_src_payment_payment_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -52254,9 +52324,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "target": "backend_src_payment_payment_controller_ts_apiokresponse" + "target": "backend_src_payment_payment_controller_ts_apiokresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -52266,9 +52336,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "target": "backend_src_payment_payment_controller_ts_req" + "target": "backend_src_payment_payment_controller_ts_req", + "confidence_score": 1.0 }, { "relation": "references", @@ -52278,9 +52348,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "target": "backend_src_payment_payment_controller_ts_body" + "target": "backend_src_payment_payment_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -52290,9 +52360,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "target": "ip" + "target": "ip", + "confidence_score": 1.0 }, { "relation": "references", @@ -52302,9 +52372,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "target": "headers" + "target": "headers", + "confidence_score": 1.0 }, { "relation": "references", @@ -52314,9 +52384,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -52326,9 +52396,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -52338,9 +52408,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -52350,9 +52420,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -52362,9 +52432,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -52374,9 +52444,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -52386,9 +52456,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -52398,9 +52468,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -52410,9 +52480,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -52422,9 +52492,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -52434,9 +52504,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -52446,9 +52516,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -52458,9 +52528,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -52470,9 +52540,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -52482,9 +52552,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_manualverify", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -52494,9 +52564,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -52506,9 +52576,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -52518,9 +52588,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -52530,9 +52600,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -52542,9 +52612,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -52554,9 +52624,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -52566,9 +52636,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -52578,9 +52648,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -52590,9 +52660,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -52602,9 +52672,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -52614,9 +52684,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -52626,9 +52696,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -52638,9 +52708,9 @@ "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" + "target": "backend_src_payment_payment_controller_ts_query", + "confidence_score": 1.0 }, { "relation": "references", @@ -52650,9 +52720,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", - "target": "ip" + "target": "ip", + "confidence_score": 1.0 }, { "relation": "references", @@ -52662,9 +52732,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", - "target": "headers" + "target": "headers", + "confidence_score": 1.0 }, { "relation": "references", @@ -52674,9 +52744,9 @@ "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" + "target": "backend_src_payment_payment_module_ts_module", + "confidence_score": 1.0 }, { "relation": "references", @@ -52686,9 +52756,9 @@ "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" + "target": "backend_src_payment_payment_service_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -52698,9 +52768,9 @@ "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" + "target": "backend_src_payment_zibal_service_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -52710,9 +52780,9 @@ "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" + "target": "backend_src_pets_dto_create_health_log_dto_ts_apiproperty", + "confidence_score": 1.0 }, { "relation": "references", @@ -52722,9 +52792,9 @@ "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" + "target": "backend_src_pets_dto_create_health_log_dto_ts_isnotempty", + "confidence_score": 1.0 }, { "relation": "references", @@ -52734,9 +52804,9 @@ "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" + "target": "backend_src_pets_dto_create_health_log_dto_ts_apipropertyoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -52746,9 +52816,9 @@ "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" + "target": "backend_src_pets_dto_create_health_log_dto_ts_isoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -52758,9 +52828,9 @@ "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" + "target": "backend_src_pets_dto_create_health_log_dto_ts_isstring", + "confidence_score": 1.0 }, { "relation": "references", @@ -52770,9 +52840,9 @@ "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" + "target": "backend_src_pets_dto_create_pet_dto_ts_apiproperty", + "confidence_score": 1.0 }, { "relation": "references", @@ -52782,9 +52852,9 @@ "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" + "target": "backend_src_pets_dto_create_pet_dto_ts_isnotempty", + "confidence_score": 1.0 }, { "relation": "references", @@ -52794,9 +52864,9 @@ "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" + "target": "backend_src_pets_dto_create_pet_dto_ts_isnumber", + "confidence_score": 1.0 }, { "relation": "references", @@ -52806,9 +52876,9 @@ "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" + "target": "backend_src_pets_dto_create_pet_dto_ts_apipropertyoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -52818,9 +52888,9 @@ "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" + "target": "backend_src_pets_dto_create_pet_dto_ts_isoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -52830,9 +52900,9 @@ "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" + "target": "backend_src_pets_dto_create_pet_dto_ts_isarray", + "confidence_score": 1.0 }, { "relation": "references", @@ -52842,9 +52912,9 @@ "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" + "target": "backend_src_pets_dto_create_pet_dto_ts_isstring", + "confidence_score": 1.0 }, { "relation": "references", @@ -52854,9 +52924,9 @@ "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" + "target": "backend_src_pets_dto_create_reminder_dto_ts_apiproperty", + "confidence_score": 1.0 }, { "relation": "references", @@ -52866,9 +52936,9 @@ "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" + "target": "backend_src_pets_dto_create_reminder_dto_ts_isnotempty", + "confidence_score": 1.0 }, { "relation": "references", @@ -52878,9 +52948,9 @@ "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" + "target": "backend_src_pets_dto_create_reminder_dto_ts_apipropertyoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -52890,9 +52960,9 @@ "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" + "target": "backend_src_pets_dto_create_reminder_dto_ts_isoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -52902,9 +52972,9 @@ "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" + "target": "backend_src_pets_dto_create_reminder_dto_ts_isstring", + "confidence_score": 1.0 }, { "relation": "references", @@ -52914,9 +52984,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_apitags", + "confidence_score": 1.0 }, { "relation": "references", @@ -52926,9 +52996,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -52938,9 +53008,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -52950,9 +53020,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_controller", + "confidence_score": 1.0 }, { "relation": "references", @@ -52962,9 +53032,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller", - "target": "frontend_admin_panel_src_types_admin_apiresponse" + "target": "frontend_admin_panel_src_types_admin_apiresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -52974,9 +53044,9 @@ "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_post" + "target": "backend_src_pets_pets_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -52986,9 +53056,9 @@ "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_apioperation" + "target": "backend_src_pets_pets_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -52998,9 +53068,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_req", + "confidence_score": 1.0 }, { "relation": "references", @@ -53010,9 +53080,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -53022,9 +53092,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -53034,9 +53104,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -53046,9 +53116,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -53058,9 +53128,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_req", + "confidence_score": 1.0 }, { "relation": "references", @@ -53070,9 +53140,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -53082,9 +53152,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -53094,9 +53164,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_req", + "confidence_score": 1.0 }, { "relation": "references", @@ -53106,9 +53176,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -53118,9 +53188,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -53130,9 +53200,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -53142,9 +53212,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_apiokresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -53154,9 +53224,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_query", + "confidence_score": 1.0 }, { "relation": "references", @@ -53166,9 +53236,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_req", + "confidence_score": 1.0 }, { "relation": "references", @@ -53178,9 +53248,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -53190,9 +53260,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -53202,9 +53272,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_apiokresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -53214,9 +53284,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_apinotfoundresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -53226,9 +53296,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -53238,9 +53308,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_req", + "confidence_score": 1.0 }, { "relation": "references", @@ -53250,9 +53320,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_delete", + "confidence_score": 1.0 }, { "relation": "references", @@ -53262,9 +53332,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -53274,9 +53344,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_apiokresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -53286,9 +53356,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_apinotfoundresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -53298,9 +53368,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -53310,9 +53380,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_req", + "confidence_score": 1.0 }, { "relation": "references", @@ -53322,9 +53392,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -53334,9 +53404,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -53346,9 +53416,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_req", + "confidence_score": 1.0 }, { "relation": "references", @@ -53358,9 +53428,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -53370,9 +53440,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -53382,9 +53452,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_patch", + "confidence_score": 1.0 }, { "relation": "references", @@ -53394,9 +53464,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -53406,9 +53476,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_apiokresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -53418,9 +53488,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_apinotfoundresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -53430,9 +53500,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_req", + "confidence_score": 1.0 }, { "relation": "references", @@ -53442,9 +53512,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -53454,9 +53524,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -53466,9 +53536,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -53478,9 +53548,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_uploadedfile", + "confidence_score": 1.0 }, { "relation": "references", @@ -53490,9 +53560,9 @@ "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_apicreatedresponse" + "target": "backend_src_pets_pets_controller_ts_apicreatedresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -53502,9 +53572,9 @@ "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_apibadrequestresponse" + "target": "backend_src_pets_pets_controller_ts_apibadrequestresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -53514,9 +53584,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -53526,9 +53596,9 @@ "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" + "target": "backend_src_pets_pets_controller_ts_useinterceptors", + "confidence_score": 1.0 }, { "relation": "references", @@ -53538,9 +53608,9 @@ "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" + "target": "backend_src_pets_pets_module_ts_module", + "confidence_score": 1.0 }, { "relation": "references", @@ -53550,9 +53620,9 @@ "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" + "target": "backend_src_pets_pets_service_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -53562,9 +53632,9 @@ "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" + "target": "backend_src_prescriptions_prescriptions_controller_ts_apitags", + "confidence_score": 1.0 }, { "relation": "references", @@ -53574,9 +53644,9 @@ "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" + "target": "backend_src_prescriptions_prescriptions_controller_ts_controller", + "confidence_score": 1.0 }, { "relation": "references", @@ -53586,9 +53656,9 @@ "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" + "target": "backend_src_prescriptions_prescriptions_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -53598,9 +53668,9 @@ "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" + "target": "backend_src_prescriptions_prescriptions_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -53610,9 +53680,9 @@ "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" + "target": "backend_src_prescriptions_prescriptions_controller_ts_req", + "confidence_score": 1.0 }, { "relation": "references", @@ -53622,9 +53692,9 @@ "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" + "target": "backend_src_prescriptions_prescriptions_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -53634,9 +53704,9 @@ "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" + "target": "backend_src_prescriptions_prescriptions_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -53646,9 +53716,9 @@ "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" + "target": "backend_src_prescriptions_prescriptions_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -53658,9 +53728,9 @@ "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" + "target": "backend_src_prescriptions_prescriptions_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -53670,9 +53740,9 @@ "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" + "target": "backend_src_prescriptions_prescriptions_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -53682,9 +53752,9 @@ "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" + "target": "backend_src_prescriptions_prescriptions_controller_ts_req", + "confidence_score": 1.0 }, { "relation": "references", @@ -53694,9 +53764,9 @@ "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" + "target": "backend_src_prescriptions_prescriptions_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -53706,9 +53776,9 @@ "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" + "target": "backend_src_prescriptions_prescriptions_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -53718,9 +53788,9 @@ "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" + "target": "backend_src_prescriptions_prescriptions_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -53730,9 +53800,9 @@ "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" + "target": "backend_src_prescriptions_prescriptions_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -53742,9 +53812,9 @@ "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" + "target": "backend_src_prescriptions_prescriptions_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -53754,9 +53824,9 @@ "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" + "target": "backend_src_prescriptions_prescriptions_controller_ts_req", + "confidence_score": 1.0 }, { "relation": "references", @@ -53766,9 +53836,9 @@ "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" + "target": "backend_src_prescriptions_prescriptions_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -53778,9 +53848,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -53790,9 +53860,9 @@ "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" + "target": "backend_src_prescriptions_prescriptions_controller_ts_patch", + "confidence_score": 1.0 }, { "relation": "references", @@ -53802,9 +53872,9 @@ "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" + "target": "backend_src_prescriptions_prescriptions_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -53814,9 +53884,9 @@ "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" + "target": "backend_src_prescriptions_prescriptions_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -53826,9 +53896,9 @@ "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" + "target": "backend_src_prescriptions_prescriptions_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -53838,9 +53908,9 @@ "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" + "target": "backend_src_prescriptions_prescriptions_module_ts_module", + "confidence_score": 1.0 }, { "relation": "references", @@ -53850,9 +53920,9 @@ "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" + "target": "backend_src_prescriptions_prescriptions_service_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -53862,9 +53932,9 @@ "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" + "target": "backend_src_prisma_prisma_module_ts_global", + "confidence_score": 1.0 }, { "relation": "references", @@ -53874,9 +53944,9 @@ "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" + "target": "backend_src_prisma_prisma_module_ts_module", + "confidence_score": 1.0 }, { "relation": "references", @@ -53886,9 +53956,9 @@ "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" + "target": "backend_src_prisma_prisma_service_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -53898,9 +53968,9 @@ "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" + "target": "backend_src_products_dto_get_products_dto_ts_isenum", + "confidence_score": 1.0 }, { "relation": "references", @@ -53910,9 +53980,9 @@ "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" + "target": "backend_src_products_dto_get_products_dto_ts_apipropertyoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -53922,9 +53992,9 @@ "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" + "target": "backend_src_products_dto_get_products_dto_ts_isoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -53934,9 +54004,9 @@ "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" + "target": "backend_src_products_dto_get_products_dto_ts_isstring", + "confidence_score": 1.0 }, { "relation": "references", @@ -53946,9 +54016,9 @@ "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" + "target": "backend_src_products_products_controller_ts_apitags", + "confidence_score": 1.0 }, { "relation": "references", @@ -53958,9 +54028,9 @@ "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" + "target": "backend_src_products_products_controller_ts_controller", + "confidence_score": 1.0 }, { "relation": "references", @@ -53970,9 +54040,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_controller_productscontroller", - "target": "frontend_admin_panel_src_types_admin_apiresponse" + "target": "frontend_admin_panel_src_types_admin_apiresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -53982,9 +54052,9 @@ "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" + "target": "backend_src_products_products_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -53994,9 +54064,9 @@ "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" + "target": "backend_src_products_products_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -54006,9 +54076,9 @@ "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" + "target": "backend_src_products_products_controller_ts_query", + "confidence_score": 1.0 }, { "relation": "references", @@ -54018,9 +54088,9 @@ "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" + "target": "backend_src_products_products_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -54030,9 +54100,9 @@ "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" + "target": "backend_src_products_products_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -54042,9 +54112,9 @@ "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" + "target": "backend_src_products_products_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -54054,9 +54124,9 @@ "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" + "target": "backend_src_products_products_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -54066,9 +54136,9 @@ "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" + "target": "backend_src_products_products_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -54078,9 +54148,9 @@ "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" + "target": "backend_src_products_products_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -54090,9 +54160,9 @@ "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" + "target": "backend_src_products_products_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -54102,9 +54172,9 @@ "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" + "target": "backend_src_products_products_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -54114,9 +54184,9 @@ "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" + "target": "backend_src_products_products_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -54126,9 +54196,9 @@ "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" + "target": "backend_src_products_products_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -54138,9 +54208,9 @@ "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" + "target": "backend_src_products_products_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -54150,9 +54220,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_controller_productscontroller_updatedosageconfig", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -54162,9 +54232,9 @@ "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" + "target": "backend_src_products_products_controller_ts_patch", + "confidence_score": 1.0 }, { "relation": "references", @@ -54174,9 +54244,9 @@ "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" + "target": "backend_src_products_products_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -54186,9 +54256,9 @@ "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" + "target": "backend_src_products_products_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -54198,9 +54268,9 @@ "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" + "target": "backend_src_products_products_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -54210,9 +54280,9 @@ "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" + "target": "backend_src_products_products_module_ts_module", + "confidence_score": 1.0 }, { "relation": "references", @@ -54222,9 +54292,9 @@ "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" + "target": "backend_src_products_products_service_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -54234,9 +54304,9 @@ "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" + "target": "backend_src_redis_redis_module_ts_global", + "confidence_score": 1.0 }, { "relation": "references", @@ -54246,9 +54316,9 @@ "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" + "target": "backend_src_redis_redis_module_ts_module", + "confidence_score": 1.0 }, { "relation": "references", @@ -54258,9 +54328,9 @@ "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" + "target": "backend_src_redis_redis_service_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -54270,9 +54340,9 @@ "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" + "target": "backend_src_reviews_dto_create_review_dto_ts_isnotempty", + "confidence_score": 1.0 }, { "relation": "references", @@ -54282,9 +54352,9 @@ "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" + "target": "backend_src_reviews_dto_create_review_dto_ts_apiproperty", + "confidence_score": 1.0 }, { "relation": "references", @@ -54294,9 +54364,9 @@ "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" + "target": "backend_src_reviews_dto_create_review_dto_ts_isstring", + "confidence_score": 1.0 }, { "relation": "references", @@ -54306,9 +54376,9 @@ "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" + "target": "backend_src_reviews_dto_create_review_dto_ts_isoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -54318,9 +54388,9 @@ "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" + "target": "backend_src_reviews_dto_create_review_dto_ts_isint", + "confidence_score": 1.0 }, { "relation": "references", @@ -54330,9 +54400,9 @@ "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" + "target": "backend_src_reviews_dto_create_review_dto_ts_min", + "confidence_score": 1.0 }, { "relation": "references", @@ -54342,9 +54412,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_dto_create_review_dto_createreviewdto", - "target": "max" + "target": "max", + "confidence_score": 1.0 }, { "relation": "references", @@ -54354,9 +54424,9 @@ "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" + "target": "backend_src_reviews_dto_update_review_dto_ts_apiproperty", + "confidence_score": 1.0 }, { "relation": "references", @@ -54366,9 +54436,9 @@ "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" + "target": "backend_src_reviews_dto_update_review_dto_ts_isstring", + "confidence_score": 1.0 }, { "relation": "references", @@ -54378,9 +54448,9 @@ "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" + "target": "backend_src_reviews_dto_update_review_dto_ts_isoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -54390,9 +54460,9 @@ "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" + "target": "backend_src_reviews_dto_update_review_dto_ts_isin", + "confidence_score": 1.0 }, { "relation": "references", @@ -54402,9 +54472,9 @@ "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" + "target": "backend_src_reviews_reviews_controller_ts_apitags", + "confidence_score": 1.0 }, { "relation": "references", @@ -54414,9 +54484,9 @@ "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" + "target": "backend_src_reviews_reviews_controller_ts_controller", + "confidence_score": 1.0 }, { "relation": "references", @@ -54426,9 +54496,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", - "target": "backend_src_reviews_reviews_controller_ts_post" + "target": "backend_src_reviews_reviews_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -54438,9 +54508,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", - "target": "backend_src_reviews_reviews_controller_ts_apioperation" + "target": "backend_src_reviews_reviews_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -54450,9 +54520,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", - "target": "backend_src_reviews_reviews_controller_ts_param" + "target": "backend_src_reviews_reviews_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -54462,9 +54532,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", - "target": "backend_src_reviews_reviews_controller_ts_body" + "target": "backend_src_reviews_reviews_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -54474,9 +54544,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", - "target": "backend_src_reviews_reviews_controller_ts_req" + "target": "backend_src_reviews_reviews_controller_ts_req", + "confidence_score": 1.0 }, { "relation": "references", @@ -54486,9 +54556,9 @@ "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" + "target": "backend_src_reviews_reviews_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -54498,9 +54568,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -54510,9 +54580,9 @@ "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" + "target": "backend_src_reviews_reviews_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -54522,9 +54592,9 @@ "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" + "target": "backend_src_reviews_reviews_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -54534,9 +54604,9 @@ "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" + "target": "backend_src_reviews_reviews_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -54546,9 +54616,9 @@ "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" + "target": "backend_src_reviews_reviews_controller_ts_delete", + "confidence_score": 1.0 }, { "relation": "references", @@ -54558,9 +54628,9 @@ "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" + "target": "backend_src_reviews_reviews_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -54570,9 +54640,9 @@ "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" + "target": "backend_src_reviews_reviews_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -54582,9 +54652,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -54594,9 +54664,9 @@ "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" + "target": "backend_src_reviews_reviews_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -54606,9 +54676,9 @@ "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" + "target": "backend_src_reviews_reviews_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -54618,9 +54688,9 @@ "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" + "target": "backend_src_reviews_reviews_controller_ts_query", + "confidence_score": 1.0 }, { "relation": "references", @@ -54630,9 +54700,9 @@ "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" + "target": "backend_src_reviews_reviews_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -54642,9 +54712,9 @@ "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" + "target": "backend_src_reviews_reviews_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -54654,9 +54724,9 @@ "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" + "target": "backend_src_reviews_reviews_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -54666,9 +54736,9 @@ "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" + "target": "backend_src_reviews_reviews_controller_ts_query", + "confidence_score": 1.0 }, { "relation": "references", @@ -54678,9 +54748,9 @@ "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" + "target": "backend_src_reviews_reviews_controller_ts_patch", + "confidence_score": 1.0 }, { "relation": "references", @@ -54690,9 +54760,9 @@ "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" + "target": "backend_src_reviews_reviews_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -54702,9 +54772,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -54714,9 +54784,9 @@ "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" + "target": "backend_src_reviews_reviews_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -54726,9 +54796,9 @@ "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" + "target": "backend_src_reviews_reviews_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -54738,9 +54808,9 @@ "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" + "target": "backend_src_reviews_reviews_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -54750,9 +54820,9 @@ "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" + "target": "backend_src_reviews_reviews_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -54762,9 +54832,9 @@ "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" + "target": "backend_src_reviews_reviews_module_ts_module", + "confidence_score": 1.0 }, { "relation": "references", @@ -54774,9 +54844,9 @@ "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" + "target": "backend_src_reviews_reviews_service_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -54786,9 +54856,9 @@ "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" + "target": "backend_src_seo_seo_controller_ts_apitags", + "confidence_score": 1.0 }, { "relation": "references", @@ -54798,9 +54868,9 @@ "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" + "target": "backend_src_seo_seo_controller_ts_controller", + "confidence_score": 1.0 }, { "relation": "references", @@ -54810,9 +54880,9 @@ "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" + "target": "backend_src_seo_seo_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -54822,9 +54892,9 @@ "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" + "target": "backend_src_seo_seo_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -54834,9 +54904,9 @@ "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" + "target": "backend_src_seo_seo_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -54846,9 +54916,9 @@ "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" + "target": "backend_src_seo_seo_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -54858,9 +54928,9 @@ "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" + "target": "backend_src_seo_seo_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -54870,9 +54940,9 @@ "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" + "target": "backend_src_seo_seo_module_ts_module", + "confidence_score": 1.0 }, { "relation": "references", @@ -54882,9 +54952,9 @@ "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" + "target": "backend_src_seo_seo_service_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -54894,9 +54964,9 @@ "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" + "target": "backend_src_settings_dto_sms_log_query_dto_ts_type", + "confidence_score": 1.0 }, { "relation": "references", @@ -54906,9 +54976,9 @@ "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" + "target": "backend_src_settings_dto_sms_log_query_dto_ts_isnumber", + "confidence_score": 1.0 }, { "relation": "references", @@ -54918,9 +54988,9 @@ "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" + "target": "backend_src_settings_dto_sms_log_query_dto_ts_isstring", + "confidence_score": 1.0 }, { "relation": "references", @@ -54930,9 +55000,9 @@ "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" + "target": "backend_src_settings_dto_sms_log_query_dto_ts_apipropertyoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -54942,9 +55012,9 @@ "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" + "target": "backend_src_settings_dto_sms_log_query_dto_ts_isoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -54954,9 +55024,9 @@ "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" + "target": "backend_src_settings_dto_sms_log_query_dto_ts_isin", + "confidence_score": 1.0 }, { "relation": "references", @@ -54966,9 +55036,9 @@ "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" + "target": "backend_src_settings_settings_controller_ts_apitags", + "confidence_score": 1.0 }, { "relation": "references", @@ -54978,285 +55048,57 @@ "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" + "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": "L220", + "source_location": "L229", "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" + "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": "L221", + "source_location": "L230", "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_settingscontroller_addpattern", - "target": "backend_src_common_decorators_roles_decorator_roles" + "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": "L222", + "source_location": "L231", "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" + "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": "L223", + "source_location": "L232", "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": "L224", - "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": "L228", - "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": "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_clearallsmslogs", - "target": "backend_src_settings_settings_controller_ts_useguards" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L266", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "confidence_score": 1.0, - "source": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", - "target": "backend_src_common_decorators_roles_decorator_roles" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L267", - "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": "L268", - "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": "L269", - "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": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L114", - "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": "L115", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "confidence_score": 1.0, - "source": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", - "target": "backend_src_common_decorators_roles_decorator_roles" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L116", - "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": "L117", - "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": "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_apioperation" - }, - { - "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_settings_settings_controller_settingscontroller_deletescientificterm", - "target": "backend_src_settings_settings_controller_ts_param" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L256", - "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": "L257", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "confidence_score": 1.0, - "source": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", - "target": "backend_src_common_decorators_roles_decorator_roles" - }, - { - "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_deletesmslog", - "target": "backend_src_settings_settings_controller_ts_apibearerauth" - }, - { - "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_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": "L260", - "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": "L261", - "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" + "target": "backend_src_settings_settings_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -55266,45 +55108,9 @@ "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": "L234", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "confidence_score": 1.0, - "source": "backend_src_settings_settings_controller_settingscontroller_editpattern", - "target": "backend_src_common_decorators_roles_decorator_roles" - }, - { - "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_editpattern", - "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_editpattern", - "target": "backend_src_settings_settings_controller_ts_put" + "source": "backend_src_settings_settings_controller_settingscontroller_addpattern", + "target": "backend_src_settings_settings_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -55314,225 +55120,249 @@ "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", + "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_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": "L275", + "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": "L276", + "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": "L277", + "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": "L278", + "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": "L114", + "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": "L115", + "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": "L116", + "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": "L117", + "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": "L118", + "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": "L119", + "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": "L265", + "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": "L266", + "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": "L267", + "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": "L268", + "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": "L269", + "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": "L270", + "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": "L242", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_editpattern", - "target": "backend_src_settings_settings_controller_ts_apioperation" + "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": "L240", + "source_location": "L243", "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" + "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": "L240", + "source_location": "L244", "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": "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_getfinancial", - "target": "backend_src_settings_settings_controller_ts_get" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L81", - "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": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L140", - "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": "L141", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "confidence_score": 1.0, - "source": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", - "target": "backend_src_common_decorators_roles_decorator_roles" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L142", - "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": "L143", - "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": "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_apioperation" - }, - { - "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_getpatterns", - "target": "backend_src_settings_settings_controller_ts_useguards" - }, - { - "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_settings_settings_controller_settingscontroller_getpatterns", - "target": "backend_src_common_decorators_roles_decorator_roles" - }, - { - "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_getpatterns", - "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_getpatterns", - "target": "backend_src_settings_settings_controller_ts_get" - }, - { - "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_getpatterns", - "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_getscientificterms", - "target": "backend_src_settings_settings_controller_ts_get" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L97", - "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": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L124", - "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": "L125", - "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" + "target": "backend_src_settings_settings_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -55542,9 +55372,9 @@ "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" + "source": "backend_src_settings_settings_controller_settingscontroller_editpattern", + "target": "backend_src_settings_settings_controller_ts_put", + "confidence_score": 1.0 }, { "relation": "references", @@ -55554,33 +55384,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, - "source": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", - "target": "backend_src_common_decorators_roles_decorator_roles" - }, - { - "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_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": "L248", - "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" + "source": "backend_src_settings_settings_controller_settingscontroller_editpattern", + "target": "backend_src_settings_settings_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -55590,717 +55396,213 @@ "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" + "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": "L252", + "source_location": "L249", "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" + "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": "L178", + "source_location": "L80", "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" + "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": "L179", + "source_location": "L81", "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, - "source": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", - "target": "backend_src_common_decorators_roles_decorator_roles" + "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": "L180", + "source_location": "L140", "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" + "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": "L181", + "source_location": "L141", "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" + "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": "L182", + "source_location": "L142", "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" + "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", - "source_location": "L159", + "source_location": "L143", "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" + "source": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", + "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": "L160", + "source_location": "L144", "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, - "source": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", - "target": "backend_src_common_decorators_roles_decorator_roles" + "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": "L161", + "source_location": "L218", "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" + "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": "L162", + "source_location": "L219", "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" + "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": "L163", + "source_location": "L220", "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" + "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": "L31", + "source_location": "L221", "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" + "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": "L32", + "source_location": "L222", "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" + "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": "L33", + "source_location": "L96", "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" + "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": "L56", + "source_location": "L97", "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" + "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": "L57", + "source_location": "L124", "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, - "source": "backend_src_settings_settings_controller_settingscontroller_patchuitext", - "target": "backend_src_common_decorators_roles_decorator_roles" + "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": "L58", + "source_location": "L125", "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_apibearerauth" - }, - { - "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_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": "L60", - "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": "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_body" - }, - { - "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_param" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L71", - "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": "L72", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "confidence_score": 1.0, - "source": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", - "target": "backend_src_common_decorators_roles_decorator_roles" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L73", - "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": "L74", - "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_put" - }, - { - "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_apioperation" - }, - { - "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_settings_settings_controller_settingscontroller_putbulkuitexts", - "target": "backend_src_settings_settings_controller_ts_body" - }, - { - "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": "L42", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "confidence_score": 1.0, - "source": "backend_src_settings_settings_controller_settingscontroller_putuitext", - "target": "backend_src_common_decorators_roles_decorator_roles" - }, - { - "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": "L46", - "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": "L46", - "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": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L196", - "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": "L197", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "confidence_score": 1.0, - "source": "backend_src_settings_settings_controller_settingscontroller_testsms", - "target": "backend_src_common_decorators_roles_decorator_roles" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L198", - "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": "L199", - "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": "L200", - "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": "L204", - "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": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L86", - "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": "L87", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "confidence_score": 1.0, - "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", - "target": "backend_src_common_decorators_roles_decorator_roles" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L88", - "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": "L89", - "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": "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_put" - }, - { - "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_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": "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_body" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L149", - "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": "L150", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "confidence_score": 1.0, - "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", - "target": "backend_src_common_decorators_roles_decorator_roles" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L151", - "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": "L152", - "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": "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_apioperation" - }, - { - "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_settings_settings_controller_settingscontroller_updatefinancialsettings", - "target": "backend_src_settings_settings_controller_ts_body" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L130", - "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": "L131", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "confidence_score": 1.0, - "source": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", - "target": "backend_src_common_decorators_roles_decorator_roles" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L132", - "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": "L133", - "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": "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_apioperation" - }, - { - "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_settings_settings_controller_settingscontroller_updateseosettings", - "target": "backend_src_settings_settings_controller_ts_body" + "source": "backend_src_settings_settings_controller_settingscontroller_getseosettings", + "target": "backend_src_settings_settings_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -56310,9 +55612,9 @@ "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" + "source": "backend_src_settings_settings_controller_settingscontroller_getsmscredit", + "target": "backend_src_settings_settings_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -56322,9 +55624,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, - "source": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", - "target": "backend_src_common_decorators_roles_decorator_roles" + "source": "backend_src_settings_settings_controller_settingscontroller_getsmscredit", + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -56334,9 +55636,9 @@ "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" + "source": "backend_src_settings_settings_controller_settingscontroller_getsmscredit", + "target": "backend_src_settings_settings_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -56346,9 +55648,9 @@ "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" + "source": "backend_src_settings_settings_controller_settingscontroller_getsmscredit", + "target": "backend_src_settings_settings_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -56358,21 +55660,849 @@ "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" + "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": "L192", + "source_location": "L254", + "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": "L255", + "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": "L256", + "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": "L257", + "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": "L258", + "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": "L261", + "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": "L178", + "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": "L179", + "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": "L180", + "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": "L181", + "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": "L182", + "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": "L159", + "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": "L160", + "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": "L161", + "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": "L162", + "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": "L163", + "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": "L56", + "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": "L57", + "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": "L58", + "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": "L59", + "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": "L60", + "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": "L61", + "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": "L61", + "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": "L71", + "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": "L72", + "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": "L73", + "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": "L74", + "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": "L75", + "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": "L76", + "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": "L46", + "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": "L46", + "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": "L205", + "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": "L206", + "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": "L207", + "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": "L208", + "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": "L209", + "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": "L213", + "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": "L86", + "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": "L87", + "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": "L88", + "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": "L89", + "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": "L90", + "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": "L91", + "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": "L92", + "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": "L149", + "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": "L150", + "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": "L151", + "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": "L152", + "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": "L153", + "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": "L154", + "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": "L130", + "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": "L131", + "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": "L132", + "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": "L133", + "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": "L134", + "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": "L135", + "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": "L196", "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" + "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": "L197", + "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": "L198", + "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": "L199", + "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": "L200", + "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": "L201", + "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", @@ -56382,9 +56512,9 @@ "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" + "target": "backend_src_settings_settings_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -56394,9 +56524,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -56406,9 +56536,9 @@ "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" + "target": "backend_src_settings_settings_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -56418,9 +56548,9 @@ "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" + "target": "backend_src_settings_settings_controller_ts_patch", + "confidence_score": 1.0 }, { "relation": "references", @@ -56430,9 +56560,9 @@ "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" + "target": "backend_src_settings_settings_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -56442,9 +56572,9 @@ "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" + "target": "backend_src_settings_settings_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -56454,9 +56584,9 @@ "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" + "target": "backend_src_settings_settings_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -56466,9 +56596,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -56478,9 +56608,9 @@ "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" + "target": "backend_src_settings_settings_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -56490,9 +56620,9 @@ "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" + "target": "backend_src_settings_settings_controller_ts_put", + "confidence_score": 1.0 }, { "relation": "references", @@ -56502,9 +56632,9 @@ "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" + "target": "backend_src_settings_settings_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -56514,9 +56644,9 @@ "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" + "target": "backend_src_settings_settings_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -56526,9 +56656,9 @@ "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" + "target": "backend_src_settings_settings_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -56538,9 +56668,9 @@ "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" + "target": "backend_src_settings_settings_module_ts_module", + "confidence_score": 1.0 }, { "relation": "references", @@ -56550,9 +56680,9 @@ "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" + "target": "backend_src_settings_settings_service_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -56562,9 +56692,9 @@ "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" + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apitags", + "confidence_score": 1.0 }, { "relation": "references", @@ -56574,9 +56704,9 @@ "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" + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_controller", + "confidence_score": 1.0 }, { "relation": "references", @@ -56586,9 +56716,9 @@ "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" + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -56598,9 +56728,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -56610,9 +56740,9 @@ "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" + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -56622,9 +56752,9 @@ "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" + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -56634,9 +56764,9 @@ "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" + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -56646,9 +56776,9 @@ "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" + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -56658,9 +56788,9 @@ "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" + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -56670,9 +56800,9 @@ "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" + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -56682,9 +56812,9 @@ "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" + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -56694,9 +56824,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -56706,9 +56836,9 @@ "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" + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -56718,9 +56848,9 @@ "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" + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_delete", + "confidence_score": 1.0 }, { "relation": "references", @@ -56730,9 +56860,9 @@ "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" + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -56742,9 +56872,9 @@ "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" + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -56754,9 +56884,9 @@ "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" + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -56766,9 +56896,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -56778,9 +56908,9 @@ "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" + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -56790,9 +56920,9 @@ "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" + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_patch", + "confidence_score": 1.0 }, { "relation": "references", @@ -56802,9 +56932,9 @@ "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" + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -56814,9 +56944,9 @@ "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" + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -56826,9 +56956,9 @@ "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" + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -56838,9 +56968,9 @@ "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" + "target": "backend_src_smart_advisor_smart_advisor_module_ts_module", + "confidence_score": 1.0 }, { "relation": "references", @@ -56850,9 +56980,9 @@ "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" + "target": "backend_src_smart_advisor_smart_advisor_service_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -56862,9 +56992,9 @@ "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" + "target": "backend_src_testimonials_testimonials_controller_ts_apitags", + "confidence_score": 1.0 }, { "relation": "references", @@ -56874,9 +57004,9 @@ "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" + "target": "backend_src_testimonials_testimonials_controller_ts_controller", + "confidence_score": 1.0 }, { "relation": "references", @@ -56886,9 +57016,9 @@ "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" + "target": "backend_src_testimonials_testimonials_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -56898,9 +57028,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -56910,9 +57040,9 @@ "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" + "target": "backend_src_testimonials_testimonials_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -56922,9 +57052,9 @@ "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" + "target": "backend_src_testimonials_testimonials_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -56934,9 +57064,9 @@ "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" + "target": "backend_src_testimonials_testimonials_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -56946,9 +57076,9 @@ "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" + "target": "backend_src_testimonials_testimonials_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -56958,9 +57088,9 @@ "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" + "target": "backend_src_testimonials_testimonials_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -56970,9 +57100,9 @@ "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" + "target": "backend_src_testimonials_testimonials_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -56982,9 +57112,9 @@ "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" + "target": "backend_src_testimonials_testimonials_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -56994,9 +57124,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -57006,9 +57136,9 @@ "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" + "target": "backend_src_testimonials_testimonials_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -57018,9 +57148,9 @@ "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" + "target": "backend_src_testimonials_testimonials_controller_ts_delete", + "confidence_score": 1.0 }, { "relation": "references", @@ -57030,9 +57160,9 @@ "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" + "target": "backend_src_testimonials_testimonials_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -57042,9 +57172,9 @@ "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" + "target": "backend_src_testimonials_testimonials_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -57054,9 +57184,9 @@ "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" + "target": "backend_src_testimonials_testimonials_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -57066,9 +57196,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -57078,9 +57208,9 @@ "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" + "target": "backend_src_testimonials_testimonials_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -57090,9 +57220,9 @@ "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" + "target": "backend_src_testimonials_testimonials_controller_ts_patch", + "confidence_score": 1.0 }, { "relation": "references", @@ -57102,9 +57232,9 @@ "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" + "target": "backend_src_testimonials_testimonials_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -57114,9 +57244,9 @@ "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" + "target": "backend_src_testimonials_testimonials_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -57126,9 +57256,9 @@ "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" + "target": "backend_src_testimonials_testimonials_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -57138,9 +57268,9 @@ "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" + "target": "backend_src_testimonials_testimonials_module_ts_module", + "confidence_score": 1.0 }, { "relation": "references", @@ -57150,9 +57280,9 @@ "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" + "target": "backend_src_testimonials_testimonials_service_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -57162,9 +57292,9 @@ "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" + "target": "backend_src_tickets_dto_create_ticket_dto_ts_apipropertyoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -57174,9 +57304,9 @@ "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" + "target": "backend_src_tickets_dto_create_ticket_dto_ts_isoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -57186,9 +57316,9 @@ "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" + "target": "backend_src_tickets_dto_create_ticket_dto_ts_isstring", + "confidence_score": 1.0 }, { "relation": "references", @@ -57198,9 +57328,9 @@ "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" + "target": "backend_src_tickets_dto_create_ticket_dto_ts_apiproperty", + "confidence_score": 1.0 }, { "relation": "references", @@ -57210,9 +57340,9 @@ "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" + "target": "backend_src_tickets_dto_create_ticket_dto_ts_isnotempty", + "confidence_score": 1.0 }, { "relation": "references", @@ -57222,9 +57352,9 @@ "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" + "target": "backend_src_tickets_dto_create_ticket_dto_ts_apipropertyoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -57234,9 +57364,9 @@ "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" + "target": "backend_src_tickets_dto_create_ticket_dto_ts_isoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -57246,9 +57376,9 @@ "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" + "target": "backend_src_tickets_dto_create_ticket_dto_ts_isstring", + "confidence_score": 1.0 }, { "relation": "references", @@ -57258,9 +57388,9 @@ "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" + "target": "backend_src_tickets_dto_create_ticket_dto_ts_apiproperty", + "confidence_score": 1.0 }, { "relation": "references", @@ -57270,9 +57400,9 @@ "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" + "target": "backend_src_tickets_dto_create_ticket_dto_ts_isnotempty", + "confidence_score": 1.0 }, { "relation": "references", @@ -57282,9 +57412,9 @@ "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" + "target": "backend_src_tickets_dto_create_ticket_dto_ts_apipropertyoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -57294,9 +57424,9 @@ "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" + "target": "backend_src_tickets_dto_create_ticket_dto_ts_isoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -57306,9 +57436,9 @@ "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" + "target": "backend_src_tickets_dto_create_ticket_dto_ts_isstring", + "confidence_score": 1.0 }, { "relation": "references", @@ -57318,9 +57448,9 @@ "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" + "target": "backend_src_tickets_dto_ticket_query_dto_ts_type", + "confidence_score": 1.0 }, { "relation": "references", @@ -57330,9 +57460,9 @@ "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" + "target": "backend_src_tickets_dto_ticket_query_dto_ts_isnumber", + "confidence_score": 1.0 }, { "relation": "references", @@ -57342,9 +57472,9 @@ "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" + "target": "backend_src_tickets_dto_ticket_query_dto_ts_apipropertyoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -57354,9 +57484,9 @@ "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" + "target": "backend_src_tickets_dto_ticket_query_dto_ts_isoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -57366,9 +57496,9 @@ "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" + "target": "backend_src_tickets_dto_ticket_query_dto_ts_isstring", + "confidence_score": 1.0 }, { "relation": "references", @@ -57378,9 +57508,9 @@ "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" + "target": "backend_src_tickets_tickets_controller_ts_apitags", + "confidence_score": 1.0 }, { "relation": "references", @@ -57390,9 +57520,9 @@ "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" + "target": "backend_src_tickets_tickets_controller_ts_controller", + "confidence_score": 1.0 }, { "relation": "references", @@ -57402,9 +57532,9 @@ "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" + "target": "backend_src_tickets_tickets_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -57414,9 +57544,9 @@ "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" + "target": "backend_src_tickets_tickets_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -57426,9 +57556,9 @@ "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" + "target": "backend_src_tickets_tickets_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -57438,9 +57568,9 @@ "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" + "target": "backend_src_tickets_tickets_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -57450,9 +57580,9 @@ "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" + "target": "backend_src_tickets_tickets_controller_ts_req", + "confidence_score": 1.0 }, { "relation": "references", @@ -57462,9 +57592,9 @@ "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" + "target": "backend_src_tickets_tickets_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -57474,9 +57604,9 @@ "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" + "target": "backend_src_tickets_tickets_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -57486,9 +57616,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -57498,9 +57628,9 @@ "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" + "target": "backend_src_tickets_tickets_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -57510,9 +57640,9 @@ "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" + "target": "backend_src_tickets_tickets_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -57522,9 +57652,9 @@ "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" + "target": "backend_src_tickets_tickets_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -57534,9 +57664,9 @@ "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" + "target": "backend_src_tickets_tickets_controller_ts_query", + "confidence_score": 1.0 }, { "relation": "references", @@ -57546,9 +57676,9 @@ "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" + "target": "backend_src_tickets_tickets_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -57558,9 +57688,9 @@ "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" + "target": "backend_src_tickets_tickets_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -57570,9 +57700,9 @@ "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" + "target": "backend_src_tickets_tickets_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -57582,9 +57712,9 @@ "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" + "target": "backend_src_tickets_tickets_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -57594,9 +57724,9 @@ "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" + "target": "backend_src_tickets_tickets_controller_ts_req", + "confidence_score": 1.0 }, { "relation": "references", @@ -57606,9 +57736,9 @@ "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" + "target": "backend_src_tickets_tickets_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -57618,9 +57748,9 @@ "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" + "target": "backend_src_tickets_tickets_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -57630,9 +57760,9 @@ "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" + "target": "backend_src_tickets_tickets_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -57642,9 +57772,9 @@ "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" + "target": "backend_src_tickets_tickets_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -57654,9 +57784,9 @@ "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" + "target": "backend_src_tickets_tickets_controller_ts_req", + "confidence_score": 1.0 }, { "relation": "references", @@ -57666,9 +57796,9 @@ "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" + "target": "backend_src_tickets_tickets_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -57678,9 +57808,9 @@ "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" + "target": "backend_src_tickets_tickets_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -57690,9 +57820,9 @@ "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" + "target": "backend_src_tickets_tickets_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -57702,9 +57832,9 @@ "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" + "target": "backend_src_tickets_tickets_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -57714,9 +57844,9 @@ "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" + "target": "backend_src_tickets_tickets_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -57726,9 +57856,9 @@ "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" + "target": "backend_src_tickets_tickets_controller_ts_req", + "confidence_score": 1.0 }, { "relation": "references", @@ -57738,9 +57868,9 @@ "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" + "target": "backend_src_tickets_tickets_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -57750,9 +57880,9 @@ "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" + "target": "backend_src_tickets_tickets_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -57762,9 +57892,9 @@ "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" + "target": "backend_src_tickets_tickets_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -57774,9 +57904,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -57786,9 +57916,9 @@ "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" + "target": "backend_src_tickets_tickets_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -57798,9 +57928,9 @@ "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" + "target": "backend_src_tickets_tickets_controller_ts_put", + "confidence_score": 1.0 }, { "relation": "references", @@ -57810,9 +57940,9 @@ "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" + "target": "backend_src_tickets_tickets_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -57822,9 +57952,9 @@ "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" + "target": "backend_src_tickets_tickets_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -57834,9 +57964,9 @@ "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" + "target": "backend_src_tickets_tickets_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -57846,9 +57976,9 @@ "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" + "target": "backend_src_tickets_tickets_module_ts_module", + "confidence_score": 1.0 }, { "relation": "references", @@ -57858,9 +57988,9 @@ "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" + "target": "backend_src_tickets_tickets_service_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -57870,9 +58000,9 @@ "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" + "target": "backend_src_users_dto_address_dto_ts_apiproperty", + "confidence_score": 1.0 }, { "relation": "references", @@ -57882,9 +58012,9 @@ "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" + "target": "backend_src_users_dto_address_dto_ts_isstring", + "confidence_score": 1.0 }, { "relation": "references", @@ -57894,9 +58024,9 @@ "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" + "target": "backend_src_users_dto_address_dto_ts_isnotempty", + "confidence_score": 1.0 }, { "relation": "references", @@ -57906,9 +58036,9 @@ "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" + "target": "backend_src_users_dto_address_dto_ts_apipropertyoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -57918,9 +58048,9 @@ "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" + "target": "backend_src_users_dto_address_dto_ts_isoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -57930,9 +58060,9 @@ "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" + "target": "backend_src_users_dto_address_dto_ts_isboolean", + "confidence_score": 1.0 }, { "relation": "references", @@ -57942,9 +58072,9 @@ "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" + "target": "backend_src_users_dto_update_profile_dto_ts_isemail", + "confidence_score": 1.0 }, { "relation": "references", @@ -57954,9 +58084,9 @@ "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" + "target": "backend_src_users_dto_update_profile_dto_ts_minlength", + "confidence_score": 1.0 }, { "relation": "references", @@ -57966,9 +58096,9 @@ "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" + "target": "backend_src_users_dto_update_profile_dto_ts_apipropertyoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -57978,9 +58108,9 @@ "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" + "target": "backend_src_users_dto_update_profile_dto_ts_isoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -57990,9 +58120,9 @@ "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" + "target": "backend_src_users_dto_update_profile_dto_ts_isstring", + "confidence_score": 1.0 }, { "relation": "references", @@ -58002,9 +58132,9 @@ "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" + "target": "backend_src_users_users_controller_ts_apitags", + "confidence_score": 1.0 }, { "relation": "references", @@ -58014,9 +58144,9 @@ "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" + "target": "backend_src_users_users_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -58026,9 +58156,9 @@ "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" + "target": "backend_src_users_users_controller_ts_controller", + "confidence_score": 1.0 }, { "relation": "references", @@ -58038,9 +58168,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller", - "target": "frontend_admin_panel_src_types_admin_apiresponse" + "target": "frontend_admin_panel_src_types_admin_apiresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -58050,9 +58180,9 @@ "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" + "target": "backend_src_users_users_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -58062,9 +58192,9 @@ "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" + "target": "backend_src_users_users_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -58074,9 +58204,9 @@ "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" + "target": "backend_src_users_users_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -58086,9 +58216,9 @@ "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" + "target": "backend_src_users_users_controller_ts_apicreatedresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -58098,9 +58228,9 @@ "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" + "target": "backend_src_users_users_controller_ts_req", + "confidence_score": 1.0 }, { "relation": "references", @@ -58110,9 +58240,9 @@ "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" + "target": "backend_src_users_users_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -58122,9 +58252,9 @@ "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" + "target": "backend_src_users_users_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -58134,9 +58264,9 @@ "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" + "target": "backend_src_users_users_controller_ts_delete", + "confidence_score": 1.0 }, { "relation": "references", @@ -58146,9 +58276,9 @@ "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" + "target": "backend_src_users_users_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -58158,9 +58288,9 @@ "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" + "target": "backend_src_users_users_controller_ts_apiokresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -58170,9 +58300,9 @@ "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" + "target": "backend_src_users_users_controller_ts_req", + "confidence_score": 1.0 }, { "relation": "references", @@ -58182,9 +58312,9 @@ "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" + "target": "backend_src_users_users_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -58194,9 +58324,9 @@ "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" + "target": "backend_src_users_users_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -58206,9 +58336,9 @@ "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" + "target": "backend_src_users_users_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -58218,9 +58348,9 @@ "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" + "target": "backend_src_users_users_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -58230,9 +58360,9 @@ "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" + "target": "backend_src_users_users_controller_ts_apiokresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -58242,9 +58372,9 @@ "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" + "target": "backend_src_users_users_controller_ts_req", + "confidence_score": 1.0 }, { "relation": "references", @@ -58254,9 +58384,9 @@ "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" + "target": "backend_src_users_users_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -58266,9 +58396,9 @@ "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" + "target": "backend_src_users_users_controller_ts_patch", + "confidence_score": 1.0 }, { "relation": "references", @@ -58278,9 +58408,9 @@ "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" + "target": "backend_src_users_users_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -58290,9 +58420,9 @@ "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" + "target": "backend_src_users_users_controller_ts_apiokresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -58302,9 +58432,9 @@ "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" + "target": "backend_src_users_users_controller_ts_req", + "confidence_score": 1.0 }, { "relation": "references", @@ -58314,9 +58444,9 @@ "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" + "target": "backend_src_users_users_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -58326,9 +58456,9 @@ "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" + "target": "backend_src_users_users_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -58338,9 +58468,9 @@ "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" + "target": "backend_src_users_users_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -58350,9 +58480,9 @@ "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" + "target": "backend_src_users_users_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -58362,9 +58492,9 @@ "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" + "target": "backend_src_users_users_controller_ts_apicreatedresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -58374,9 +58504,9 @@ "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" + "target": "backend_src_users_users_controller_ts_apibadrequestresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -58386,9 +58516,9 @@ "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" + "target": "backend_src_users_users_controller_ts_req", + "confidence_score": 1.0 }, { "relation": "references", @@ -58398,9 +58528,9 @@ "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" + "target": "backend_src_users_users_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -58410,9 +58540,9 @@ "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" + "target": "backend_src_users_users_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -58422,9 +58552,9 @@ "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" + "target": "backend_src_users_users_controller_ts_patch", + "confidence_score": 1.0 }, { "relation": "references", @@ -58434,9 +58564,9 @@ "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" + "target": "backend_src_users_users_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -58446,9 +58576,9 @@ "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" + "target": "backend_src_users_users_controller_ts_apiokresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -58458,9 +58588,9 @@ "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" + "target": "backend_src_users_users_controller_ts_req", + "confidence_score": 1.0 }, { "relation": "references", @@ -58470,9 +58600,9 @@ "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" + "target": "backend_src_users_users_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -58482,9 +58612,9 @@ "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" + "target": "backend_src_users_users_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -58494,9 +58624,9 @@ "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" + "target": "backend_src_users_users_controller_ts_req", + "confidence_score": 1.0 }, { "relation": "references", @@ -58506,9 +58636,9 @@ "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" + "target": "backend_src_users_users_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -58518,9 +58648,9 @@ "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" + "target": "backend_src_users_users_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -58530,9 +58660,9 @@ "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" + "target": "backend_src_users_users_controller_ts_patch", + "confidence_score": 1.0 }, { "relation": "references", @@ -58542,9 +58672,9 @@ "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" + "target": "backend_src_users_users_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -58554,9 +58684,9 @@ "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" + "target": "backend_src_users_users_controller_ts_apiokresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -58566,9 +58696,9 @@ "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" + "target": "backend_src_users_users_controller_ts_apibadrequestresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -58578,9 +58708,9 @@ "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" + "target": "backend_src_users_users_module_ts_module", + "confidence_score": 1.0 }, { "relation": "references", @@ -58590,9 +58720,9 @@ "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" + "target": "backend_src_users_users_service_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -58602,9 +58732,9 @@ "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" + "target": "backend_src_videos_dto_create_video_dto_ts_apiproperty", + "confidence_score": 1.0 }, { "relation": "references", @@ -58614,9 +58744,9 @@ "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" + "target": "backend_src_videos_dto_create_video_dto_ts_isnotempty", + "confidence_score": 1.0 }, { "relation": "references", @@ -58626,9 +58756,9 @@ "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" + "target": "backend_src_videos_dto_create_video_dto_ts_isstring", + "confidence_score": 1.0 }, { "relation": "references", @@ -58638,9 +58768,9 @@ "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" + "target": "backend_src_videos_dto_create_video_dto_ts_apipropertyoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -58650,9 +58780,9 @@ "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" + "target": "backend_src_videos_dto_create_video_dto_ts_isboolean", + "confidence_score": 1.0 }, { "relation": "references", @@ -58662,9 +58792,9 @@ "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" + "target": "backend_src_videos_dto_create_video_dto_ts_isoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -58674,9 +58804,9 @@ "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" + "target": "backend_src_videos_dto_get_videos_query_dto_ts_isoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -58686,9 +58816,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", - "target": "transform" + "target": "transform", + "confidence_score": 1.0 }, { "relation": "references", @@ -58698,9 +58828,9 @@ "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" + "target": "backend_src_videos_dto_get_videos_query_dto_ts_isboolean", + "confidence_score": 1.0 }, { "relation": "references", @@ -58710,9 +58840,9 @@ "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" + "target": "backend_src_videos_dto_get_videos_query_dto_ts_apipropertyoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -58722,9 +58852,9 @@ "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" + "target": "backend_src_videos_videos_controller_ts_apitags", + "confidence_score": 1.0 }, { "relation": "references", @@ -58734,9 +58864,9 @@ "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" + "target": "backend_src_videos_videos_controller_ts_controller", + "confidence_score": 1.0 }, { "relation": "references", @@ -58746,9 +58876,9 @@ "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" + "target": "backend_src_videos_videos_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -58758,9 +58888,9 @@ "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" + "target": "backend_src_videos_videos_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -58770,9 +58900,9 @@ "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" + "target": "backend_src_videos_videos_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -58782,9 +58912,9 @@ "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" + "target": "backend_src_videos_videos_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -58794,9 +58924,9 @@ "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" + "target": "backend_src_videos_videos_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -58806,9 +58936,9 @@ "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" + "target": "backend_src_videos_videos_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -58818,9 +58948,9 @@ "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" + "target": "backend_src_videos_videos_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -58830,9 +58960,9 @@ "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" + "target": "backend_src_videos_videos_controller_ts_apiquery", + "confidence_score": 1.0 }, { "relation": "references", @@ -58842,9 +58972,9 @@ "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" + "target": "backend_src_videos_videos_controller_ts_query", + "confidence_score": 1.0 }, { "relation": "references", @@ -58854,9 +58984,9 @@ "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" + "target": "backend_src_videos_videos_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -58866,9 +58996,9 @@ "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" + "target": "backend_src_videos_videos_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -58878,9 +59008,9 @@ "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" + "target": "backend_src_videos_videos_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -58890,9 +59020,9 @@ "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" + "target": "backend_src_videos_videos_controller_ts_delete", + "confidence_score": 1.0 }, { "relation": "references", @@ -58902,9 +59032,9 @@ "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" + "target": "backend_src_videos_videos_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -58914,9 +59044,9 @@ "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" + "target": "backend_src_videos_videos_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -58926,9 +59056,9 @@ "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" + "target": "backend_src_videos_videos_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -58938,9 +59068,9 @@ "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" + "target": "backend_src_videos_videos_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -58950,9 +59080,9 @@ "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" + "target": "backend_src_videos_videos_controller_ts_put", + "confidence_score": 1.0 }, { "relation": "references", @@ -58962,9 +59092,9 @@ "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" + "target": "backend_src_videos_videos_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -58974,9 +59104,9 @@ "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" + "target": "backend_src_videos_videos_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -58986,9 +59116,9 @@ "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" + "target": "backend_src_videos_videos_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -58998,9 +59128,9 @@ "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" + "target": "backend_src_videos_videos_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -59010,9 +59140,9 @@ "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" + "target": "backend_src_videos_videos_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -59022,9 +59152,9 @@ "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" + "target": "backend_src_videos_videos_module_ts_module", + "confidence_score": 1.0 }, { "relation": "references", @@ -59034,9 +59164,9 @@ "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" + "target": "backend_src_videos_videos_service_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -59046,9 +59176,9 @@ "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" + "target": "backend_src_wholesale_dto_wholesale_apply_dto_ts_apiproperty", + "confidence_score": 1.0 }, { "relation": "references", @@ -59058,9 +59188,9 @@ "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" + "target": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isnotempty", + "confidence_score": 1.0 }, { "relation": "references", @@ -59070,9 +59200,9 @@ "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" + "target": "backend_src_wholesale_dto_wholesale_apply_dto_ts_apipropertyoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -59082,9 +59212,9 @@ "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" + "target": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isoptional", + "confidence_score": 1.0 }, { "relation": "references", @@ -59094,9 +59224,9 @@ "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" + "target": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isstring", + "confidence_score": 1.0 }, { "relation": "references", @@ -59106,9 +59236,9 @@ "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" + "target": "backend_src_wholesale_wholesale_controller_ts_apitags", + "confidence_score": 1.0 }, { "relation": "references", @@ -59118,9 +59248,9 @@ "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" + "target": "backend_src_wholesale_wholesale_controller_ts_controller", + "confidence_score": 1.0 }, { "relation": "references", @@ -59130,9 +59260,9 @@ "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" + "target": "backend_src_wholesale_wholesale_controller_ts_post", + "confidence_score": 1.0 }, { "relation": "references", @@ -59142,9 +59272,9 @@ "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" + "target": "backend_src_wholesale_wholesale_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -59154,9 +59284,9 @@ "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" + "target": "backend_src_wholesale_wholesale_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -59166,9 +59296,9 @@ "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" + "target": "backend_src_wholesale_wholesale_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -59178,9 +59308,9 @@ "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" + "target": "backend_src_wholesale_wholesale_controller_ts_request", + "confidence_score": 1.0 }, { "relation": "references", @@ -59190,9 +59320,9 @@ "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" + "target": "backend_src_wholesale_wholesale_controller_ts_body", + "confidence_score": 1.0 }, { "relation": "references", @@ -59202,9 +59332,9 @@ "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" + "target": "backend_src_wholesale_wholesale_controller_ts_put", + "confidence_score": 1.0 }, { "relation": "references", @@ -59214,9 +59344,9 @@ "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" + "target": "backend_src_wholesale_wholesale_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -59226,9 +59356,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -59238,9 +59368,9 @@ "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" + "target": "backend_src_wholesale_wholesale_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -59250,9 +59380,9 @@ "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" + "target": "backend_src_wholesale_wholesale_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -59262,9 +59392,9 @@ "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" + "target": "backend_src_wholesale_wholesale_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -59274,9 +59404,9 @@ "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" + "target": "backend_src_wholesale_wholesale_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -59286,9 +59416,9 @@ "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" + "target": "backend_src_wholesale_wholesale_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -59298,9 +59428,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -59310,9 +59440,9 @@ "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" + "target": "backend_src_wholesale_wholesale_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -59322,9 +59452,9 @@ "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" + "target": "backend_src_wholesale_wholesale_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -59334,9 +59464,9 @@ "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" + "target": "backend_src_wholesale_wholesale_controller_ts_put", + "confidence_score": 1.0 }, { "relation": "references", @@ -59346,9 +59476,9 @@ "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" + "target": "backend_src_wholesale_wholesale_controller_ts_useguards", + "confidence_score": 1.0 }, { "relation": "references", @@ -59358,9 +59488,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "references", @@ -59370,9 +59500,9 @@ "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" + "target": "backend_src_wholesale_wholesale_controller_ts_apibearerauth", + "confidence_score": 1.0 }, { "relation": "references", @@ -59382,9 +59512,9 @@ "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" + "target": "backend_src_wholesale_wholesale_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -59394,9 +59524,9 @@ "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" + "target": "backend_src_wholesale_wholesale_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -59406,9 +59536,9 @@ "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" + "target": "backend_src_wholesale_wholesale_module_ts_module", + "confidence_score": 1.0 }, { "relation": "references", @@ -59418,9 +59548,9 @@ "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" + "target": "backend_src_wholesale_wholesale_service_ts_injectable", + "confidence_score": 1.0 }, { "relation": "references", @@ -59430,9 +59560,9 @@ "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" + "target": "backend_src_wiki_wiki_controller_ts_apitags", + "confidence_score": 1.0 }, { "relation": "references", @@ -59442,9 +59572,9 @@ "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" + "target": "backend_src_wiki_wiki_controller_ts_controller", + "confidence_score": 1.0 }, { "relation": "references", @@ -59454,9 +59584,9 @@ "weight": 1.0, "context": "decorator", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wiki_wiki_controller_wikicontroller", - "target": "frontend_admin_panel_src_types_admin_apiresponse" + "target": "frontend_admin_panel_src_types_admin_apiresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -59466,9 +59596,9 @@ "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" + "target": "backend_src_wiki_wiki_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -59478,9 +59608,9 @@ "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" + "target": "backend_src_wiki_wiki_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -59490,9 +59620,9 @@ "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" + "target": "backend_src_wiki_wiki_controller_ts_apiokresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -59502,9 +59632,9 @@ "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" + "target": "backend_src_wiki_wiki_controller_ts_query", + "confidence_score": 1.0 }, { "relation": "references", @@ -59514,9 +59644,9 @@ "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" + "target": "backend_src_wiki_wiki_controller_ts_get", + "confidence_score": 1.0 }, { "relation": "references", @@ -59526,9 +59656,9 @@ "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" + "target": "backend_src_wiki_wiki_controller_ts_apioperation", + "confidence_score": 1.0 }, { "relation": "references", @@ -59538,9 +59668,9 @@ "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" + "target": "backend_src_wiki_wiki_controller_ts_apiokresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -59550,9 +59680,9 @@ "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" + "target": "backend_src_wiki_wiki_controller_ts_apinotfoundresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -59562,9 +59692,9 @@ "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" + "target": "backend_src_wiki_wiki_controller_ts_param", + "confidence_score": 1.0 }, { "relation": "references", @@ -59574,9 +59704,9 @@ "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" + "target": "backend_src_wiki_wiki_module_ts_module", + "confidence_score": 1.0 }, { "relation": "references", @@ -59586,9 +59716,9 @@ "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" + "target": "backend_src_wiki_wiki_service_ts_injectable", + "confidence_score": 1.0 }, { "relation": "re_exports", @@ -59598,9 +59728,9 @@ "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" + "target": "backend_src_common_decorators_roles_decorator", + "confidence_score": 1.0 }, { "relation": "re_exports", @@ -59610,9 +59740,9 @@ "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" + "target": "backend_src_common_guards_roles_guard", + "confidence_score": 1.0 }, { "relation": "references", @@ -59622,9 +59752,9 @@ "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_useraddress" + "target": "frontend_admin_panel_src_types_admin_useraddress", + "confidence_score": 1.0 }, { "relation": "references", @@ -59634,9 +59764,9 @@ "source_location": "L38", "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" + "target": "frontend_admin_panel_src_types_admin_petsummary", + "confidence_score": 1.0 }, { "relation": "references", @@ -59646,9 +59776,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_homeclient_homeclientprops", - "target": "frontend_application_lib_types_homeapiresponse" + "target": "frontend_application_lib_types_homeapiresponse", + "confidence_score": 1.0 }, { "relation": "references", @@ -59658,9 +59788,9 @@ "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" + "target": "frontend_application_lib_store_userstore_address", + "confidence_score": 1.0 }, { "relation": "references", @@ -59670,9 +59800,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_bannerplacement_bannerplacementprops", - "target": "frontend_application_lib_types_banner" + "target": "frontend_application_lib_types_banner", + "confidence_score": 1.0 }, { "relation": "references", @@ -59682,9 +59812,9 @@ "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" + "target": "frontend_application_lib_data_products_product", + "confidence_score": 1.0 }, { "relation": "references", @@ -59694,9 +59824,9 @@ "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" + "target": "frontend_application_lib_data_products_product", + "confidence_score": 1.0 }, { "relation": "references", @@ -59706,9 +59836,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_catalog_productdetailmodal_productdetailmodalprops", - "target": "frontend_application_lib_data_products_product" + "target": "frontend_application_lib_data_products_product", + "confidence_score": 1.0 }, { "relation": "references", @@ -59718,9 +59848,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_cartstore_cartitem", - "target": "frontend_application_lib_data_products_product" + "target": "frontend_application_lib_data_products_product", + "confidence_score": 1.0 }, { "relation": "references", @@ -59730,9 +59860,9 @@ "source_location": "L38", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_cartstore_cartstore", - "target": "frontend_application_lib_data_products_product" + "target": "frontend_application_lib_data_products_product", + "confidence_score": 1.0 }, { "relation": "references", @@ -59742,9 +59872,9 @@ "source_location": "L45", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_updateherobanner", - "target": "backend_src_cms_dto_cms_dto_createherobannerdto" + "target": "backend_src_cms_dto_cms_dto_createherobannerdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -59754,9 +59884,9 @@ "source_location": "L101", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_updatesmartadvisorrule", - "target": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto" + "target": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", + "confidence_score": 1.0 }, { "relation": "references", @@ -59766,9 +59896,9 @@ "source_location": "L73", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_updatevettestimonial", - "target": "backend_src_cms_dto_cms_dto_createvettestimonialdto" + "target": "backend_src_cms_dto_cms_dto_createvettestimonialdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -59778,9 +59908,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_cms_cms_service_cmsservice_updateherobanner", - "target": "backend_src_cms_dto_cms_dto_createherobannerdto" + "target": "backend_src_cms_dto_cms_dto_createherobannerdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -59790,9 +59920,9 @@ "source_location": "L71", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_cms_cms_service_cmsservice_updatesmartadvisorrule", - "target": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto" + "target": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", + "confidence_score": 1.0 }, { "relation": "references", @@ -59802,9 +59932,9 @@ "source_location": "L45", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_cms_cms_service_cmsservice_updatevettestimonial", - "target": "backend_src_cms_dto_cms_dto_createvettestimonialdto" + "target": "backend_src_cms_dto_cms_dto_createvettestimonialdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -59814,9 +59944,9 @@ "source_location": "L292", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice_checkhealth", - "target": "backend_src_payment_interfaces_payment_gateway_interface_gatewayhealthresult" + "target": "backend_src_payment_interfaces_payment_gateway_interface_gatewayhealthresult", + "confidence_score": 1.0 }, { "relation": "references", @@ -59826,9 +59956,9 @@ "source_location": "L56", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller_update", - "target": "backend_src_videos_dto_create_video_dto_createvideodto" + "target": "backend_src_videos_dto_create_video_dto_createvideodto", + "confidence_score": 1.0 }, { "relation": "references", @@ -59838,9 +59968,9 @@ "source_location": "L93", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_videos_videos_service_videosservice_update", - "target": "backend_src_videos_dto_create_video_dto_createvideodto" + "target": "backend_src_videos_dto_create_video_dto_createvideodto", + "confidence_score": 1.0 }, { "relation": "references", @@ -59850,9 +59980,9 @@ "source_location": "L327", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice_productservice_getbanners", - "target": "frontend_application_lib_types_banner" + "target": "frontend_application_lib_types_banner", + "confidence_score": 1.0 }, { "relation": "references", @@ -59862,9 +59992,9 @@ "source_location": "L268", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice_productservice_getfeaturedproducts", - "target": "frontend_application_lib_data_products_product" + "target": "frontend_application_lib_data_products_product", + "confidence_score": 1.0 }, { "relation": "references", @@ -59874,9 +60004,9 @@ "source_location": "L248", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice_productservice_getproductbyid", - "target": "frontend_application_lib_data_products_product" + "target": "frontend_application_lib_data_products_product", + "confidence_score": 1.0 }, { "relation": "references", @@ -59886,9 +60016,9 @@ "source_location": "L258", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice_productservice_getproductbyslug", - "target": "frontend_application_lib_data_products_product" + "target": "frontend_application_lib_data_products_product", + "confidence_score": 1.0 }, { "relation": "references", @@ -59898,9 +60028,9 @@ "source_location": "L216", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice_productservice_getproducts", - "target": "frontend_application_lib_data_products_product" + "target": "frontend_application_lib_data_products_product", + "confidence_score": 1.0 }, { "relation": "imports", @@ -59911,9 +60041,9 @@ "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" + "target": "frontend_application_lib_store_usepetstore_usepetstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -59924,9 +60054,9 @@ "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_pages_b2bmanager" + "target": "frontend_admin_panel_src_pages_b2bmanager", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -59937,9 +60067,9 @@ "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_pages_bannersmanager" + "target": "frontend_admin_panel_src_pages_bannersmanager", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -59950,9 +60080,9 @@ "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_pages_blogs" + "target": "frontend_admin_panel_src_pages_blogs", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -59963,9 +60093,9 @@ "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_pages_categories" + "target": "frontend_admin_panel_src_pages_categories", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -59976,9 +60106,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_cms", - "target": "frontend_admin_panel_src_pages_cms" + "target": "frontend_admin_panel_src_pages_cms", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -59989,9 +60119,9 @@ "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_pages_contactsubmissions" + "target": "frontend_admin_panel_src_pages_contactsubmissions", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -60002,9 +60132,9 @@ "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_pages_coupons" + "target": "frontend_admin_panel_src_pages_coupons", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -60015,9 +60145,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_dashboard", - "target": "frontend_admin_panel_src_pages_dashboard" + "target": "frontend_admin_panel_src_pages_dashboard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -60028,9 +60158,9 @@ "source_location": "L41", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_doctorsmanager", - "target": "frontend_admin_panel_src_pages_doctorsmanager" + "target": "frontend_admin_panel_src_pages_doctorsmanager", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -60041,9 +60171,9 @@ "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_pages_financialsettingspage" + "target": "frontend_admin_panel_src_pages_financialsettingspage", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -60054,9 +60184,9 @@ "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_pages_ingredientsmanager" + "target": "frontend_admin_panel_src_pages_ingredientsmanager", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -60067,9 +60197,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_media", - "target": "frontend_admin_panel_src_pages_media" + "target": "frontend_admin_panel_src_pages_media", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -60080,9 +60210,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_orders", - "target": "frontend_admin_panel_src_pages_orders" + "target": "frontend_admin_panel_src_pages_orders", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -60093,9 +60223,9 @@ "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_pages_pets" + "target": "frontend_admin_panel_src_pages_pets", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -60106,9 +60236,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_prescriptionsmanager", - "target": "frontend_admin_panel_src_pages_prescriptionsmanager" + "target": "frontend_admin_panel_src_pages_prescriptionsmanager", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -60119,9 +60249,9 @@ "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_pages_products" + "target": "frontend_admin_panel_src_pages_products", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -60132,9 +60262,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_reports", - "target": "frontend_admin_panel_src_pages_reports" + "target": "frontend_admin_panel_src_pages_reports", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -60145,9 +60275,9 @@ "source_location": "L40", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_reviews", - "target": "frontend_admin_panel_src_pages_reviews" + "target": "frontend_admin_panel_src_pages_reviews", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -60158,9 +60288,9 @@ "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_pages_seosettingspage" + "target": "frontend_admin_panel_src_pages_seosettingspage", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -60171,9 +60301,9 @@ "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_pages_settings" + "target": "frontend_admin_panel_src_pages_settings", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -60184,9 +60314,9 @@ "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_pages_smartadvisormanager" + "target": "frontend_admin_panel_src_pages_smartadvisormanager", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -60197,9 +60327,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_smssettingspage", - "target": "frontend_admin_panel_src_pages_smssettingspage" + "target": "frontend_admin_panel_src_pages_smssettingspage", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -60210,9 +60340,9 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_sslsettingspage", - "target": "frontend_admin_panel_src_pages_sslsettingspage" + "target": "frontend_admin_panel_src_pages_sslsettingspage", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -60223,9 +60353,9 @@ "source_location": "L35", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_systemsettingspage", - "target": "frontend_admin_panel_src_pages_systemsettingspage" + "target": "frontend_admin_panel_src_pages_systemsettingspage", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -60236,9 +60366,9 @@ "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_pages_testimonialsmanager" + "target": "frontend_admin_panel_src_pages_testimonialsmanager", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -60249,9 +60379,9 @@ "source_location": "L39", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_tickets", - "target": "frontend_admin_panel_src_pages_tickets" + "target": "frontend_admin_panel_src_pages_tickets", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -60262,9 +60392,9 @@ "source_location": "L38", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_transactions", - "target": "frontend_admin_panel_src_pages_transactions" + "target": "frontend_admin_panel_src_pages_transactions", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -60275,9 +60405,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_uitexts", - "target": "frontend_admin_panel_src_pages_uitexts" + "target": "frontend_admin_panel_src_pages_uitexts", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -60288,9 +60418,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes_users", - "target": "frontend_admin_panel_src_pages_users" + "target": "frontend_admin_panel_src_pages_users", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -60301,9 +60431,9 @@ "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_pages_videos" + "target": "frontend_admin_panel_src_pages_videos", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -60314,9 +60444,9 @@ "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_pages_wholesaleapplications" + "target": "frontend_admin_panel_src_pages_wholesaleapplications", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -60327,9 +60457,9 @@ "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_pages_wiki" + "target": "frontend_admin_panel_src_pages_wiki", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -60340,9 +60470,9 @@ "source_location": "L125", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_b2bportal_b2bportal", - "target": "frontend_application_lib_services_api" + "target": "frontend_application_lib_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -60353,9 +60483,9 @@ "source_location": "L98", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodal", - "target": "frontend_application_lib_services_api" + "target": "frontend_application_lib_services_api", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60365,9 +60495,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_jest_collectcoveragefrom", - "target": "ref_t_j_s" + "target": "ref_t_j_s", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60377,9 +60507,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_jest_modulefileextensions", - "target": "backend_package_json_ref_ts" + "target": "backend_package_json_ref_ts", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60389,9 +60519,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_jest_modulefileextensions", - "target": "ref_js" + "target": "ref_js", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60401,9 +60531,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_jest_modulefileextensions", - "target": "ref_json" + "target": "ref_json", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60413,9 +60543,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_tsconfig_compileroptions_types", - "target": "backend_prisma_tsconfig_json_ref_node" + "target": "backend_prisma_tsconfig_json_ref_node", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60425,9 +60555,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_tsconfig_include", - "target": "backend_prisma_tsconfig_json_ref_ts" + "target": "backend_prisma_tsconfig_json_ref_ts", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60437,9 +60567,9 @@ "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" + "target": "backend_prisma_tsconfig_seed_json_ref_node", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60449,9 +60579,9 @@ "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" + "target": "backend_prisma_tsconfig_seed_json_ref_ts", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60461,9 +60591,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig_build", - "target": "ref_tsconfig_json" + "target": "ref_tsconfig_json", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60473,9 +60603,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig_build_exclude", - "target": "backend_tsconfig_build_json_ref_dist" + "target": "backend_tsconfig_build_json_ref_dist", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60485,9 +60615,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig_build_exclude", - "target": "backend_tsconfig_build_json_ref_node_modules" + "target": "backend_tsconfig_build_json_ref_node_modules", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60497,9 +60627,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig_build_exclude", - "target": "backend_tsconfig_build_json_ref_prisma" + "target": "backend_tsconfig_build_json_ref_prisma", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60509,9 +60639,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig_build_exclude", - "target": "backend_tsconfig_build_json_ref_spec_ts" + "target": "backend_tsconfig_build_json_ref_spec_ts", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60521,9 +60651,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig_build_exclude", - "target": "ref_test" + "target": "ref_test", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60533,9 +60663,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig_exclude", - "target": "backend_tsconfig_json_ref_dist" + "target": "backend_tsconfig_json_ref_dist", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60545,9 +60675,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig_exclude", - "target": "backend_tsconfig_json_ref_node_modules" + "target": "backend_tsconfig_json_ref_node_modules", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60557,9 +60687,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig_exclude", - "target": "backend_tsconfig_json_ref_prisma" + "target": "backend_tsconfig_json_ref_prisma", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60569,9 +60699,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig_exclude", - "target": "backend_tsconfig_json_ref_spec_ts" + "target": "backend_tsconfig_json_ref_spec_ts", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60581,9 +60711,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig_exclude", - "target": "ref_scripts" + "target": "ref_scripts", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60593,9 +60723,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig_include", - "target": "backend_tsconfig_json_ref_src" + "target": "backend_tsconfig_json_ref_src", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60605,9 +60735,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_app_json_ref_dom", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60617,9 +60747,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_app_json_ref_dom_iterable", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60629,9 +60759,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_app_json_ref_es2023", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60641,9 +60771,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_app_compileroptions_types", - "target": "ref_vite_client" + "target": "ref_vite_client", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60653,9 +60783,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_app_json_ref_src", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60665,9 +60795,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_node_json_ref_es2023", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60677,9 +60807,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_node_json_ref_node", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60689,9 +60819,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig_node_include", - "target": "ref_vite_config_ts" + "target": "ref_vite_config_ts", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60701,9 +60831,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_tsconfig_compileroptions_lib", - "target": "frontend_application_tsconfig_json_ref_dom" + "target": "frontend_application_tsconfig_json_ref_dom", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60713,9 +60843,9 @@ "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" + "target": "frontend_application_tsconfig_json_ref_dom_iterable", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60725,9 +60855,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_tsconfig_compileroptions_lib", - "target": "ref_esnext" + "target": "ref_esnext", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60737,9 +60867,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_tsconfig_exclude", - "target": "frontend_application_tsconfig_json_ref_node_modules" + "target": "frontend_application_tsconfig_json_ref_node_modules", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60749,9 +60879,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_tsconfig_exclude", - "target": "frontend_application_tsconfig_json_ref_prisma" + "target": "frontend_application_tsconfig_json_ref_prisma", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60761,9 +60891,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_tsconfig_exclude", - "target": "ref_tests" + "target": "ref_tests", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60773,9 +60903,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_tsconfig_exclude", - "target": "ref_vitest_config_ts" + "target": "ref_vitest_config_ts", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60785,9 +60915,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_tsconfig_exclude", - "target": "ref_vitest_setup_ts" + "target": "ref_vitest_setup_ts", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60797,9 +60927,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_tsconfig_include", - "target": "frontend_application_tsconfig_json_ref_ts" + "target": "frontend_application_tsconfig_json_ref_ts", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60809,9 +60939,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_tsconfig_include", - "target": "ref_mts" + "target": "ref_mts", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60821,9 +60951,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_tsconfig_include", - "target": "ref_next_dev_types_ts" + "target": "ref_next_dev_types_ts", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60833,9 +60963,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_tsconfig_include", - "target": "ref_next_env_d_ts" + "target": "ref_next_env_d_ts", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60845,9 +60975,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_tsconfig_include", - "target": "ref_next_types_ts" + "target": "ref_next_types_ts", + "confidence_score": 1.0 }, { "relation": "extends", @@ -60857,9 +60987,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_tsconfig_include", - "target": "ref_tsx" + "target": "ref_tsx", + "confidence_score": 1.0 }, { "relation": "imports", @@ -60869,9 +60999,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies_bcrypt", - "target": "bcrypt" + "target": "bcrypt", + "confidence_score": 1.0 }, { "relation": "imports", @@ -60881,9 +61011,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies_bcryptjs", - "target": "bcryptjs" + "target": "bcryptjs", + "confidence_score": 1.0 }, { "relation": "imports", @@ -60893,9 +61023,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies_class_transformer", - "target": "class_transformer" + "target": "class_transformer", + "confidence_score": 1.0 }, { "relation": "imports", @@ -60905,9 +61035,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies_class_validator", - "target": "class_validator" + "target": "class_validator", + "confidence_score": 1.0 }, { "relation": "imports", @@ -60917,9 +61047,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies_helmet", - "target": "helmet" + "target": "helmet", + "confidence_score": 1.0 }, { "relation": "imports", @@ -60929,9 +61059,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies_ioredis", - "target": "ioredis" + "target": "ioredis", + "confidence_score": 1.0 }, { "relation": "imports", @@ -60941,9 +61071,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies_js_yaml", - "target": "js_yaml" + "target": "js_yaml", + "confidence_score": 1.0 }, { "relation": "imports", @@ -60953,9 +61083,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies_nestjs_common", - "target": "nestjs_common" + "target": "nestjs_common", + "confidence_score": 1.0 }, { "relation": "imports", @@ -60965,9 +61095,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies_nestjs_core", - "target": "nestjs_core" + "target": "nestjs_core", + "confidence_score": 1.0 }, { "relation": "imports", @@ -60977,9 +61107,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies_nestjs_jwt", - "target": "nestjs_jwt" + "target": "nestjs_jwt", + "confidence_score": 1.0 }, { "relation": "imports", @@ -60989,9 +61119,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies_nestjs_passport", - "target": "nestjs_passport" + "target": "nestjs_passport", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61001,9 +61131,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies_nestjs_platform_express", - "target": "nestjs_platform_express" + "target": "nestjs_platform_express", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61013,9 +61143,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies_nestjs_swagger", - "target": "nestjs_swagger" + "target": "nestjs_swagger", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61025,9 +61155,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies_nestjs_throttler", - "target": "nestjs_throttler" + "target": "nestjs_throttler", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61037,9 +61167,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies_passport", - "target": "passport" + "target": "passport", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61049,9 +61179,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies_passport_jwt", - "target": "passport_jwt" + "target": "passport_jwt", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61061,9 +61191,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies_prisma_client", - "target": "prisma_client" + "target": "prisma_client", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61073,9 +61203,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies_reflect_metadata", - "target": "reflect_metadata" + "target": "reflect_metadata", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61085,9 +61215,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies_rxjs", - "target": "rxjs" + "target": "rxjs", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61097,9 +61227,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies_swagger_ui_express", - "target": "swagger_ui_express" + "target": "swagger_ui_express", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61109,9 +61239,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies_eslint", - "target": "backend_package_json_eslint" + "target": "backend_package_json_eslint", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61121,9 +61251,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies_eslint_config_prettier", - "target": "eslint_config_prettier" + "target": "eslint_config_prettier", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61133,9 +61263,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies_eslint_eslintrc", - "target": "eslint_eslintrc" + "target": "eslint_eslintrc", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61145,9 +61275,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies_eslint_js", - "target": "backend_package_json_eslint_js" + "target": "backend_package_json_eslint_js", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61157,9 +61287,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies_eslint_plugin_prettier", - "target": "eslint_plugin_prettier" + "target": "eslint_plugin_prettier", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61169,9 +61299,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies_globals", - "target": "backend_package_json_globals" + "target": "backend_package_json_globals", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61181,9 +61311,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies_jest", - "target": "jest" + "target": "jest", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61193,9 +61323,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies_nestjs_cli", - "target": "nestjs_cli" + "target": "nestjs_cli", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61205,9 +61335,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies_nestjs_schematics", - "target": "nestjs_schematics" + "target": "nestjs_schematics", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61217,9 +61347,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies_nestjs_testing", - "target": "nestjs_testing" + "target": "nestjs_testing", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61229,9 +61359,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies_prettier", - "target": "prettier" + "target": "prettier", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61241,9 +61371,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies_prisma", - "target": "prisma" + "target": "prisma", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61253,9 +61383,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies_source_map_support", - "target": "source_map_support" + "target": "source_map_support", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61265,9 +61395,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies_supertest", - "target": "supertest" + "target": "supertest", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61277,9 +61407,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies_ts_jest", - "target": "ts_jest" + "target": "ts_jest", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61289,9 +61419,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies_ts_loader", - "target": "ts_loader" + "target": "ts_loader", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61301,9 +61431,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies_ts_node", - "target": "ts_node" + "target": "ts_node", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61313,9 +61443,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies_tsconfig_paths", - "target": "tsconfig_paths" + "target": "tsconfig_paths", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61325,9 +61455,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies_types_bcrypt", - "target": "types_bcrypt" + "target": "types_bcrypt", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61337,9 +61467,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies_types_bcryptjs", - "target": "types_bcryptjs" + "target": "types_bcryptjs", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61349,9 +61479,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies_types_express", - "target": "types_express" + "target": "types_express", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61361,9 +61491,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies_types_jest", - "target": "types_jest" + "target": "types_jest", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61373,9 +61503,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies_types_js_yaml", - "target": "types_js_yaml" + "target": "types_js_yaml", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61385,9 +61515,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies_types_multer", - "target": "types_multer" + "target": "types_multer", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61397,9 +61527,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies_types_node", - "target": "backend_package_json_types_node" + "target": "backend_package_json_types_node", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61409,9 +61539,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies_types_passport_jwt", - "target": "types_passport_jwt" + "target": "types_passport_jwt", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61421,9 +61551,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies_types_supertest", - "target": "types_supertest" + "target": "types_supertest", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61433,9 +61563,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies_typescript", - "target": "backend_package_json_typescript" + "target": "backend_package_json_typescript", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61445,9 +61575,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies_typescript_eslint", - "target": "backend_package_json_typescript_eslint" + "target": "backend_package_json_typescript_eslint", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61457,9 +61587,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi", - "target": "backend_src_app_module_appmodule" + "target": "backend_src_app_module_appmodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61469,9 +61599,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_controller", - "target": "backend_src_admin_admin_service_adminservice" + "target": "backend_src_admin_admin_service_adminservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61481,9 +61611,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_controller", - "target": "backend_src_admin_admin_service_couponinput" + "target": "backend_src_admin_admin_service_couponinput", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61493,9 +61623,9 @@ "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_productdto" + "target": "backend_src_admin_dto_product_dto_productdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61505,9 +61635,9 @@ "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_adminquerydto" + "target": "backend_src_admin_dto_admin_query_dto_adminquerydto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61517,9 +61647,9 @@ "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_jwtauthguard" + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61529,9 +61659,9 @@ "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_createuserdto" + "target": "backend_src_admin_dto_user_dto_createuserdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61541,9 +61671,9 @@ "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_updateuserdto" + "target": "backend_src_admin_dto_user_dto_updateuserdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61553,9 +61683,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_spec", - "target": "backend_src_admin_admin_controller_admincontroller" + "target": "backend_src_admin_admin_controller_admincontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61565,9 +61695,9 @@ "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_adminservice" + "target": "backend_src_admin_admin_service_adminservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61577,9 +61707,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_blogs_controller_blogscontroller" + "target": "backend_src_admin_blogs_controller_blogscontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61589,9 +61719,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_blogs_service_blogsservice" + "target": "backend_src_admin_blogs_service_blogsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61601,9 +61731,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_wiki_controller_wikicontroller" + "target": "backend_src_admin_wiki_controller_wikicontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61613,9 +61743,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_wiki_service_wikiservice" + "target": "backend_src_admin_wiki_service_wikiservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61625,9 +61755,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_pets_controller_petscontroller" + "target": "backend_src_admin_pets_controller_petscontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61637,9 +61767,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_pets_service_petsservice" + "target": "backend_src_admin_pets_service_petsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61649,9 +61779,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_ssl_controller_sslcontroller" + "target": "backend_src_admin_ssl_controller_sslcontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61661,9 +61791,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_ssl_service_sslservice" + "target": "backend_src_admin_ssl_service_sslservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61673,9 +61803,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_prisma_prisma_module_prismamodule" + "target": "backend_src_prisma_prisma_module_prismamodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61685,9 +61815,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_redis_redis_module_redismodule" + "target": "backend_src_redis_redis_module_redismodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61697,9 +61827,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_admin_controller_admincontroller" + "target": "backend_src_admin_admin_controller_admincontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61709,9 +61839,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_admin_service_adminservice" + "target": "backend_src_admin_admin_service_adminservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61721,9 +61851,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_reports_controller_reportscontroller" + "target": "backend_src_admin_reports_controller_reportscontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61733,9 +61863,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_reports_service_reportsservice" + "target": "backend_src_admin_reports_service_reportsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61745,9 +61875,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_media_controller_mediacontroller" + "target": "backend_src_admin_media_controller_mediacontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61757,9 +61887,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_media_service_mediaservice" + "target": "backend_src_admin_media_service_mediaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61769,9 +61899,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_categories_controller_categoriescontroller" + "target": "backend_src_admin_categories_controller_categoriescontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61781,9 +61911,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_categories_service_categoriesservice" + "target": "backend_src_admin_categories_service_categoriesservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61793,9 +61923,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service", - "target": "backend_src_admin_dto_user_dto_createuserdto" + "target": "backend_src_admin_dto_user_dto_createuserdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61805,9 +61935,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service", - "target": "backend_src_admin_dto_user_dto_updateuserdto" + "target": "backend_src_admin_dto_user_dto_updateuserdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61817,9 +61947,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service", - "target": "backend_src_admin_dto_product_dto_productdto" + "target": "backend_src_admin_dto_product_dto_productdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61829,9 +61959,9 @@ "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_normalizemobile" + "target": "backend_src_common_utils_phone_utils_normalizemobile", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61841,9 +61971,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service", - "target": "backend_src_settings_settings_service_canonical_aliases" + "target": "backend_src_settings_settings_service_canonical_aliases", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61853,9 +61983,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61865,9 +61995,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service", - "target": "backend_src_redis_redis_service_redisservice" + "target": "backend_src_redis_redis_service_redisservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61877,9 +62007,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service_spec", - "target": "backend_src_admin_admin_service_adminservice" + "target": "backend_src_admin_admin_service_adminservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61889,9 +62019,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service_spec", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61901,9 +62031,9 @@ "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_redisservice" + "target": "backend_src_redis_redis_service_redisservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61913,9 +62043,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller", - "target": "backend_src_admin_blogs_service_blogsservice" + "target": "backend_src_admin_blogs_service_blogsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61925,9 +62055,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61937,9 +62067,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller", - "target": "backend_src_common_dto_pagination_dto_paginationdto" + "target": "backend_src_common_dto_pagination_dto_paginationdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61949,9 +62079,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_blogs_service", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61961,9 +62091,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_categories_controller", - "target": "backend_src_admin_categories_service_categoriesservice" + "target": "backend_src_admin_categories_service_categoriesservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61973,9 +62103,9 @@ "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_jwtauthguard" + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61985,9 +62115,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_categories_controller", - "target": "backend_src_common_dto_pagination_dto_paginationdto" + "target": "backend_src_common_dto_pagination_dto_paginationdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -61997,9 +62127,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_categories_service", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62009,9 +62139,9 @@ "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_paginationdto" + "target": "backend_src_common_dto_pagination_dto_paginationdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62021,9 +62151,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_media_controller", - "target": "backend_src_admin_media_service_mediaservice" + "target": "backend_src_admin_media_service_mediaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62033,9 +62163,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_media_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62045,9 +62175,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_media_service", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62057,9 +62187,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_pets_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62069,9 +62199,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_pets_controller", - "target": "backend_src_common_dto_pagination_dto_paginationdto" + "target": "backend_src_common_dto_pagination_dto_paginationdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62081,9 +62211,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_pets_controller", - "target": "backend_src_admin_pets_service_petsservice" + "target": "backend_src_admin_pets_service_petsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62093,9 +62223,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_pets_service", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62105,9 +62235,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_reports_controller", - "target": "backend_src_admin_reports_service_reportsservice" + "target": "backend_src_admin_reports_service_reportsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62117,9 +62247,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_reports_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62129,9 +62259,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_reports_service", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62141,9 +62271,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller", - "target": "backend_src_admin_ssl_service_sslservice" + "target": "backend_src_admin_ssl_service_sslservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62153,9 +62283,9 @@ "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_jwtauthguard" + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62165,9 +62295,9 @@ "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_rolesguard" + "target": "backend_src_common_guards_roles_guard_rolesguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62177,9 +62307,9 @@ "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_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62189,9 +62319,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller", - "target": "backend_src_admin_wiki_service_wikiservice" + "target": "backend_src_admin_wiki_service_wikiservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62201,9 +62331,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62213,9 +62343,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller", - "target": "backend_src_common_dto_pagination_dto_paginationdto" + "target": "backend_src_common_dto_pagination_dto_paginationdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62225,9 +62355,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_wiki_service", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62237,9 +62367,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_controller", - "target": "backend_src_app_service_appservice" + "target": "backend_src_app_service_appservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62249,9 +62379,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_controller_spec", - "target": "backend_src_app_controller_appcontroller" + "target": "backend_src_app_controller_appcontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62261,9 +62391,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_controller_spec", - "target": "backend_src_app_service_appservice" + "target": "backend_src_app_service_appservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62273,9 +62403,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_settings_settings_module_settingsmodule" + "target": "backend_src_settings_settings_module_settingsmodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62285,9 +62415,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_common_metrics_controller_metricscontroller" + "target": "backend_src_common_metrics_controller_metricscontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62297,9 +62427,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_admin_admin_module_adminmodule" + "target": "backend_src_admin_admin_module_adminmodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62309,9 +62439,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_home_home_module_homemodule" + "target": "backend_src_home_home_module_homemodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62321,9 +62451,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_blogs_blogs_module_blogsmodule" + "target": "backend_src_blogs_blogs_module_blogsmodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62333,9 +62463,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_wiki_wiki_module_wikimodule" + "target": "backend_src_wiki_wiki_module_wikimodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62345,9 +62475,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_seo_seo_module_seomodule" + "target": "backend_src_seo_seo_module_seomodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62357,9 +62487,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_cms_cms_module_cmsmodule" + "target": "backend_src_cms_cms_module_cmsmodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62369,9 +62499,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_prisma_prisma_module_prismamodule" + "target": "backend_src_prisma_prisma_module_prismamodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62381,9 +62511,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_wholesale_wholesale_module_wholesalemodule" + "target": "backend_src_wholesale_wholesale_module_wholesalemodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62393,9 +62523,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_videos_videos_module_videosmodule" + "target": "backend_src_videos_videos_module_videosmodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62405,9 +62535,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_common_sms_module_smsmodule" + "target": "backend_src_common_sms_module_smsmodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62417,9 +62547,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_contact_contact_module_contactmodule" + "target": "backend_src_contact_contact_module_contactmodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62429,9 +62559,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_banners_banners_module_bannersmodule" + "target": "backend_src_banners_banners_module_bannersmodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62441,9 +62571,9 @@ "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_smartadvisormodule" + "target": "backend_src_smart_advisor_smart_advisor_module_smartadvisormodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62453,9 +62583,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_testimonials_testimonials_module_testimonialsmodule" + "target": "backend_src_testimonials_testimonials_module_testimonialsmodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62465,9 +62595,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_ingredients_ingredients_module_ingredientsmodule" + "target": "backend_src_ingredients_ingredients_module_ingredientsmodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62477,9 +62607,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_prescriptions_prescriptions_module_prescriptionsmodule" + "target": "backend_src_prescriptions_prescriptions_module_prescriptionsmodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62489,9 +62619,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_b2b_b2b_module_b2bmodule" + "target": "backend_src_b2b_b2b_module_b2bmodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62501,9 +62631,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_products_products_module_productsmodule" + "target": "backend_src_products_products_module_productsmodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62513,9 +62643,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_payment_payment_module_paymentmodule" + "target": "backend_src_payment_payment_module_paymentmodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62525,9 +62655,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_tickets_tickets_module_ticketsmodule" + "target": "backend_src_tickets_tickets_module_ticketsmodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62537,9 +62667,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_reviews_reviews_module_reviewsmodule" + "target": "backend_src_reviews_reviews_module_reviewsmodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62549,9 +62679,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_doctors_doctors_module_doctorsmodule" + "target": "backend_src_doctors_doctors_module_doctorsmodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62561,9 +62691,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_users_users_module_usersmodule" + "target": "backend_src_users_users_module_usersmodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62573,9 +62703,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_redis_redis_module_redismodule" + "target": "backend_src_redis_redis_module_redismodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62585,9 +62715,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_redis_redis_service_redisservice" + "target": "backend_src_redis_redis_service_redisservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62597,9 +62727,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_auth_auth_module_authmodule" + "target": "backend_src_auth_auth_module_authmodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62609,9 +62739,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_pets_pets_module_petsmodule" + "target": "backend_src_pets_pets_module_petsmodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62621,9 +62751,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_orders_orders_module_ordersmodule" + "target": "backend_src_orders_orders_module_ordersmodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62633,9 +62763,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_dto_admin_login_dto_adminlogindto" + "target": "backend_src_auth_dto_admin_login_dto_adminlogindto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62645,9 +62775,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_auth_service_authservice" + "target": "backend_src_auth_auth_service_authservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62657,9 +62787,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_dto_send_otp_dto_sendotpdto" + "target": "backend_src_auth_dto_send_otp_dto_sendotpdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62669,9 +62799,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_dto_verify_otp_dto_verifyotpdto" + "target": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62681,9 +62811,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_dto_register_dto_registerdto" + "target": "backend_src_auth_dto_register_dto_registerdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62693,9 +62823,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_dto_login_dto_logindto" + "target": "backend_src_auth_dto_login_dto_logindto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62705,9 +62835,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62717,9 +62847,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_spec", - "target": "backend_src_auth_auth_controller_authcontroller" + "target": "backend_src_auth_auth_controller_authcontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62729,9 +62859,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_spec", - "target": "backend_src_auth_auth_service_authservice" + "target": "backend_src_auth_auth_service_authservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62741,9 +62871,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_module", - "target": "backend_src_auth_auth_service_authservice" + "target": "backend_src_auth_auth_service_authservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62753,9 +62883,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_module", - "target": "backend_src_auth_auth_controller_authcontroller" + "target": "backend_src_auth_auth_controller_authcontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62765,9 +62895,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_module", - "target": "backend_src_auth_jwt_strategy_jwtstrategy" + "target": "backend_src_auth_jwt_strategy_jwtstrategy", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62777,9 +62907,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_module", - "target": "backend_src_users_users_module_usersmodule" + "target": "backend_src_users_users_module_usersmodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62789,9 +62919,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_module", - "target": "backend_src_auth_auth_constants_getjwtsecret" + "target": "backend_src_auth_auth_constants_getjwtsecret", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62801,9 +62931,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_service", - "target": "backend_src_common_utils_phone_utils_normalizemobile" + "target": "backend_src_common_utils_phone_utils_normalizemobile", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62813,9 +62943,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_service", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62825,9 +62955,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_service", - "target": "backend_src_redis_redis_service_redisservice" + "target": "backend_src_redis_redis_service_redisservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62837,9 +62967,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_service", - "target": "backend_src_auth_dto_send_otp_dto_sendotpdto" + "target": "backend_src_auth_dto_send_otp_dto_sendotpdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62849,9 +62979,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_service", - "target": "backend_src_auth_dto_verify_otp_dto_verifyotpdto" + "target": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62861,9 +62991,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_service", - "target": "backend_src_common_services_sms_service_smsservice" + "target": "backend_src_common_services_sms_service_smsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62873,9 +63003,9 @@ "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_authservice" + "target": "backend_src_auth_auth_service_authservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62885,9 +63015,9 @@ "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_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62897,9 +63027,9 @@ "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_redisservice" + "target": "backend_src_redis_redis_service_redisservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62909,9 +63039,9 @@ "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_smsservice" + "target": "backend_src_common_services_sms_service_smsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62921,9 +63051,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_jwt_strategy", - "target": "backend_src_users_users_service_usersservice" + "target": "backend_src_users_users_service_usersservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62933,9 +63063,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_jwt_strategy", - "target": "backend_src_auth_auth_constants_getjwtsecret" + "target": "backend_src_auth_auth_constants_getjwtsecret", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62945,9 +63075,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller", - "target": "backend_src_b2b_b2b_service_b2bservice" + "target": "backend_src_b2b_b2b_service_b2bservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62957,9 +63087,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller", - "target": "backend_src_b2b_b2b_service_b2bwholesaleorderitem" + "target": "backend_src_b2b_b2b_service_b2bwholesaleorderitem", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62969,9 +63099,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62981,9 +63111,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard" + "target": "backend_src_common_guards_roles_guard_rolesguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -62993,9 +63123,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63005,9 +63135,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_b2b_b2b_module", - "target": "backend_src_b2b_b2b_controller_b2bcontroller" + "target": "backend_src_b2b_b2b_controller_b2bcontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63017,9 +63147,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_b2b_b2b_module", - "target": "backend_src_b2b_b2b_service_b2bservice" + "target": "backend_src_b2b_b2b_service_b2bservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63029,9 +63159,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_b2b_b2b_module", - "target": "backend_src_prisma_prisma_module_prismamodule" + "target": "backend_src_prisma_prisma_module_prismamodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63041,9 +63171,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_b2b_b2b_service", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63053,9 +63183,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_banners_banners_controller", - "target": "backend_src_banners_banners_service_bannersservice" + "target": "backend_src_banners_banners_service_bannersservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63065,9 +63195,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_banners_banners_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63077,9 +63207,9 @@ "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_rolesguard" + "target": "backend_src_common_guards_roles_guard_rolesguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63089,9 +63219,9 @@ "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_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63101,9 +63231,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_banners_banners_module", - "target": "backend_src_banners_banners_controller_bannerscontroller" + "target": "backend_src_banners_banners_controller_bannerscontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63113,9 +63243,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_banners_banners_module", - "target": "backend_src_banners_banners_service_bannersservice" + "target": "backend_src_banners_banners_service_bannersservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63125,9 +63255,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_banners_banners_module", - "target": "backend_src_prisma_prisma_module_prismamodule" + "target": "backend_src_prisma_prisma_module_prismamodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63137,9 +63267,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_banners_banners_service", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63149,9 +63279,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_blogs_blogs_controller", - "target": "backend_src_common_dto_pagination_dto_paginationdto" + "target": "backend_src_common_dto_pagination_dto_paginationdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63161,9 +63291,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_blogs_blogs_controller", - "target": "backend_src_blogs_blogs_service_blogsservice" + "target": "backend_src_blogs_blogs_service_blogsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63173,9 +63303,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_blogs_blogs_module", - "target": "backend_src_blogs_blogs_service_blogsservice" + "target": "backend_src_blogs_blogs_service_blogsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63185,9 +63315,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_blogs_blogs_module", - "target": "backend_src_blogs_blogs_controller_blogscontroller" + "target": "backend_src_blogs_blogs_controller_blogscontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63197,9 +63327,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_blogs_blogs_service", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63209,9 +63339,9 @@ "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_paginationdto" + "target": "backend_src_common_dto_pagination_dto_paginationdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63221,9 +63351,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_blogs_dto_update_blog_dto", - "target": "backend_src_blogs_dto_create_blog_dto_createblogdto" + "target": "backend_src_blogs_dto_create_blog_dto_createblogdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63233,9 +63363,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_cms_cms_controller", - "target": "backend_src_cms_cms_service_cmsservice" + "target": "backend_src_cms_cms_service_cmsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63245,9 +63375,9 @@ "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_createherobannerdto" + "target": "backend_src_cms_dto_cms_dto_createherobannerdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63257,9 +63387,9 @@ "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_createsmartadvisorruledto" + "target": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63269,9 +63399,9 @@ "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_createvettestimonialdto" + "target": "backend_src_cms_dto_cms_dto_createvettestimonialdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63281,9 +63411,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_cms_cms_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63293,9 +63423,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_cms_cms_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard" + "target": "backend_src_common_guards_roles_guard_rolesguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63305,9 +63435,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_cms_cms_controller", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63317,9 +63447,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_cms_cms_module", - "target": "backend_src_cms_cms_controller_cmscontroller" + "target": "backend_src_cms_cms_controller_cmscontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63329,9 +63459,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_cms_cms_module", - "target": "backend_src_cms_cms_service_cmsservice" + "target": "backend_src_cms_cms_service_cmsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63341,9 +63471,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_cms_cms_module", - "target": "backend_src_prisma_prisma_module_prismamodule" + "target": "backend_src_prisma_prisma_module_prismamodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63353,9 +63483,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_cms_cms_service", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63365,9 +63495,9 @@ "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_createherobannerdto" + "target": "backend_src_cms_dto_cms_dto_createherobannerdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63377,9 +63507,9 @@ "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_createsmartadvisorruledto" + "target": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63389,9 +63519,9 @@ "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_createvettestimonialdto" + "target": "backend_src_cms_dto_cms_dto_createvettestimonialdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63401,9 +63531,9 @@ "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_errordetailfield" + "target": "backend_src_common_schemas_error_response_schema_errordetailfield", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63413,9 +63543,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_guards_roles_guard", - "target": "backend_src_common_decorators_roles_decorator_roles_key" + "target": "backend_src_common_decorators_roles_decorator_roles_key", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63425,9 +63555,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_guards_roles_guard_spec", - "target": "backend_src_common_guards_roles_guard_rolesguard" + "target": "backend_src_common_guards_roles_guard_rolesguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63437,9 +63567,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_guards_roles_guard_spec", - "target": "backend_src_common_decorators_roles_decorator_roles_key" + "target": "backend_src_common_decorators_roles_decorator_roles_key", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63449,9 +63579,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_interceptors_decimal_interceptor_spec", - "target": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor" + "target": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63461,9 +63591,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_metrics_controller", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63473,9 +63603,9 @@ "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_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63485,9 +63615,9 @@ "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_smsservice" + "target": "backend_src_common_services_sms_service_smsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63497,9 +63627,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_contact_contact_controller", - "target": "backend_src_contact_contact_service_contactservice" + "target": "backend_src_contact_contact_service_contactservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63509,9 +63639,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_contact_contact_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63521,9 +63651,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_contact_contact_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard" + "target": "backend_src_common_guards_roles_guard_rolesguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63533,9 +63663,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_contact_contact_controller", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63545,9 +63675,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_contact_contact_module", - "target": "backend_src_contact_contact_controller_contactcontroller" + "target": "backend_src_contact_contact_controller_contactcontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63557,9 +63687,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_contact_contact_module", - "target": "backend_src_contact_contact_service_contactservice" + "target": "backend_src_contact_contact_service_contactservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63569,9 +63699,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_contact_contact_module", - "target": "backend_src_common_sms_module_smsmodule" + "target": "backend_src_common_sms_module_smsmodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63581,9 +63711,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_contact_contact_service", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63593,9 +63723,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_contact_contact_service", - "target": "backend_src_common_services_sms_service_smsservice" + "target": "backend_src_common_services_sms_service_smsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63605,9 +63735,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_doctors_doctors_controller", - "target": "backend_src_doctors_doctors_service_doctorquery" + "target": "backend_src_doctors_doctors_service_doctorquery", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63617,9 +63747,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_doctors_doctors_controller", - "target": "backend_src_doctors_doctors_service_doctorsservice" + "target": "backend_src_doctors_doctors_service_doctorsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63629,9 +63759,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_doctors_doctors_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63641,9 +63771,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_doctors_doctors_module", - "target": "backend_src_doctors_doctors_service_doctorsservice" + "target": "backend_src_doctors_doctors_service_doctorsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63653,9 +63783,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_doctors_doctors_module", - "target": "backend_src_doctors_doctors_controller_doctorscontroller" + "target": "backend_src_doctors_doctors_controller_doctorscontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63665,9 +63795,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_doctors_doctors_module", - "target": "backend_src_prisma_prisma_module_prismamodule" + "target": "backend_src_prisma_prisma_module_prismamodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63677,9 +63807,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_doctors_doctors_service", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63689,9 +63819,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_home_dto_update_home_dto", - "target": "backend_src_home_dto_create_home_dto_createhomedto" + "target": "backend_src_home_dto_create_home_dto_createhomedto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63701,9 +63831,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_home_home_controller", - "target": "backend_src_home_home_service_homeservice" + "target": "backend_src_home_home_service_homeservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63713,9 +63843,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_home_home_module", - "target": "backend_src_home_home_service_homeservice" + "target": "backend_src_home_home_service_homeservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63725,9 +63855,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_home_home_module", - "target": "backend_src_home_home_controller_homecontroller" + "target": "backend_src_home_home_controller_homecontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63737,9 +63867,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_home_home_service", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63749,9 +63879,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller", - "target": "backend_src_ingredients_ingredients_service_ingredientsservice" + "target": "backend_src_ingredients_ingredients_service_ingredientsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63761,9 +63891,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63773,9 +63903,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard" + "target": "backend_src_common_guards_roles_guard_rolesguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63785,9 +63915,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63797,9 +63927,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_module", - "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller" + "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63809,9 +63939,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_module", - "target": "backend_src_ingredients_ingredients_service_ingredientsservice" + "target": "backend_src_ingredients_ingredients_service_ingredientsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63821,9 +63951,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_module", - "target": "backend_src_prisma_prisma_module_prismamodule" + "target": "backend_src_prisma_prisma_module_prismamodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63833,9 +63963,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_service", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63845,9 +63975,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_main", - "target": "backend_src_app_module_appmodule" + "target": "backend_src_app_module_appmodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63857,9 +63987,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_main", - "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter" + "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63869,9 +63999,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_main", - "target": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter" + "target": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63881,9 +64011,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_main", - "target": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor" + "target": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63893,9 +64023,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_controller", - "target": "backend_src_orders_orders_service_ordersservice" + "target": "backend_src_orders_orders_service_ordersservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63905,9 +64035,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_controller", - "target": "backend_src_orders_dto_create_order_dto_createorderdto" + "target": "backend_src_orders_dto_create_order_dto_createorderdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63917,9 +64047,9 @@ "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_jwtauthguard" + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63929,9 +64059,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_controller", - "target": "backend_src_common_dto_pagination_dto_paginationdto" + "target": "backend_src_common_dto_pagination_dto_paginationdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63941,9 +64071,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_spec", - "target": "backend_src_orders_orders_controller_orderscontroller" + "target": "backend_src_orders_orders_controller_orderscontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63953,9 +64083,9 @@ "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_ordersservice" + "target": "backend_src_orders_orders_service_ordersservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63965,9 +64095,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_module", - "target": "backend_src_orders_orders_service_ordersservice" + "target": "backend_src_orders_orders_service_ordersservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63977,9 +64107,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_module", - "target": "backend_src_orders_orders_controller_orderscontroller" + "target": "backend_src_orders_orders_controller_orderscontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -63989,9 +64119,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_service", - "target": "backend_src_common_services_sms_service_smsservice" + "target": "backend_src_common_services_sms_service_smsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64001,9 +64131,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_service", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64013,9 +64143,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_service", - "target": "backend_src_common_dto_pagination_dto_paginationdto" + "target": "backend_src_common_dto_pagination_dto_paginationdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64025,9 +64155,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_service", - "target": "backend_src_orders_dto_create_order_dto_createorderdto" + "target": "backend_src_orders_dto_create_order_dto_createorderdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64037,9 +64167,9 @@ "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_ordersservice" + "target": "backend_src_orders_orders_service_ordersservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64049,9 +64179,9 @@ "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_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64061,9 +64191,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_service_spec", - "target": "backend_src_common_services_sms_service_smsservice" + "target": "backend_src_common_services_sms_service_smsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64073,9 +64203,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_payment_service_paymentservice" + "target": "backend_src_payment_payment_service_paymentservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64085,9 +64215,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_zibal_service_zibalservice" + "target": "backend_src_payment_zibal_service_zibalservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64097,9 +64227,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto" + "target": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64109,9 +64239,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto" + "target": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64121,9 +64251,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto" + "target": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64133,9 +64263,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto" + "target": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64145,9 +64275,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64157,9 +64287,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard" + "target": "backend_src_common_guards_roles_guard_rolesguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64169,9 +64299,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64181,9 +64311,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_module", - "target": "backend_src_payment_payment_controller_paymentcontroller" + "target": "backend_src_payment_payment_controller_paymentcontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64193,9 +64323,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_module", - "target": "backend_src_payment_payment_service_paymentservice" + "target": "backend_src_payment_payment_service_paymentservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64205,9 +64335,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_module", - "target": "backend_src_payment_zibal_service_zibalservice" + "target": "backend_src_payment_zibal_service_zibalservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64217,9 +64347,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_module", - "target": "backend_src_prisma_prisma_module_prismamodule" + "target": "backend_src_prisma_prisma_module_prismamodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64229,9 +64359,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_module", - "target": "backend_src_common_sms_module_smsmodule" + "target": "backend_src_common_sms_module_smsmodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64241,9 +64371,9 @@ "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_admintransactionfilterdto" + "target": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64253,9 +64383,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_service", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64265,9 +64395,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_service", - "target": "backend_src_payment_zibal_service_zibalservice" + "target": "backend_src_payment_zibal_service_zibalservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64277,9 +64407,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_service", - "target": "backend_src_common_services_sms_service_smsservice" + "target": "backend_src_common_services_sms_service_smsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64289,9 +64419,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_zibal_service", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64301,9 +64431,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_zibal_service", - "target": "backend_src_payment_interfaces_payment_gateway_interface_gatewayhealthresult" + "target": "backend_src_payment_interfaces_payment_gateway_interface_gatewayhealthresult", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64313,9 +64443,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_zibal_service", - "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway" + "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64325,9 +64455,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_zibal_service", - "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentinquiryresult" + "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentinquiryresult", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64337,9 +64467,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_zibal_service", - "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestoptions" + "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestoptions", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64349,9 +64479,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_zibal_service", - "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestresult" + "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestresult", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64361,9 +64491,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_zibal_service", - "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentverifyresult" + "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentverifyresult", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64373,9 +64503,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_dto_update_pet_dto", - "target": "backend_src_pets_dto_create_pet_dto_createpetdto" + "target": "backend_src_pets_dto_create_pet_dto_createpetdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64385,9 +64515,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_controller", - "target": "backend_src_pets_pets_service_petsservice" + "target": "backend_src_pets_pets_service_petsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64397,9 +64527,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_controller", - "target": "backend_src_pets_dto_create_pet_dto_createpetdto" + "target": "backend_src_pets_dto_create_pet_dto_createpetdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64409,9 +64539,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_controller", - "target": "backend_src_pets_dto_update_pet_dto_updatepetdto" + "target": "backend_src_pets_dto_update_pet_dto_updatepetdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64421,9 +64551,9 @@ "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_createreminderdto" + "target": "backend_src_pets_dto_create_reminder_dto_createreminderdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64433,9 +64563,9 @@ "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_createhealthlogdto" + "target": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64445,9 +64575,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64457,9 +64587,9 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_controller", - "target": "backend_src_common_dto_pagination_dto_paginationdto" + "target": "backend_src_common_dto_pagination_dto_paginationdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64469,9 +64599,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_spec", - "target": "backend_src_pets_pets_controller_petscontroller" + "target": "backend_src_pets_pets_controller_petscontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64481,9 +64611,9 @@ "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_petsservice" + "target": "backend_src_pets_pets_service_petsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64493,9 +64623,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_module", - "target": "backend_src_pets_pets_service_petsservice" + "target": "backend_src_pets_pets_service_petsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64505,9 +64635,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_module", - "target": "backend_src_pets_pets_controller_petscontroller" + "target": "backend_src_pets_pets_controller_petscontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64517,9 +64647,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_service", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64529,9 +64659,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_service", - "target": "backend_src_common_dto_pagination_dto_paginationdto" + "target": "backend_src_common_dto_pagination_dto_paginationdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64541,9 +64671,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_service", - "target": "backend_src_pets_dto_create_pet_dto_createpetdto" + "target": "backend_src_pets_dto_create_pet_dto_createpetdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64553,9 +64683,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_service", - "target": "backend_src_pets_dto_update_pet_dto_updatepetdto" + "target": "backend_src_pets_dto_update_pet_dto_updatepetdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64565,9 +64695,9 @@ "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_petsservice" + "target": "backend_src_pets_pets_service_petsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64577,9 +64707,9 @@ "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_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64589,9 +64719,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller", - "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice" + "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64601,9 +64731,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64613,9 +64743,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard" + "target": "backend_src_common_guards_roles_guard_rolesguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64625,9 +64755,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64637,9 +64767,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_module", - "target": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller" + "target": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64649,9 +64779,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_module", - "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice" + "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64661,9 +64791,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_module", - "target": "backend_src_prisma_prisma_module_prismamodule" + "target": "backend_src_prisma_prisma_module_prismamodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64673,9 +64803,9 @@ "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_smsservice" + "target": "backend_src_common_services_sms_service_smsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64685,9 +64815,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_service", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64697,9 +64827,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_service", - "target": "backend_src_common_services_sms_service_smsservice" + "target": "backend_src_common_services_sms_service_smsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64709,9 +64839,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_prisma_prisma_module", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64721,9 +64851,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_dto_get_products_dto", - "target": "backend_src_common_dto_pagination_dto_paginationdto" + "target": "backend_src_common_dto_pagination_dto_paginationdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64733,9 +64863,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_controller", - "target": "backend_src_products_products_service_productsservice" + "target": "backend_src_products_products_service_productsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64745,9 +64875,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_controller", - "target": "backend_src_products_dto_get_products_dto_getproductsdto" + "target": "backend_src_products_dto_get_products_dto_getproductsdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64757,9 +64887,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64769,9 +64899,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard" + "target": "backend_src_common_guards_roles_guard_rolesguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64781,9 +64911,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_controller", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64793,9 +64923,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_controller_spec", - "target": "backend_src_products_products_controller_productscontroller" + "target": "backend_src_products_products_controller_productscontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64805,9 +64935,9 @@ "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_productsservice" + "target": "backend_src_products_products_service_productsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64817,9 +64947,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_module", - "target": "backend_src_products_products_service_productsservice" + "target": "backend_src_products_products_service_productsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64829,9 +64959,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_module", - "target": "backend_src_products_products_controller_productscontroller" + "target": "backend_src_products_products_controller_productscontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64841,9 +64971,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_service", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64853,9 +64983,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_service", - "target": "backend_src_products_dto_get_products_dto_getproductsdto" + "target": "backend_src_products_dto_get_products_dto_getproductsdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64865,9 +64995,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_service_spec", - "target": "backend_src_products_products_service_productsservice" + "target": "backend_src_products_products_service_productsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64877,9 +65007,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_service_spec", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64889,9 +65019,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_redis_redis_module", - "target": "backend_src_redis_redis_service_redisservice" + "target": "backend_src_redis_redis_service_redisservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64901,9 +65031,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_redis_redis_service_spec", - "target": "backend_src_redis_redis_service_redisservice" + "target": "backend_src_redis_redis_service_redisservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64913,9 +65043,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller", - "target": "backend_src_reviews_reviews_service_reviewsservice" + "target": "backend_src_reviews_reviews_service_reviewsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64925,9 +65055,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller", - "target": "backend_src_reviews_dto_create_review_dto_createreviewdto" + "target": "backend_src_reviews_dto_create_review_dto_createreviewdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64937,9 +65067,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller", - "target": "backend_src_reviews_dto_update_review_dto_updatereviewdto" + "target": "backend_src_reviews_dto_update_review_dto_updatereviewdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64949,9 +65079,9 @@ "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_jwtauthguard" + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64961,9 +65091,9 @@ "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_rolesguard" + "target": "backend_src_common_guards_roles_guard_rolesguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64973,9 +65103,9 @@ "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_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64985,9 +65115,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_module", - "target": "backend_src_reviews_reviews_service_reviewsservice" + "target": "backend_src_reviews_reviews_service_reviewsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -64997,9 +65127,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_module", - "target": "backend_src_reviews_reviews_controller_reviewscontroller" + "target": "backend_src_reviews_reviews_controller_reviewscontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65009,9 +65139,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_module", - "target": "backend_src_prisma_prisma_module_prismamodule" + "target": "backend_src_prisma_prisma_module_prismamodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65021,9 +65151,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_service", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65033,9 +65163,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_service", - "target": "backend_src_reviews_dto_create_review_dto_createreviewdto" + "target": "backend_src_reviews_dto_create_review_dto_createreviewdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65045,9 +65175,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_service", - "target": "backend_src_reviews_dto_update_review_dto_updatereviewdto" + "target": "backend_src_reviews_dto_update_review_dto_updatereviewdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65057,9 +65187,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_seo_seo_controller", - "target": "backend_src_seo_seo_service_seoservice" + "target": "backend_src_seo_seo_service_seoservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65069,9 +65199,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_seo_seo_module", - "target": "backend_src_seo_seo_controller_seocontroller" + "target": "backend_src_seo_seo_controller_seocontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65081,9 +65211,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_seo_seo_module", - "target": "backend_src_seo_seo_service_seoservice" + "target": "backend_src_seo_seo_service_seoservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65093,9 +65223,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_seo_seo_module", - "target": "backend_src_prisma_prisma_module_prismamodule" + "target": "backend_src_prisma_prisma_module_prismamodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65105,9 +65235,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_seo_seo_service", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65117,9 +65247,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller", - "target": "backend_src_settings_settings_service_scientifictermdata" + "target": "backend_src_settings_settings_service_scientifictermdata", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65129,9 +65259,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller", - "target": "backend_src_settings_settings_service_settingsservice" + "target": "backend_src_settings_settings_service_settingsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65141,9 +65271,9 @@ "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_smslogquerydto" + "target": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65153,9 +65283,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65165,9 +65295,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard" + "target": "backend_src_common_guards_roles_guard_rolesguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65177,9 +65307,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65189,9 +65319,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_spec", - "target": "backend_src_settings_settings_controller_settingscontroller" + "target": "backend_src_settings_settings_controller_settingscontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65201,9 +65331,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_spec", - "target": "backend_src_settings_settings_service_settingsservice" + "target": "backend_src_settings_settings_service_settingsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65213,9 +65343,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_spec", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65225,9 +65355,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_spec", - "target": "backend_src_common_guards_roles_guard_rolesguard" + "target": "backend_src_common_guards_roles_guard_rolesguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65237,9 +65367,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_spec", - "target": "backend_src_common_decorators_roles_decorator_roles_key" + "target": "backend_src_common_decorators_roles_decorator_roles_key", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65249,9 +65379,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_module", - "target": "backend_src_settings_settings_service_settingsservice" + "target": "backend_src_settings_settings_service_settingsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65261,9 +65391,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_module", - "target": "backend_src_settings_settings_controller_settingscontroller" + "target": "backend_src_settings_settings_controller_settingscontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65273,9 +65403,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_module", - "target": "backend_src_prisma_prisma_module_prismamodule" + "target": "backend_src_prisma_prisma_module_prismamodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65285,9 +65415,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65297,9 +65427,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service", - "target": "backend_src_common_services_sms_service_smslogquery" + "target": "backend_src_common_services_sms_service_smslogquery", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65309,9 +65439,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service", - "target": "backend_src_common_services_sms_service_smsservice" + "target": "backend_src_common_services_sms_service_smsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65321,9 +65451,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service", - "target": "backend_src_settings_default_ui_texts_default_ui_texts" + "target": "backend_src_settings_default_ui_texts_default_ui_texts", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65333,9 +65463,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service_spec", - "target": "backend_src_settings_settings_service_settingsservice" + "target": "backend_src_settings_settings_service_settingsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65345,9 +65475,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service_spec", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65357,9 +65487,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller", - "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice" + "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65369,9 +65499,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65381,9 +65511,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard" + "target": "backend_src_common_guards_roles_guard_rolesguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65393,9 +65523,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65405,9 +65535,9 @@ "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_smartadvisorcontroller" + "target": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65417,9 +65547,9 @@ "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_smartadvisorservice" + "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65429,9 +65559,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_module", - "target": "backend_src_prisma_prisma_module_prismamodule" + "target": "backend_src_prisma_prisma_module_prismamodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65441,9 +65571,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_service", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65453,9 +65583,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller", - "target": "backend_src_testimonials_testimonials_service_testimonialsservice" + "target": "backend_src_testimonials_testimonials_service_testimonialsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65465,9 +65595,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65477,9 +65607,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard" + "target": "backend_src_common_guards_roles_guard_rolesguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65489,9 +65619,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65501,9 +65631,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_module", - "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller" + "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65513,9 +65643,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_module", - "target": "backend_src_testimonials_testimonials_service_testimonialsservice" + "target": "backend_src_testimonials_testimonials_service_testimonialsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65525,9 +65655,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_module", - "target": "backend_src_prisma_prisma_module_prismamodule" + "target": "backend_src_prisma_prisma_module_prismamodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65537,9 +65667,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_service", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65549,9 +65679,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_tickets_tickets_service_ticketsservice" + "target": "backend_src_tickets_tickets_service_ticketsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65561,9 +65691,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto" + "target": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65573,9 +65703,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_tickets_dto_create_ticket_dto_createticketdto" + "target": "backend_src_tickets_dto_create_ticket_dto_createticketdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65585,9 +65715,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_tickets_dto_create_ticket_dto_replyticketdto" + "target": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65597,9 +65727,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto" + "target": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65609,9 +65739,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65621,9 +65751,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard" + "target": "backend_src_common_guards_roles_guard_rolesguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65633,9 +65763,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65645,9 +65775,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_module", - "target": "backend_src_tickets_tickets_service_ticketsservice" + "target": "backend_src_tickets_tickets_service_ticketsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65657,9 +65787,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_module", - "target": "backend_src_tickets_tickets_controller_ticketscontroller" + "target": "backend_src_tickets_tickets_controller_ticketscontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65669,9 +65799,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_module", - "target": "backend_src_prisma_prisma_module_prismamodule" + "target": "backend_src_prisma_prisma_module_prismamodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65681,9 +65811,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service", - "target": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto" + "target": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65693,9 +65823,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65705,9 +65835,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service", - "target": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto" + "target": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65717,9 +65847,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service", - "target": "backend_src_tickets_dto_create_ticket_dto_createticketdto" + "target": "backend_src_tickets_dto_create_ticket_dto_createticketdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65729,9 +65859,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service", - "target": "backend_src_tickets_dto_create_ticket_dto_replyticketdto" + "target": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65741,9 +65871,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_controller", - "target": "backend_src_users_users_service_usersservice" + "target": "backend_src_users_users_service_usersservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65753,9 +65883,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65765,9 +65895,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_controller", - "target": "backend_src_users_dto_update_profile_dto_updateprofiledto" + "target": "backend_src_users_dto_update_profile_dto_updateprofiledto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65777,9 +65907,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_controller", - "target": "backend_src_users_dto_address_dto_addressdto" + "target": "backend_src_users_dto_address_dto_addressdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65789,9 +65919,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_controller_spec", - "target": "backend_src_users_users_controller_userscontroller" + "target": "backend_src_users_users_controller_userscontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65801,9 +65931,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_controller_spec", - "target": "backend_src_users_users_service_usersservice" + "target": "backend_src_users_users_service_usersservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65813,9 +65943,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_module", - "target": "backend_src_users_users_service_usersservice" + "target": "backend_src_users_users_service_usersservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65825,9 +65955,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_module", - "target": "backend_src_users_users_controller_userscontroller" + "target": "backend_src_users_users_controller_userscontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65837,9 +65967,9 @@ "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_updateprofiledto" + "target": "backend_src_users_dto_update_profile_dto_updateprofiledto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65849,9 +65979,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_service", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65861,9 +65991,9 @@ "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_normalizemobile" + "target": "backend_src_common_utils_phone_utils_normalizemobile", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65873,9 +66003,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_service_spec", - "target": "backend_src_users_users_service_usersservice" + "target": "backend_src_users_users_service_usersservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65885,9 +66015,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_service_spec", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65897,9 +66027,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_videos_dto_get_videos_query_dto", - "target": "backend_src_common_dto_pagination_dto_paginationdto" + "target": "backend_src_common_dto_pagination_dto_paginationdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65909,9 +66039,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_videos_videos_controller", - "target": "backend_src_videos_videos_service_videosservice" + "target": "backend_src_videos_videos_service_videosservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65921,9 +66051,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_videos_videos_controller", - "target": "backend_src_videos_dto_create_video_dto_createvideodto" + "target": "backend_src_videos_dto_create_video_dto_createvideodto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65933,9 +66063,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_videos_videos_controller", - "target": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto" + "target": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65945,9 +66075,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_videos_videos_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65957,9 +66087,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_videos_videos_module", - "target": "backend_src_videos_videos_controller_videoscontroller" + "target": "backend_src_videos_videos_controller_videoscontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65969,9 +66099,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_videos_videos_module", - "target": "backend_src_videos_videos_service_videosservice" + "target": "backend_src_videos_videos_service_videosservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65981,9 +66111,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_videos_videos_service", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -65993,9 +66123,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_videos_videos_service", - "target": "backend_src_videos_dto_create_video_dto_createvideodto" + "target": "backend_src_videos_dto_create_video_dto_createvideodto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66005,9 +66135,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller", - "target": "backend_src_wholesale_wholesale_service_wholesaleservice" + "target": "backend_src_wholesale_wholesale_service_wholesaleservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66017,9 +66147,9 @@ "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_wholesaleapplydto" + "target": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66029,9 +66159,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66041,9 +66171,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard" + "target": "backend_src_common_guards_roles_guard_rolesguard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66053,9 +66183,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66065,9 +66195,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_module", - "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller" + "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66077,9 +66207,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_module", - "target": "backend_src_wholesale_wholesale_service_wholesaleservice" + "target": "backend_src_wholesale_wholesale_service_wholesaleservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66089,9 +66219,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_module", - "target": "backend_src_prisma_prisma_module_prismamodule" + "target": "backend_src_prisma_prisma_module_prismamodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66101,9 +66231,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_service", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66113,9 +66243,9 @@ "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_wholesaleapplydto" + "target": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66125,9 +66255,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_service", - "target": "backend_src_common_services_sms_service_smsservice" + "target": "backend_src_common_services_sms_service_smsservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66137,9 +66267,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wiki_dto_update_wiki_dto", - "target": "backend_src_wiki_dto_create_wiki_dto_createwikidto" + "target": "backend_src_wiki_dto_create_wiki_dto_createwikidto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66149,9 +66279,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wiki_wiki_controller", - "target": "backend_src_common_dto_pagination_dto_paginationdto" + "target": "backend_src_common_dto_pagination_dto_paginationdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66161,9 +66291,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wiki_wiki_controller", - "target": "backend_src_wiki_wiki_service_wikiservice" + "target": "backend_src_wiki_wiki_service_wikiservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66173,9 +66303,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wiki_wiki_module", - "target": "backend_src_wiki_wiki_service_wikiservice" + "target": "backend_src_wiki_wiki_service_wikiservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66185,9 +66315,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wiki_wiki_module", - "target": "backend_src_wiki_wiki_controller_wikicontroller" + "target": "backend_src_wiki_wiki_controller_wikicontroller", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66197,9 +66327,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wiki_wiki_service", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66209,9 +66339,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wiki_wiki_service", - "target": "backend_src_common_dto_pagination_dto_paginationdto" + "target": "backend_src_common_dto_pagination_dto_paginationdto", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66221,9 +66351,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_test_app_audit_verification_e2e_spec", - "target": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor" + "target": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66233,9 +66363,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_test_app_audit_verification_e2e_spec", - "target": "backend_src_app_module_appmodule" + "target": "backend_src_app_module_appmodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66245,9 +66375,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_test_app_audit_verification_e2e_spec", - "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter" + "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66257,9 +66387,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_test_app_audit_verification_e2e_spec", - "target": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter" + "target": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66269,9 +66399,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_test_app_e2e_spec", - "target": "backend_src_app_module_appmodule" + "target": "backend_src_app_module_appmodule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66281,9 +66411,9 @@ "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" + "target": "frontend_admin_panel_package_json_axios", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66293,9 +66423,9 @@ "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" + "target": "frontend_admin_panel_package_json_lucide_react", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66305,9 +66435,9 @@ "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" + "target": "frontend_admin_panel_package_json_react", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66317,9 +66447,9 @@ "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" + "target": "frontend_admin_panel_package_json_react_dom", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66329,9 +66459,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_package_dependencies_react_hot_toast", - "target": "react_hot_toast" + "target": "react_hot_toast", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66341,9 +66471,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_package_dependencies_react_router_dom", - "target": "react_router_dom" + "target": "react_router_dom", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66353,9 +66483,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_package_dependencies_recharts", - "target": "recharts" + "target": "recharts", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66365,9 +66495,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_package_dependencies_tanstack_react_query", - "target": "tanstack_react_query" + "target": "tanstack_react_query", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66377,9 +66507,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_package_dependencies_vite", - "target": "vite" + "target": "vite", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66389,9 +66519,9 @@ "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" + "target": "frontend_admin_panel_package_json_zustand", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66401,9 +66531,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_package_devdependencies_autoprefixer", - "target": "autoprefixer" + "target": "autoprefixer", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66413,9 +66543,9 @@ "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" + "target": "frontend_admin_panel_package_json_eslint", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66425,9 +66555,9 @@ "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" + "target": "frontend_admin_panel_package_json_eslint_js", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66437,9 +66567,9 @@ "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" + "target": "eslint_plugin_react_hooks", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66449,9 +66579,9 @@ "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" + "target": "eslint_plugin_react_refresh", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66461,9 +66591,9 @@ "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" + "target": "frontend_admin_panel_package_json_globals", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66473,9 +66603,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_package_devdependencies_postcss", - "target": "postcss" + "target": "postcss", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66485,9 +66615,9 @@ "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" + "target": "frontend_admin_panel_package_json_tailwindcss", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66497,9 +66627,9 @@ "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" + "target": "frontend_admin_panel_package_json_tailwindcss_postcss", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66509,9 +66639,9 @@ "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" + "target": "frontend_admin_panel_package_json_types_node", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66521,9 +66651,9 @@ "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" + "target": "frontend_admin_panel_package_json_types_react", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66533,9 +66663,9 @@ "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" + "target": "frontend_admin_panel_package_json_types_react_dom", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66545,9 +66675,9 @@ "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" + "target": "frontend_admin_panel_package_json_typescript", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66557,9 +66687,9 @@ "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" + "target": "frontend_admin_panel_package_json_typescript_eslint", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66569,9 +66699,9 @@ "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" + "target": "frontend_admin_panel_package_json_vitejs_plugin_react", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66581,9 +66711,9 @@ "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" + "target": "frontend_admin_panel_src_routes_adminroutes_router", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66593,9 +66723,9 @@ "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_sidebar" + "target": "frontend_admin_panel_src_components_sidebar_sidebar", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66605,9 +66735,9 @@ "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_topbar" + "target": "frontend_admin_panel_src_components_topbar_topbar", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66617,9 +66747,9 @@ "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" + "target": "frontend_admin_panel_src_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66629,9 +66759,9 @@ "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" + "target": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66641,9 +66771,9 @@ "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_adminuser" + "target": "frontend_admin_panel_src_types_admin_adminuser", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66653,9 +66783,9 @@ "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_apiresponse" + "target": "frontend_admin_panel_src_types_admin_apiresponse", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66665,9 +66795,9 @@ "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_authresponsedata" + "target": "frontend_admin_panel_src_types_admin_authresponsedata", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66677,9 +66807,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_sidebar", - "target": "frontend_admin_panel_src_services_api_api" + "target": "frontend_admin_panel_src_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66689,9 +66819,9 @@ "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" + "target": "frontend_admin_panel_src_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66701,9 +66831,9 @@ "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" + "target": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66713,9 +66843,9 @@ "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" + "target": "frontend_admin_panel_src_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66725,9 +66855,9 @@ "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" + "target": "frontend_admin_panel_src_services_api_base_domain", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66737,9 +66867,9 @@ "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_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner_spinner", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66749,9 +66879,9 @@ "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_pagination" + "target": "frontend_admin_panel_src_components_ui_pagination_pagination", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66761,9 +66891,9 @@ "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_components_ui_confirmmodal_confirmmodal" + "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66773,9 +66903,9 @@ "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_imagepreviewmodal" + "target": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodal", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66785,9 +66915,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_main", - "target": "frontend_admin_panel_src_app_app" + "target": "frontend_admin_panel_src_app_app", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66797,9 +66927,9 @@ "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" + "target": "frontend_admin_panel_src_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66809,9 +66939,9 @@ "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_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner_spinner", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66821,9 +66951,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_b2bmanager", - "target": "frontend_admin_panel_src_types_admin_b2binquiry" + "target": "frontend_admin_panel_src_types_admin_b2binquiry", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66833,9 +66963,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_b2bmanager", - "target": "frontend_admin_panel_src_types_admin_partneraccount" + "target": "frontend_admin_panel_src_types_admin_partneraccount", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66845,9 +66975,9 @@ "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" + "target": "frontend_admin_panel_src_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66857,9 +66987,9 @@ "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" + "target": "frontend_admin_panel_src_services_api_base_domain", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66869,9 +66999,9 @@ "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_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner_spinner", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66881,9 +67011,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_bannersmanager", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal" + "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66893,9 +67023,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_bannersmanager", - "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector" + "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66905,9 +67035,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_bannersmanager", - "target": "frontend_admin_panel_src_types_admin_banner" + "target": "frontend_admin_panel_src_types_admin_banner", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66917,9 +67047,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_services_api_api" + "target": "frontend_admin_panel_src_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66929,9 +67059,9 @@ "source_location": "L4", "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" + "target": "frontend_admin_panel_src_services_api_base_domain", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66941,9 +67071,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner_spinner", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66953,9 +67083,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_components_ui_pagination_pagination" + "target": "frontend_admin_panel_src_components_ui_pagination_pagination", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66965,9 +67095,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector" + "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66977,9 +67107,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal" + "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "confidence_score": 1.0 }, { "relation": "imports", @@ -66989,9 +67119,9 @@ "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" + "target": "frontend_admin_panel_src_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67001,9 +67131,9 @@ "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" + "target": "frontend_admin_panel_src_services_api_base_domain", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67013,9 +67143,9 @@ "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_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner_spinner", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67025,9 +67155,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_categories", - "target": "frontend_admin_panel_src_components_ui_pagination_pagination" + "target": "frontend_admin_panel_src_components_ui_pagination_pagination", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67037,9 +67167,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_categories", - "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector" + "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67049,9 +67179,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_categories", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal" + "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67061,9 +67191,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_cms", - "target": "frontend_admin_panel_src_services_api_api" + "target": "frontend_admin_panel_src_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67073,9 +67203,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_cms", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal" + "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67085,9 +67215,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_contactsubmissions", - "target": "frontend_admin_panel_src_services_api_api" + "target": "frontend_admin_panel_src_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67097,9 +67227,9 @@ "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" + "target": "frontend_admin_panel_src_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67109,9 +67239,9 @@ "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_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner_spinner", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67121,9 +67251,9 @@ "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_pagination" + "target": "frontend_admin_panel_src_components_ui_pagination_pagination", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67133,9 +67263,9 @@ "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_confirmmodal" + "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67145,9 +67275,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_components_ui_priceinput_priceinput" + "target": "frontend_admin_panel_src_components_ui_priceinput_priceinput", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67157,9 +67287,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_dashboard", - "target": "frontend_admin_panel_src_services_api_api" + "target": "frontend_admin_panel_src_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67169,9 +67299,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_doctorsmanager", - "target": "frontend_admin_panel_src_services_api_api" + "target": "frontend_admin_panel_src_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67181,9 +67311,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_doctorsmanager", - "target": "frontend_admin_panel_src_services_api_base_domain" + "target": "frontend_admin_panel_src_services_api_base_domain", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67193,9 +67323,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_doctorsmanager", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal" + "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67205,9 +67335,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_doctorsmanager", - "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector" + "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67217,9 +67347,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_doctorsmanager", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner_spinner", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67229,9 +67359,9 @@ "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" + "target": "frontend_admin_panel_src_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67241,9 +67371,9 @@ "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_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner_spinner", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67253,9 +67383,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_financialsettingspage", - "target": "frontend_admin_panel_src_components_ui_priceinput_priceinput" + "target": "frontend_admin_panel_src_components_ui_priceinput_priceinput", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67265,9 +67395,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_financialsettingspage", - "target": "frontend_admin_panel_src_types_admin_financialsettings" + "target": "frontend_admin_panel_src_types_admin_financialsettings", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67277,9 +67407,9 @@ "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" + "target": "frontend_admin_panel_src_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67289,9 +67419,9 @@ "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" + "target": "frontend_admin_panel_src_services_api_base_domain", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67301,9 +67431,9 @@ "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_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner_spinner", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67313,9 +67443,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_ingredientsmanager", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal" + "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67325,9 +67455,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_ingredientsmanager", - "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector" + "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67337,9 +67467,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_ingredientsmanager", - "target": "frontend_admin_panel_src_types_admin_ingredient" + "target": "frontend_admin_panel_src_types_admin_ingredient", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67349,9 +67479,9 @@ "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" + "target": "frontend_admin_panel_src_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67361,9 +67491,9 @@ "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" + "target": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67373,9 +67503,9 @@ "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_apiresponse" + "target": "frontend_admin_panel_src_types_admin_apiresponse", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67385,9 +67515,9 @@ "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_authresponsedata" + "target": "frontend_admin_panel_src_types_admin_authresponsedata", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67397,9 +67527,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_services_api_api" + "target": "frontend_admin_panel_src_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67409,9 +67539,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_services_api_base_domain" + "target": "frontend_admin_panel_src_services_api_base_domain", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67421,9 +67551,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner_spinner", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67433,9 +67563,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_components_ui_pagination_pagination" + "target": "frontend_admin_panel_src_components_ui_pagination_pagination", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67445,9 +67575,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal" + "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67457,9 +67587,57 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodal" + "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/Orders.tsx", + "source_location": "L27", + "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": "L28", + "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": "L29", + "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": "L30", + "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", @@ -67469,9 +67647,9 @@ "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" + "target": "frontend_admin_panel_src_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67481,9 +67659,9 @@ "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" + "target": "frontend_admin_panel_src_services_api_base_domain", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67493,9 +67671,9 @@ "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_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner_spinner", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67505,9 +67683,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_pets", - "target": "frontend_admin_panel_src_components_ui_pagination_pagination" + "target": "frontend_admin_panel_src_components_ui_pagination_pagination", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67517,9 +67695,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_pets", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal" + "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67529,9 +67707,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_prescriptionsmanager", - "target": "frontend_admin_panel_src_services_api_api" + "target": "frontend_admin_panel_src_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67541,9 +67719,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_prescriptionsmanager", - "target": "frontend_admin_panel_src_services_api_base_domain" + "target": "frontend_admin_panel_src_services_api_base_domain", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67553,9 +67731,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_prescriptionsmanager", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner_spinner", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67565,9 +67743,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_prescriptionsmanager", - "target": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodal" + "target": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodal", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67577,9 +67755,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_prescriptionsmanager", - "target": "frontend_admin_panel_src_components_ui_badge_badge" + "target": "frontend_admin_panel_src_components_ui_badge_badge", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67589,9 +67767,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_prescriptionsmanager", - "target": "frontend_admin_panel_src_types_admin_prescription" + "target": "frontend_admin_panel_src_types_admin_prescription", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67601,9 +67779,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_products", - "target": "frontend_admin_panel_src_components_ui_priceinput_priceinput" + "target": "frontend_admin_panel_src_components_ui_priceinput_priceinput", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67613,9 +67791,9 @@ "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" + "target": "frontend_admin_panel_src_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67625,9 +67803,9 @@ "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" + "target": "frontend_admin_panel_src_services_api_base_domain", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67637,9 +67815,9 @@ "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_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner_spinner", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67649,9 +67827,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_products", - "target": "frontend_admin_panel_src_components_ui_pagination_pagination" + "target": "frontend_admin_panel_src_components_ui_pagination_pagination", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67661,9 +67839,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_products", - "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector" + "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67673,9 +67851,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_products", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal" + "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67685,9 +67863,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_reports", - "target": "frontend_admin_panel_src_services_api_api" + "target": "frontend_admin_panel_src_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67697,9 +67875,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_reports", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner_spinner", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67709,9 +67887,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_reviews", - "target": "frontend_admin_panel_src_services_api_api" + "target": "frontend_admin_panel_src_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67721,9 +67899,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_reviews", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner_spinner", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67733,9 +67911,9 @@ "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" + "target": "frontend_admin_panel_src_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67745,9 +67923,9 @@ "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_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner_spinner", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67757,9 +67935,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_seosettingspage", - "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector" + "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67769,9 +67947,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_seosettingspage", - "target": "frontend_admin_panel_src_types_admin_seosettings" + "target": "frontend_admin_panel_src_types_admin_seosettings", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67781,9 +67959,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_settings", - "target": "frontend_admin_panel_src_services_api_api" + "target": "frontend_admin_panel_src_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67793,9 +67971,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_settings", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner_spinner", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67805,9 +67983,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_settings", - "target": "frontend_admin_panel_src_components_ui_priceinput_priceinput" + "target": "frontend_admin_panel_src_components_ui_priceinput_priceinput", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67817,9 +67995,9 @@ "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" + "target": "frontend_admin_panel_src_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67829,9 +68007,9 @@ "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_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner_spinner", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67841,9 +68019,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_smartadvisormanager", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal" + "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67853,9 +68031,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_smartadvisormanager", - "target": "frontend_admin_panel_src_types_admin_product" + "target": "frontend_admin_panel_src_types_admin_product", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67865,21 +68043,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_smartadvisormanager", - "target": "frontend_admin_panel_src_types_admin_smartadvisorrule" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.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_services_api_api" + "target": "frontend_admin_panel_src_types_admin_smartadvisorrule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67889,9 +68055,21 @@ "source_location": "L40", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_smssettingspage", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner" + "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", @@ -67901,9 +68079,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_sslsettingspage", - "target": "frontend_admin_panel_src_services_api_api" + "target": "frontend_admin_panel_src_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67913,9 +68091,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_sslsettingspage", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner_spinner", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67925,9 +68103,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_systemsettingspage", - "target": "frontend_admin_panel_src_services_api_api" + "target": "frontend_admin_panel_src_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67937,9 +68115,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_systemsettingspage", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner_spinner", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67949,9 +68127,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_systemsettingspage", - "target": "frontend_admin_panel_src_types_admin_systemsettings" + "target": "frontend_admin_panel_src_types_admin_systemsettings", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67961,9 +68139,9 @@ "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" + "target": "frontend_admin_panel_src_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67973,9 +68151,9 @@ "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" + "target": "frontend_admin_panel_src_services_api_base_domain", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67985,9 +68163,9 @@ "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_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner_spinner", + "confidence_score": 1.0 }, { "relation": "imports", @@ -67997,9 +68175,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_testimonialsmanager", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal" + "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68009,9 +68187,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_testimonialsmanager", - "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector" + "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68021,9 +68199,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_testimonialsmanager", - "target": "frontend_admin_panel_src_types_admin_testimonial" + "target": "frontend_admin_panel_src_types_admin_testimonial", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68033,9 +68211,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_tickets", - "target": "frontend_admin_panel_src_services_api_api" + "target": "frontend_admin_panel_src_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68045,9 +68223,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_services_api_api" + "target": "frontend_admin_panel_src_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68057,9 +68235,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner_spinner", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68069,9 +68247,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_components_ui_pagination_pagination" + "target": "frontend_admin_panel_src_components_ui_pagination_pagination", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68081,9 +68259,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_services_api_api" + "target": "frontend_admin_panel_src_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68093,9 +68271,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_services_api_base_domain" + "target": "frontend_admin_panel_src_services_api_base_domain", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68105,9 +68283,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner_spinner", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68117,9 +68295,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_components_ui_toggleswitch_toggleswitch" + "target": "frontend_admin_panel_src_components_ui_toggleswitch_toggleswitch", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68129,9 +68307,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodal" + "target": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodal", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68141,9 +68319,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_services_api_api" + "target": "frontend_admin_panel_src_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68153,9 +68331,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_components_ui_skeleton_skeleton" + "target": "frontend_admin_panel_src_components_ui_skeleton_skeleton", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68165,9 +68343,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner_spinner", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68177,9 +68355,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_components_ui_pagination_pagination" + "target": "frontend_admin_panel_src_components_ui_pagination_pagination", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68189,9 +68367,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_types_admin_petsummary" + "target": "frontend_admin_panel_src_types_admin_petsummary", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68201,9 +68379,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_types_admin_useraddress" + "target": "frontend_admin_panel_src_types_admin_useraddress", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68213,9 +68391,9 @@ "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" + "target": "frontend_admin_panel_src_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68225,9 +68403,9 @@ "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" + "target": "frontend_admin_panel_src_services_api_base_domain", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68237,9 +68415,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_videos", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal" + "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68249,9 +68427,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_videos", - "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector" + "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68261,9 +68439,9 @@ "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" + "target": "frontend_admin_panel_src_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68273,9 +68451,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_wholesaleapplications", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal" + "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68285,9 +68463,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_wiki", - "target": "frontend_admin_panel_src_services_api_api" + "target": "frontend_admin_panel_src_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68297,9 +68475,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_wiki", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner_spinner", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68309,9 +68487,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_wiki", - "target": "frontend_admin_panel_src_components_ui_pagination_pagination" + "target": "frontend_admin_panel_src_components_ui_pagination_pagination", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68321,9 +68499,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_wiki", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal" + "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68333,9 +68511,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_components_layout_layout" + "target": "frontend_admin_panel_src_components_layout_layout", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68345,9 +68523,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_components_protectedroute_protectedroute" + "target": "frontend_admin_panel_src_components_protectedroute_protectedroute", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68357,9 +68535,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_login_login" + "target": "frontend_admin_panel_src_pages_login_login", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68369,9 +68547,9 @@ "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" + "target": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68381,9 +68559,9 @@ "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_apiresponse" + "target": "frontend_admin_panel_src_types_admin_apiresponse", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68393,9 +68571,9 @@ "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_authresponsedata" + "target": "frontend_admin_panel_src_types_admin_authresponsedata", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68405,9 +68583,9 @@ "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_adminuser" + "target": "frontend_admin_panel_src_types_admin_adminuser", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68417,9 +68595,9 @@ "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_authstate" + "target": "frontend_admin_panel_src_types_admin_authstate", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68429,9 +68607,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_blog_page", - "target": "frontend_application_components_blogpage_blogpage" + "target": "frontend_application_components_blogpage_blogpage", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68441,9 +68619,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_catalog_catalogclient", - "target": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalog" + "target": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalog", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68453,9 +68631,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_catalog_catalogclient", - "target": "frontend_application_lib_services_productservice_productservice" + "target": "frontend_application_lib_services_productservice_productservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68465,9 +68643,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_catalog_catalogclient", - "target": "frontend_application_lib_data_products_product" + "target": "frontend_application_lib_data_products_product", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68477,9 +68655,9 @@ "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" + "target": "frontend_application_lib_data_products_products", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68489,9 +68667,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_catalog_page", - "target": "frontend_application_app_catalog_catalogclient_catalogclient" + "target": "frontend_application_app_catalog_catalogclient_catalogclient", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68501,9 +68679,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_checkout_page", - "target": "frontend_application_components_checkoutpage_checkoutpage" + "target": "frontend_application_components_checkoutpage_checkoutpage", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68513,9 +68691,9 @@ "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_ordersuccess" + "target": "frontend_application_components_ordersuccess_ordersuccess", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68525,9 +68703,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_cartdrawer_cartdrawer" + "target": "frontend_application_components_cartdrawer_cartdrawer", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68537,9 +68715,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_loginmodal_loginmodal" + "target": "frontend_application_components_loginmodal_loginmodal", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68549,9 +68727,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_authmodal_authmodal" + "target": "frontend_application_components_authmodal_authmodal", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68561,9 +68739,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_b2bportal_b2bportal" + "target": "frontend_application_components_b2bportal_b2bportal", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68573,9 +68751,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_lib_store_userstore_useuserstore" + "target": "frontend_application_lib_store_userstore_useuserstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68585,9 +68763,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + "target": "frontend_application_lib_store_settingsstore_usesettingsstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68597,9 +68775,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_lib_store_uistore_useuistore" + "target": "frontend_application_lib_store_uistore_useuistore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68609,9 +68787,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_maintenancepage_maintenancepage" + "target": "frontend_application_components_maintenancepage_maintenancepage", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68621,9 +68799,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_lib_types_navigationtarget" + "target": "frontend_application_lib_types_navigationtarget", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68633,9 +68811,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_header_header" + "target": "frontend_application_components_header_header", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68645,9 +68823,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_footer_footer" + "target": "frontend_application_components_footer_footer", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68657,9 +68835,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_networkbanner_networkbanner" + "target": "frontend_application_components_networkbanner_networkbanner", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68669,9 +68847,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_contact_page", - "target": "frontend_application_components_contactformclient_contactformclient" + "target": "frontend_application_components_contactformclient_contactformclient", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68681,9 +68859,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_dashboard_page", - "target": "frontend_application_components_userdashboard_userdashboard" + "target": "frontend_application_components_userdashboard_userdashboard", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68693,9 +68871,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_error", - "target": "frontend_application_components_errorpages_servererrorpage" + "target": "frontend_application_components_errorpages_servererrorpage", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68705,9 +68883,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_lib_utils_topersian" + "target": "frontend_application_lib_utils_topersian", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68717,9 +68895,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + "target": "frontend_application_lib_store_settingsstore_usesettingsstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68729,9 +68907,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_lib_services_api_api" + "target": "frontend_application_lib_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68741,9 +68919,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_lib_types_banner" + "target": "frontend_application_lib_types_banner", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68753,9 +68931,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_lib_types_homeapiresponse" + "target": "frontend_application_lib_types_homeapiresponse", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68765,9 +68943,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_lib_types_smartadvisorrule" + "target": "frontend_application_lib_types_smartadvisorrule", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68777,9 +68955,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_lib_types_testimonial" + "target": "frontend_application_lib_types_testimonial", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68789,9 +68967,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_components_hero_hero" + "target": "frontend_application_components_hero_hero", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68801,9 +68979,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_components_smartadvisor_smartadvisor" + "target": "frontend_application_components_smartadvisor_smartadvisor", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68813,9 +68991,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_components_featuredproducts_featuredproducts" + "target": "frontend_application_components_featuredproducts_featuredproducts", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68825,9 +69003,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_components_vetgallery_vetgallery" + "target": "frontend_application_components_vetgallery_vetgallery", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68837,9 +69015,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_components_testimonialssection_testimonialssection" + "target": "frontend_application_components_testimonialssection_testimonialssection", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68849,9 +69027,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_components_bannerplacement_bannerplacement" + "target": "frontend_application_components_bannerplacement_bannerplacement", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68861,9 +69039,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_layout", - "target": "frontend_application_app_clientlayout_clientlayout" + "target": "frontend_application_app_clientlayout_clientlayout", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68873,9 +69051,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_loading", - "target": "frontend_application_components_skeleton_skeleton" + "target": "frontend_application_components_skeleton_skeleton", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68885,9 +69063,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_not_found", - "target": "frontend_application_components_errorpages_notfoundpage" + "target": "frontend_application_components_errorpages_notfoundpage", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68897,9 +69075,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_page", - "target": "frontend_application_app_homeclient_homeclient" + "target": "frontend_application_app_homeclient_homeclient", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68909,9 +69087,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_page", - "target": "frontend_application_lib_types_homeapiresponse" + "target": "frontend_application_lib_types_homeapiresponse", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68921,9 +69099,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_payment_verify_page", - "target": "frontend_application_lib_utils_cn" + "target": "frontend_application_lib_utils_cn", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68933,9 +69111,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_payment_verify_page", - "target": "frontend_application_lib_utils_topersian" + "target": "frontend_application_lib_utils_topersian", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68945,9 +69123,9 @@ "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" + "target": "frontend_application_lib_store_cartstore_usecartstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68957,9 +69135,9 @@ "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" + "target": "frontend_application_lib_store_userstore_useuserstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68969,9 +69147,9 @@ "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" + "target": "frontend_application_lib_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68981,9 +69159,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_profile_page", - "target": "frontend_application_components_petprofile_petprofile" + "target": "frontend_application_components_petprofile_petprofile", + "confidence_score": 1.0 }, { "relation": "imports", @@ -68993,9 +69171,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_search_page", - "target": "frontend_application_components_searchresultspage_searchresultspage" + "target": "frontend_application_components_searchresultspage_searchresultspage", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69005,9 +69183,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_shop_page", - "target": "frontend_application_components_archivepage_archivepage" + "target": "frontend_application_components_archivepage_archivepage", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69017,9 +69195,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_shop_slug_page", - "target": "frontend_application_components_productpage_productpage" + "target": "frontend_application_components_productpage_productpage", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69029,9 +69207,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_shop_slug_page", - "target": "frontend_application_lib_services_productservice_productservice" + "target": "frontend_application_lib_services_productservice_productservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69041,9 +69219,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_sitemap", - "target": "frontend_application_lib_services_productservice_productservice" + "target": "frontend_application_lib_services_productservice_productservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69053,9 +69231,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_sitemap", - "target": "frontend_application_lib_data_products_products" + "target": "frontend_application_lib_data_products_products", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69065,9 +69243,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_track_page", - "target": "frontend_application_components_ordertracking_ordertracking" + "target": "frontend_application_components_ordertracking_ordertracking", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69077,9 +69255,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_trust_seals_page", - "target": "frontend_application_components_enamadbadge_enamadbadge" + "target": "frontend_application_components_enamadbadge_enamadbadge", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69089,9 +69267,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_videos_page", - "target": "frontend_application_components_videospage_videospage" + "target": "frontend_application_components_videospage_videospage", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69101,9 +69279,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_wiki_page", - "target": "frontend_application_components_ingredientwiki_ingredientwiki" + "target": "frontend_application_components_ingredientwiki_ingredientwiki", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69113,9 +69291,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_addressmodal", - "target": "frontend_application_lib_utils_cn" + "target": "frontend_application_lib_utils_cn", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69125,9 +69303,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_addressmodal", - "target": "frontend_application_lib_store_userstore_address" + "target": "frontend_application_lib_store_userstore_address", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69137,9 +69315,9 @@ "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" + "target": "frontend_application_lib_data_provinces_iran_provinces", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69149,9 +69327,9 @@ "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" + "target": "frontend_application_lib_data_provinces_province_cities", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69161,9 +69339,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_addressmodal", - "target": "frontend_application_components_searchableselect_searchableselect" + "target": "frontend_application_components_searchableselect_searchableselect", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69173,9 +69351,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_store_cartstore_usecartstore" + "target": "frontend_application_lib_store_cartstore_usecartstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69185,9 +69363,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + "target": "frontend_application_lib_store_settingsstore_usesettingsstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69197,9 +69375,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_utils_topersian" + "target": "frontend_application_lib_utils_topersian", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69209,9 +69387,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_components_safeimage_safeimage" + "target": "frontend_application_components_safeimage_safeimage", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69221,9 +69399,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_components_bannerplacement_bannerplacement" + "target": "frontend_application_components_bannerplacement_bannerplacement", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69233,9 +69411,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_types_banner" + "target": "frontend_application_lib_types_banner", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69245,9 +69423,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_data_products_pettype" + "target": "frontend_application_lib_data_products_pettype", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69257,9 +69435,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_data_products_product" + "target": "frontend_application_lib_data_products_product", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69269,9 +69447,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_store_usepetstore_usepetstore" + "target": "frontend_application_lib_store_usepetstore_usepetstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69281,9 +69459,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_services_productservice_productservice" + "target": "frontend_application_lib_services_productservice_productservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69293,9 +69471,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_components_skeleton_productcardskeleton" + "target": "frontend_application_components_skeleton_productcardskeleton", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69305,9 +69483,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_authmodal", - "target": "frontend_application_lib_store_userstore_useuserstore" + "target": "frontend_application_lib_store_userstore_useuserstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69317,9 +69495,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_authmodal", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + "target": "frontend_application_lib_store_settingsstore_usesettingsstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69329,9 +69507,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_authmodal", - "target": "frontend_application_lib_services_authservice_authservice" + "target": "frontend_application_lib_services_authservice_authservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69341,9 +69519,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_authmodal", - "target": "frontend_application_lib_utils_toenglishdigits" + "target": "frontend_application_lib_utils_toenglishdigits", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69353,9 +69531,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_authmodal", - "target": "frontend_application_lib_utils_topersian" + "target": "frontend_application_lib_utils_topersian", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69365,9 +69543,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_b2bportal", - "target": "frontend_application_components_safeimage_safeimage" + "target": "frontend_application_components_safeimage_safeimage", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69377,9 +69555,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_b2bportal", - "target": "frontend_application_lib_utils_topersian" + "target": "frontend_application_lib_utils_topersian", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69389,9 +69567,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_b2bportal", - "target": "frontend_application_lib_data_products_product" + "target": "frontend_application_lib_data_products_product", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69401,9 +69579,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_b2bportal", - "target": "frontend_application_lib_store_cartstore_usecartstore" + "target": "frontend_application_lib_store_cartstore_usecartstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69413,9 +69591,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_b2bportal", - "target": "frontend_application_lib_store_userstore_useuserstore" + "target": "frontend_application_lib_store_userstore_useuserstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69425,9 +69603,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_b2bportal", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + "target": "frontend_application_lib_store_settingsstore_usesettingsstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69437,9 +69615,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_b2bportal", - "target": "frontend_application_lib_services_productservice_productservice" + "target": "frontend_application_lib_services_productservice_productservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69449,9 +69627,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_backbutton", - "target": "frontend_application_lib_utils_cn" + "target": "frontend_application_lib_utils_cn", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69461,9 +69639,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_bannerplacement", - "target": "frontend_application_lib_types_banner" + "target": "frontend_application_lib_types_banner", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69473,9 +69651,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_blogpage", - "target": "frontend_application_lib_data_products_product" + "target": "frontend_application_lib_data_products_product", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69485,9 +69663,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_blogpage", - "target": "frontend_application_lib_services_productservice_productservice" + "target": "frontend_application_lib_services_productservice_productservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69497,9 +69675,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_brandlogo", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + "target": "frontend_application_lib_store_settingsstore_usesettingsstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69509,9 +69687,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_lib_store_userstore_useuserstore" + "target": "frontend_application_lib_store_userstore_useuserstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69521,9 +69699,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_components_authmodal_authmodal" + "target": "frontend_application_components_authmodal_authmodal", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69533,9 +69711,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_lib_utils_topersian" + "target": "frontend_application_lib_utils_topersian", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69545,9 +69723,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_lib_store_cartstore_usecartstore" + "target": "frontend_application_lib_store_cartstore_usecartstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69557,9 +69735,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_lib_data_products_product" + "target": "frontend_application_lib_data_products_product", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69569,9 +69747,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_lib_services_productservice_productservice" + "target": "frontend_application_lib_services_productservice_productservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69581,9 +69759,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_components_safeimage_safeimage" + "target": "frontend_application_components_safeimage_safeimage", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69593,9 +69771,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_catalog_catalogpagespread", - "target": "frontend_application_components_safeimage_safeimage" + "target": "frontend_application_components_safeimage_safeimage", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69605,9 +69783,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_catalog_catalogpagespread", - "target": "frontend_application_lib_data_products_product" + "target": "frontend_application_lib_data_products_product", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69617,9 +69795,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_catalog_flipbookcatalog", - "target": "frontend_application_components_catalog_catalogpagespread_catalogpagespread" + "target": "frontend_application_components_catalog_catalogpagespread_catalogpagespread", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69629,9 +69807,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_catalog_flipbookcatalog", - "target": "frontend_application_components_catalog_catalogpagespread_categorymeta" + "target": "frontend_application_components_catalog_catalogpagespread_categorymeta", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69641,9 +69819,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_catalog_flipbookcatalog", - "target": "frontend_application_lib_data_products_product" + "target": "frontend_application_lib_data_products_product", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69653,9 +69831,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_catalog_productdetailmodal", - "target": "frontend_application_components_safeimage_safeimage" + "target": "frontend_application_components_safeimage_safeimage", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69665,9 +69843,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_catalog_productdetailmodal", - "target": "frontend_application_lib_data_products_product" + "target": "frontend_application_lib_data_products_product", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69677,9 +69855,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_lib_utils_cn" + "target": "frontend_application_lib_utils_cn", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69689,9 +69867,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_lib_utils_topersian" + "target": "frontend_application_lib_utils_topersian", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69701,9 +69879,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_lib_data_products_products" + "target": "frontend_application_lib_data_products_products", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69713,9 +69891,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_lib_store_cartstore_usecartstore" + "target": "frontend_application_lib_store_cartstore_usecartstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69725,9 +69903,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_lib_store_usepetstore_usepetstore" + "target": "frontend_application_lib_store_usepetstore_usepetstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69737,9 +69915,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_lib_store_userstore_useuserstore" + "target": "frontend_application_lib_store_userstore_useuserstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69749,9 +69927,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + "target": "frontend_application_lib_store_settingsstore_usesettingsstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69761,9 +69939,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_components_topupmodal_topupmodal" + "target": "frontend_application_components_topupmodal_topupmodal", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69773,9 +69951,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_components_addressmodal_addressmodal" + "target": "frontend_application_components_addressmodal_addressmodal", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69785,9 +69963,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_components_searchableselect_searchableselect" + "target": "frontend_application_components_searchableselect_searchableselect", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69797,9 +69975,9 @@ "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" + "target": "frontend_application_lib_data_provinces_iran_provinces", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69809,9 +69987,9 @@ "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" + "target": "frontend_application_lib_data_provinces_province_cities", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69821,9 +69999,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_lib_services_api_api" + "target": "frontend_application_lib_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69833,9 +70011,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_contactformclient", - "target": "frontend_application_lib_services_api_api" + "target": "frontend_application_lib_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69845,9 +70023,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_enamadbadge", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + "target": "frontend_application_lib_store_settingsstore_usesettingsstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69857,9 +70035,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + "target": "frontend_application_lib_store_settingsstore_usesettingsstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69869,9 +70047,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_lib_store_cartstore_usecartstore" + "target": "frontend_application_lib_store_cartstore_usecartstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69881,9 +70059,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_lib_data_products_product" + "target": "frontend_application_lib_data_products_product", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69893,9 +70071,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_lib_store_usepetstore_usepetstore" + "target": "frontend_application_lib_store_usepetstore_usepetstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69905,9 +70083,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_lib_services_productservice_productservice" + "target": "frontend_application_lib_services_productservice_productservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69917,9 +70095,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_components_safeimage_safeimage" + "target": "frontend_application_components_safeimage_safeimage", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69929,9 +70107,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_components_skeleton_productcardskeleton" + "target": "frontend_application_components_skeleton_productcardskeleton", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69941,9 +70119,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_footer", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + "target": "frontend_application_lib_store_settingsstore_usesettingsstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69953,9 +70131,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_footer", - "target": "frontend_application_components_brandlogo_brandlogo" + "target": "frontend_application_components_brandlogo_brandlogo", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69965,9 +70143,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_footer", - "target": "frontend_application_lib_types_navigationtarget" + "target": "frontend_application_lib_types_navigationtarget", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69977,9 +70155,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + "target": "frontend_application_lib_store_settingsstore_usesettingsstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -69989,9 +70167,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_components_authmodal_authmodal" + "target": "frontend_application_components_authmodal_authmodal", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70001,9 +70179,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodal" + "target": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodal", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70013,9 +70191,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_components_tickerbanner_tickerbanner" + "target": "frontend_application_components_tickerbanner_tickerbanner", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70025,9 +70203,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_components_brandlogo_brandlogo" + "target": "frontend_application_components_brandlogo_brandlogo", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70037,9 +70215,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_lib_utils_cn" + "target": "frontend_application_lib_utils_cn", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70049,9 +70227,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_lib_services_productservice_productservice" + "target": "frontend_application_lib_services_productservice_productservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70061,9 +70239,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_lib_types_navigationtarget" + "target": "frontend_application_lib_types_navigationtarget", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70073,9 +70251,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_lib_store_cartstore_usecartstore" + "target": "frontend_application_lib_store_cartstore_usecartstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70085,9 +70263,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_lib_store_usepetstore_usepetstore" + "target": "frontend_application_lib_store_usepetstore_usepetstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70097,9 +70275,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_lib_store_userstore_useuserstore" + "target": "frontend_application_lib_store_userstore_useuserstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70109,9 +70287,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_headerbutton", - "target": "frontend_application_lib_utils_cn" + "target": "frontend_application_lib_utils_cn", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70121,9 +70299,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_headerbutton", - "target": "frontend_application_lib_utils_topersian" + "target": "frontend_application_lib_utils_topersian", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70133,9 +70311,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_hero", - "target": "frontend_application_lib_utils_topersian" + "target": "frontend_application_lib_utils_topersian", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70145,9 +70323,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_hero", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + "target": "frontend_application_lib_store_settingsstore_usesettingsstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70157,9 +70335,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_hero", - "target": "frontend_application_lib_types_banner" + "target": "frontend_application_lib_types_banner", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70169,9 +70347,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_ingredientwiki", - "target": "frontend_application_lib_services_api_api" + "target": "frontend_application_lib_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70181,9 +70359,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_ingredientwiki", - "target": "frontend_application_lib_types_ingredient" + "target": "frontend_application_lib_types_ingredient", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70193,9 +70371,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_ingredientwiki", - "target": "frontend_application_lib_data_products_ingredientinfo" + "target": "frontend_application_lib_data_products_ingredientinfo", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70205,9 +70383,9 @@ "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" + "target": "frontend_application_lib_data_products_ingredients_wiki", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70217,9 +70395,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_ingredientwiki", - "target": "frontend_application_lib_data_products_product" + "target": "frontend_application_lib_data_products_product", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70229,9 +70407,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_ingredientwiki", - "target": "frontend_application_lib_data_products_products" + "target": "frontend_application_lib_data_products_products", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70241,9 +70419,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_ingredientwiki", - "target": "frontend_application_lib_services_productservice_productservice" + "target": "frontend_application_lib_services_productservice_productservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70253,9 +70431,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_loginmodal", - "target": "frontend_application_lib_services_authservice_authservice" + "target": "frontend_application_lib_services_authservice_authservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70265,9 +70443,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_loginmodal", - "target": "frontend_application_lib_store_userstore_useuserstore" + "target": "frontend_application_lib_store_userstore_useuserstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70277,9 +70455,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_loginmodal", - "target": "frontend_application_lib_utils_topersian" + "target": "frontend_application_lib_utils_topersian", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70289,9 +70467,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_maintenancepage", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + "target": "frontend_application_lib_store_settingsstore_usesettingsstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70301,9 +70479,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_maintenancepage", - "target": "frontend_application_components_brandlogo_brandlogo" + "target": "frontend_application_components_brandlogo_brandlogo", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70313,9 +70491,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_networkbanner", - "target": "frontend_application_lib_hooks_usenetworkstatus_usenetworkstatus" + "target": "frontend_application_lib_hooks_usenetworkstatus_usenetworkstatus", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70325,9 +70503,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_orderdetailsmodal", - "target": "frontend_application_lib_utils_topersian" + "target": "frontend_application_lib_utils_topersian", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70337,9 +70515,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_orderdetailsmodal", - "target": "frontend_application_lib_services_api_api" + "target": "frontend_application_lib_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70349,9 +70527,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_orderdetailsmodal", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + "target": "frontend_application_lib_store_settingsstore_usesettingsstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70361,9 +70539,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_ordersuccess", - "target": "frontend_application_lib_store_cartstore_usecartstore" + "target": "frontend_application_lib_store_cartstore_usecartstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70373,9 +70551,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_ordersuccess", - "target": "frontend_application_lib_store_usepetstore_usepetstore" + "target": "frontend_application_lib_store_usepetstore_usepetstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70385,9 +70563,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_ordertracking", - "target": "frontend_application_lib_store_cartstore_usecartstore" + "target": "frontend_application_lib_store_cartstore_usecartstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70397,9 +70575,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_store_usepetstore_healthlog" + "target": "frontend_application_lib_store_usepetstore_healthlog", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70409,9 +70587,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_store_usepetstore_petprofile" + "target": "frontend_application_lib_store_usepetstore_petprofile", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70421,9 +70599,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_store_usepetstore_reminder" + "target": "frontend_application_lib_store_usepetstore_reminder", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70433,9 +70611,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_store_usepetstore_usepetstore" + "target": "frontend_application_lib_store_usepetstore_usepetstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70445,9 +70623,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_data_products_product" + "target": "frontend_application_lib_data_products_product", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70457,9 +70635,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_store_cartstore_usecartstore" + "target": "frontend_application_lib_store_cartstore_usecartstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70469,9 +70647,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_components_safeimage_safeimage" + "target": "frontend_application_components_safeimage_safeimage", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70481,9 +70659,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_components_smartadvisor_smartadvisor" + "target": "frontend_application_components_smartadvisor_smartadvisor", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70493,9 +70671,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_components_orderdetailsmodal_orderdetailsmodal" + "target": "frontend_application_components_orderdetailsmodal_orderdetailsmodal", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70505,9 +70683,9 @@ "source_location": "L35", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_utils_cn" + "target": "frontend_application_lib_utils_cn", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70517,9 +70695,9 @@ "source_location": "L35", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_utils_topersian" + "target": "frontend_application_lib_utils_topersian", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70529,9 +70707,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_services_api_api" + "target": "frontend_application_lib_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70541,9 +70719,9 @@ "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" + "target": "frontend_application_lib_services_api_base_domain", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70553,9 +70731,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_services_productservice_productservice" + "target": "frontend_application_lib_services_productservice_productservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70565,9 +70743,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_components_skeleton_petprofileskeleton" + "target": "frontend_application_components_skeleton_petprofileskeleton", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70577,9 +70755,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_prescriptionuploadmodal", - "target": "frontend_application_lib_store_userstore_useuserstore" + "target": "frontend_application_lib_store_userstore_useuserstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70589,9 +70767,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_prescriptionuploadmodal", - "target": "frontend_application_lib_store_usepetstore_usepetstore" + "target": "frontend_application_lib_store_usepetstore_usepetstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70601,9 +70779,9 @@ "source_location": "L42", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_utils_topersian" + "target": "frontend_application_lib_utils_topersian", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70613,9 +70791,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_data_products_product" + "target": "frontend_application_lib_data_products_product", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70625,9 +70803,9 @@ "source_location": "L44", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_services_productservice_productservice" + "target": "frontend_application_lib_services_productservice_productservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70637,9 +70815,9 @@ "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" + "target": "frontend_application_lib_data_scientificterms_scientific_terms", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70649,9 +70827,9 @@ "source_location": "L46", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + "target": "frontend_application_lib_store_settingsstore_usesettingsstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70661,9 +70839,9 @@ "source_location": "L48", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_store_cartstore_usecartstore" + "target": "frontend_application_lib_store_cartstore_usecartstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70673,9 +70851,9 @@ "source_location": "L49", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_store_usepetstore_usepetstore" + "target": "frontend_application_lib_store_usepetstore_usepetstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70685,9 +70863,9 @@ "source_location": "L51", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_services_api_api" + "target": "frontend_application_lib_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70697,9 +70875,9 @@ "source_location": "L52", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_types_dosageconfig" + "target": "frontend_application_lib_types_dosageconfig", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70709,9 +70887,9 @@ "source_location": "L68", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_components_tooltip_tooltip" + "target": "frontend_application_components_tooltip_tooltip", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70721,9 +70899,9 @@ "source_location": "L69", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_components_safeimage_safeimage" + "target": "frontend_application_components_safeimage_safeimage", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70733,9 +70911,9 @@ "source_location": "L70", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_components_productreviews_productreviews" + "target": "frontend_application_components_productreviews_productreviews", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70745,9 +70923,9 @@ "source_location": "L71", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_components_videomodalplayer_videomodalplayer" + "target": "frontend_application_components_videomodalplayer_videomodalplayer", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70757,9 +70935,9 @@ "source_location": "L72", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_components_podcastinlineplayer_podcastinlineplayer" + "target": "frontend_application_components_podcastinlineplayer_podcastinlineplayer", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70769,9 +70947,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productreviews", - "target": "frontend_application_lib_services_api_api" + "target": "frontend_application_lib_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70781,9 +70959,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productreviews", - "target": "frontend_application_lib_utils_topersian" + "target": "frontend_application_lib_utils_topersian", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70793,9 +70971,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_safeimage", - "target": "frontend_application_lib_utils_cn" + "target": "frontend_application_lib_utils_cn", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70805,9 +70983,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_searchableselect", - "target": "frontend_application_lib_utils_cn" + "target": "frontend_application_lib_utils_cn", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70817,9 +70995,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_searchresultspage", - "target": "frontend_application_lib_store_usepetstore_usepetstore" + "target": "frontend_application_lib_store_usepetstore_usepetstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70829,9 +71007,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_searchresultspage", - "target": "frontend_application_lib_data_products_product" + "target": "frontend_application_lib_data_products_product", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70841,9 +71019,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_searchresultspage", - "target": "frontend_application_lib_services_productservice_productservice" + "target": "frontend_application_lib_services_productservice_productservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70853,9 +71031,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_utils_cn" + "target": "frontend_application_lib_utils_cn", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70865,9 +71043,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_data_products_products" + "target": "frontend_application_lib_data_products_products", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70877,9 +71055,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_services_productservice_productservice" + "target": "frontend_application_lib_services_productservice_productservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70889,9 +71067,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_store_userstore_useuserstore" + "target": "frontend_application_lib_store_userstore_useuserstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70901,9 +71079,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_store_uistore_useuistore" + "target": "frontend_application_lib_store_uistore_useuistore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70913,9 +71091,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_store_usepetstore_usepetstore" + "target": "frontend_application_lib_store_usepetstore_usepetstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70925,9 +71103,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_services_api_api" + "target": "frontend_application_lib_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70937,9 +71115,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + "target": "frontend_application_lib_store_settingsstore_usesettingsstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70949,9 +71127,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_testimonialssection", - "target": "frontend_application_components_safeimage_safeimage" + "target": "frontend_application_components_safeimage_safeimage", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70961,9 +71139,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_testimonialssection", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + "target": "frontend_application_lib_store_settingsstore_usesettingsstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70973,9 +71151,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_testimonialssection", - "target": "frontend_application_lib_services_api_api" + "target": "frontend_application_lib_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70985,9 +71163,9 @@ "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" + "target": "frontend_application_lib_services_api_base_domain", + "confidence_score": 1.0 }, { "relation": "imports", @@ -70997,9 +71175,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_tests_cartdrawer_test", - "target": "frontend_application_components_cartdrawer_cartdrawer" + "target": "frontend_application_components_cartdrawer_cartdrawer", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71009,9 +71187,9 @@ "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" + "target": "frontend_application_lib_store_cartstore_usecartstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71021,9 +71199,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_tests_cartdrawer_test", - "target": "frontend_application_lib_services_productservice_productservice" + "target": "frontend_application_lib_services_productservice_productservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71033,9 +71211,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_tests_featuredproducts_test", - "target": "frontend_application_components_featuredproducts_featuredproducts" + "target": "frontend_application_components_featuredproducts_featuredproducts", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71045,9 +71223,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_tests_featuredproducts_test", - "target": "frontend_application_lib_services_productservice_productservice" + "target": "frontend_application_lib_services_productservice_productservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71057,9 +71235,9 @@ "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" + "target": "frontend_application_lib_store_usepetstore_usepetstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71069,9 +71247,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_tests_footer_test", - "target": "frontend_application_components_footer_footer" + "target": "frontend_application_components_footer_footer", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71081,9 +71259,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_tests_header_test", - "target": "frontend_application_components_header_header" + "target": "frontend_application_components_header_header", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71093,9 +71271,9 @@ "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" + "target": "frontend_application_lib_store_cartstore_usecartstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71105,9 +71283,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_tests_header_test", - "target": "frontend_application_lib_store_usepetstore_usepetstore" + "target": "frontend_application_lib_store_usepetstore_usepetstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71117,9 +71295,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_tests_header_test", - "target": "frontend_application_lib_store_userstore_useuserstore" + "target": "frontend_application_lib_store_userstore_useuserstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71129,9 +71307,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_tests_hero_test", - "target": "frontend_application_components_hero_hero" + "target": "frontend_application_components_hero_hero", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71141,9 +71319,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_tests_hero_test", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + "target": "frontend_application_lib_store_settingsstore_usesettingsstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71153,9 +71331,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_tests_tooltip_test", - "target": "frontend_application_components_tooltip_tooltip" + "target": "frontend_application_components_tooltip_tooltip", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71165,9 +71343,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_tests_tooltip_test", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + "target": "frontend_application_lib_store_settingsstore_usesettingsstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71177,9 +71355,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_tickerbanner", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + "target": "frontend_application_lib_store_settingsstore_usesettingsstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71189,9 +71367,9 @@ "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" + "target": "frontend_application_lib_data_scientificterms_scientific_terms", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71201,9 +71379,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_tooltip", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + "target": "frontend_application_lib_store_settingsstore_usesettingsstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71213,9 +71391,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_topupmodal", - "target": "frontend_application_lib_utils_cn" + "target": "frontend_application_lib_utils_cn", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71225,9 +71403,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_topupmodal", - "target": "frontend_application_lib_utils_topersian" + "target": "frontend_application_lib_utils_topersian", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71237,9 +71415,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_topupmodal", - "target": "frontend_application_lib_store_userstore_useuserstore" + "target": "frontend_application_lib_store_userstore_useuserstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71249,9 +71427,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_topupmodal", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + "target": "frontend_application_lib_store_settingsstore_usesettingsstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71261,9 +71439,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_topupmodal", - "target": "frontend_application_lib_services_api_api" + "target": "frontend_application_lib_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71273,9 +71451,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_orderdetailsmodal_orderdetailsmodal" + "target": "frontend_application_components_orderdetailsmodal_orderdetailsmodal", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71285,9 +71463,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_addressmodal_addressmodal" + "target": "frontend_application_components_addressmodal_addressmodal", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71297,9 +71475,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodal" + "target": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodal", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71309,9 +71487,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_topupmodal_topupmodal" + "target": "frontend_application_components_topupmodal_topupmodal", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71321,9 +71499,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_services_ticketservice_ticket" + "target": "frontend_application_lib_services_ticketservice_ticket", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71333,9 +71511,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_services_ticketservice_ticketmessage" + "target": "frontend_application_lib_services_ticketservice_ticketmessage", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71345,9 +71523,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_services_ticketservice_ticketservice" + "target": "frontend_application_lib_services_ticketservice_ticketservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71357,9 +71535,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_store_usepetstore_usepetstore" + "target": "frontend_application_lib_store_usepetstore_usepetstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71369,9 +71547,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_petprofile_petprofile" + "target": "frontend_application_components_petprofile_petprofile", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71381,9 +71559,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_services_api_api" + "target": "frontend_application_lib_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71393,9 +71571,9 @@ "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" + "target": "frontend_application_lib_services_api_base_domain", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71405,9 +71583,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_skeleton_orderrowskeleton" + "target": "frontend_application_components_skeleton_orderrowskeleton", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71417,9 +71595,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_store_userstore_address" + "target": "frontend_application_lib_store_userstore_address", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71429,9 +71607,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_store_userstore_useuserstore" + "target": "frontend_application_lib_store_userstore_useuserstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71441,9 +71619,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_store_cartstore_usecartstore" + "target": "frontend_application_lib_store_cartstore_usecartstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71453,9 +71631,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + "target": "frontend_application_lib_store_settingsstore_usesettingsstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71465,9 +71643,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_utils_cn" + "target": "frontend_application_lib_utils_cn", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71477,9 +71655,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_utils_toenglishdigits" + "target": "frontend_application_lib_utils_toenglishdigits", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71489,9 +71667,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_utils_topersian" + "target": "frontend_application_lib_utils_topersian", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71501,9 +71679,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_vetgallery", - "target": "frontend_application_components_safeimage_safeimage" + "target": "frontend_application_components_safeimage_safeimage", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71513,9 +71691,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_vetgallery", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + "target": "frontend_application_lib_store_settingsstore_usesettingsstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71525,9 +71703,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_vetgallery", - "target": "frontend_application_lib_services_videoservice_video" + "target": "frontend_application_lib_services_videoservice_video", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71537,9 +71715,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_vetgallery", - "target": "frontend_application_lib_services_videoservice_videoservice" + "target": "frontend_application_lib_services_videoservice_videoservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71549,9 +71727,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_vetgallery", - "target": "frontend_application_components_videomodalplayer_videomodalplayer" + "target": "frontend_application_components_videomodalplayer_videomodalplayer", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71561,9 +71739,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_videospage", - "target": "frontend_application_components_videomodalplayer_videomodalplayer" + "target": "frontend_application_components_videomodalplayer_videomodalplayer", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71573,9 +71751,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_videospage", - "target": "frontend_application_components_safeimage_safeimage" + "target": "frontend_application_components_safeimage_safeimage", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71585,9 +71763,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_videospage", - "target": "frontend_application_lib_services_videoservice_video" + "target": "frontend_application_lib_services_videoservice_video", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71597,9 +71775,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_videospage", - "target": "frontend_application_lib_services_videoservice_videoservice" + "target": "frontend_application_lib_services_videoservice_videoservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71609,9 +71787,9 @@ "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" + "target": "frontend_application_lib_store_userstore_useuserstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71621,9 +71799,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_authservice", - "target": "frontend_application_lib_services_api_api" + "target": "frontend_application_lib_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71633,9 +71811,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_orderservice", - "target": "frontend_application_lib_services_api_api" + "target": "frontend_application_lib_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71645,9 +71823,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice", - "target": "frontend_application_lib_services_api_api" + "target": "frontend_application_lib_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71657,9 +71835,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice", - "target": "frontend_application_lib_data_products_pettype" + "target": "frontend_application_lib_data_products_pettype", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71669,9 +71847,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice", - "target": "frontend_application_lib_data_products_product" + "target": "frontend_application_lib_data_products_product", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71681,9 +71859,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice", - "target": "frontend_application_lib_data_products_products" + "target": "frontend_application_lib_data_products_products", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71693,9 +71871,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice", - "target": "frontend_application_lib_types_banner" + "target": "frontend_application_lib_types_banner", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71705,9 +71883,9 @@ "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" + "target": "frontend_application_lib_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71717,9 +71895,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_videoservice", - "target": "frontend_application_lib_services_api_api" + "target": "frontend_application_lib_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71729,9 +71907,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_cartstore", - "target": "frontend_application_lib_data_products_product" + "target": "frontend_application_lib_data_products_product", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71741,9 +71919,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_cartstore", - "target": "frontend_application_lib_services_orderservice_orderservice" + "target": "frontend_application_lib_services_orderservice_orderservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71753,9 +71931,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_cartstore", - "target": "frontend_application_lib_services_api_api" + "target": "frontend_application_lib_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71765,9 +71943,9 @@ "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" + "target": "frontend_application_lib_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71777,9 +71955,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_tests_cartstore_test", - "target": "frontend_application_lib_store_cartstore_usecartstore" + "target": "frontend_application_lib_store_cartstore_usecartstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71789,9 +71967,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_tests_cartstore_test", - "target": "frontend_application_lib_services_orderservice_orderservice" + "target": "frontend_application_lib_services_orderservice_orderservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71801,9 +71979,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_tests_cartstore_test", - "target": "frontend_application_lib_services_api_api" + "target": "frontend_application_lib_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71813,9 +71991,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_tests_settingsstore_test", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + "target": "frontend_application_lib_store_settingsstore_usesettingsstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71825,9 +72003,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_tests_settingsstore_test", - "target": "frontend_application_lib_services_api_api" + "target": "frontend_application_lib_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71837,9 +72015,9 @@ "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" + "target": "frontend_application_lib_store_userstore_useuserstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71849,9 +72027,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_tests_userstore_test", - "target": "frontend_application_lib_services_authservice_authservice" + "target": "frontend_application_lib_services_authservice_authservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71861,9 +72039,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_tests_userstore_test", - "target": "frontend_application_lib_services_api_api" + "target": "frontend_application_lib_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71873,9 +72051,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_usepetstore", - "target": "frontend_application_lib_services_api_api" + "target": "frontend_application_lib_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71885,9 +72063,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_usepetstore", - "target": "frontend_application_lib_store_userstore_useuserstore" + "target": "frontend_application_lib_store_userstore_useuserstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71897,9 +72075,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_userstore", - "target": "frontend_application_lib_services_authservice_authservice" + "target": "frontend_application_lib_services_authservice_authservice", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71909,9 +72087,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_userstore", - "target": "frontend_application_lib_services_authservice_user" + "target": "frontend_application_lib_services_authservice_user", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71921,9 +72099,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_userstore", - "target": "frontend_application_lib_services_api_api" + "target": "frontend_application_lib_services_api_api", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71933,9 +72111,9 @@ "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" + "target": "frontend_application_lib_store_cartstore_usecartstore", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71945,9 +72123,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package_dependencies_axios", - "target": "frontend_application_package_json_axios" + "target": "frontend_application_package_json_axios", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71957,9 +72135,9 @@ "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" + "target": "frontend_application_package_json_lucide_react", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71969,9 +72147,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package_dependencies_motion", - "target": "motion" + "target": "motion", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71981,9 +72159,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package_dependencies_next", - "target": "next" + "target": "next", + "confidence_score": 1.0 }, { "relation": "imports", @@ -71993,9 +72171,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package_dependencies_react", - "target": "frontend_application_package_json_react" + "target": "frontend_application_package_json_react", + "confidence_score": 1.0 }, { "relation": "imports", @@ -72005,9 +72183,9 @@ "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" + "target": "frontend_application_package_json_react_dom", + "confidence_score": 1.0 }, { "relation": "imports", @@ -72017,9 +72195,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package_dependencies_sonner", - "target": "sonner" + "target": "sonner", + "confidence_score": 1.0 }, { "relation": "imports", @@ -72029,9 +72207,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package_dependencies_zustand", - "target": "frontend_application_package_json_zustand" + "target": "frontend_application_package_json_zustand", + "confidence_score": 1.0 }, { "relation": "imports", @@ -72041,9 +72219,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package_devdependencies_eslint", - "target": "frontend_application_package_json_eslint" + "target": "frontend_application_package_json_eslint", + "confidence_score": 1.0 }, { "relation": "imports", @@ -72053,9 +72231,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package_devdependencies_eslint_config_next", - "target": "eslint_config_next" + "target": "eslint_config_next", + "confidence_score": 1.0 }, { "relation": "imports", @@ -72065,9 +72243,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package_devdependencies_jsdom", - "target": "jsdom" + "target": "jsdom", + "confidence_score": 1.0 }, { "relation": "imports", @@ -72077,9 +72255,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package_devdependencies_tailwindcss", - "target": "frontend_application_package_json_tailwindcss" + "target": "frontend_application_package_json_tailwindcss", + "confidence_score": 1.0 }, { "relation": "imports", @@ -72089,9 +72267,9 @@ "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" + "target": "frontend_application_package_json_tailwindcss_postcss", + "confidence_score": 1.0 }, { "relation": "imports", @@ -72101,9 +72279,9 @@ "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" + "target": "testing_library_jest_dom", + "confidence_score": 1.0 }, { "relation": "imports", @@ -72113,9 +72291,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package_devdependencies_testing_library_react", - "target": "testing_library_react" + "target": "testing_library_react", + "confidence_score": 1.0 }, { "relation": "imports", @@ -72125,9 +72303,9 @@ "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" + "target": "frontend_application_package_json_types_node", + "confidence_score": 1.0 }, { "relation": "imports", @@ -72137,9 +72315,9 @@ "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" + "target": "frontend_application_package_json_types_react", + "confidence_score": 1.0 }, { "relation": "imports", @@ -72149,9 +72327,9 @@ "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" + "target": "frontend_application_package_json_types_react_dom", + "confidence_score": 1.0 }, { "relation": "imports", @@ -72161,9 +72339,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package_devdependencies_typescript", - "target": "frontend_application_package_json_typescript" + "target": "frontend_application_package_json_typescript", + "confidence_score": 1.0 }, { "relation": "imports", @@ -72173,9 +72351,9 @@ "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" + "target": "frontend_application_package_json_vitejs_plugin_react", + "confidence_score": 1.0 }, { "relation": "imports", @@ -72185,9 +72363,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package_devdependencies_vitest", - "target": "vitest" + "target": "vitest", + "confidence_score": 1.0 }, { "relation": "imports", @@ -72197,9 +72375,9 @@ "weight": 1.0, "context": "import", "_origin": "ast", - "confidence_score": 1.0, "source": "package_devdependencies_concurrently", - "target": "concurrently" + "target": "concurrently", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72209,9 +72387,9 @@ "source_location": "L471", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_seed_main", - "target": "backend_prisma_seed_products" + "target": "backend_prisma_seed_products", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72221,9 +72399,9 @@ "source_location": "L482", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_seed_main", - "target": "backend_prisma_seed_home" + "target": "backend_prisma_seed_home", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72233,9 +72411,9 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi", - "target": "backend_src_app_module" + "target": "backend_src_app_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72245,9 +72423,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi", - "target": "backend_src_app_module" + "target": "backend_src_app_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72257,9 +72435,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_controller", - "target": "backend_src_admin_admin_service" + "target": "backend_src_admin_admin_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72269,9 +72447,9 @@ "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" + "target": "backend_src_admin_dto_product_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72281,9 +72459,9 @@ "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" + "target": "backend_src_admin_dto_admin_query_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72293,9 +72471,9 @@ "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" + "target": "backend_src_auth_jwt_auth_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72305,9 +72483,9 @@ "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" + "target": "backend_src_admin_dto_user_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72317,9 +72495,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_spec", - "target": "backend_src_admin_admin_controller" + "target": "backend_src_admin_admin_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72329,9 +72507,9 @@ "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" + "target": "backend_src_admin_admin_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72341,9 +72519,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_blogs_controller" + "target": "backend_src_admin_blogs_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72353,9 +72531,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_blogs_service" + "target": "backend_src_admin_blogs_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72365,9 +72543,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_wiki_controller" + "target": "backend_src_admin_wiki_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72377,9 +72555,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_wiki_service" + "target": "backend_src_admin_wiki_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72389,9 +72567,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_pets_controller" + "target": "backend_src_admin_pets_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72401,9 +72579,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_pets_service" + "target": "backend_src_admin_pets_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72413,9 +72591,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_ssl_controller" + "target": "backend_src_admin_ssl_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72425,9 +72603,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_ssl_service" + "target": "backend_src_admin_ssl_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72437,9 +72615,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_prisma_prisma_module" + "target": "backend_src_prisma_prisma_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72449,9 +72627,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_redis_redis_module" + "target": "backend_src_redis_redis_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72461,9 +72639,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_admin_controller" + "target": "backend_src_admin_admin_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72473,9 +72651,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_admin_service" + "target": "backend_src_admin_admin_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72485,9 +72663,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_reports_controller" + "target": "backend_src_admin_reports_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72497,9 +72675,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_reports_service" + "target": "backend_src_admin_reports_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72509,9 +72687,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_media_controller" + "target": "backend_src_admin_media_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72521,9 +72699,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_media_service" + "target": "backend_src_admin_media_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72533,9 +72711,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_categories_controller" + "target": "backend_src_admin_categories_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72545,9 +72723,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_categories_service" + "target": "backend_src_admin_categories_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72557,9 +72735,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service", - "target": "backend_src_admin_dto_user_dto" + "target": "backend_src_admin_dto_user_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72569,9 +72747,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service", - "target": "backend_src_admin_dto_product_dto" + "target": "backend_src_admin_dto_product_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72581,9 +72759,9 @@ "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" + "target": "backend_src_common_utils_phone_utils", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72593,9 +72771,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service", - "target": "backend_src_settings_settings_service" + "target": "backend_src_settings_settings_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72605,9 +72783,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service", - "target": "backend_src_prisma_prisma_service" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72617,9 +72795,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service", - "target": "backend_src_redis_redis_service" + "target": "backend_src_redis_redis_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72629,9 +72807,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service_spec", - "target": "backend_src_admin_admin_service" + "target": "backend_src_admin_admin_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72641,9 +72819,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service_spec", - "target": "backend_src_prisma_prisma_service" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72653,9 +72831,9 @@ "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" + "target": "backend_src_redis_redis_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72665,9 +72843,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller", - "target": "backend_src_admin_blogs_service" + "target": "backend_src_admin_blogs_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72677,9 +72855,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller", - "target": "backend_src_auth_jwt_auth_guard" + "target": "backend_src_auth_jwt_auth_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72689,9 +72867,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller", - "target": "backend_src_common_dto_pagination_dto" + "target": "backend_src_common_dto_pagination_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72701,9 +72879,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_blogs_service", - "target": "backend_src_prisma_prisma_service" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72713,9 +72891,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_categories_controller", - "target": "backend_src_admin_categories_service" + "target": "backend_src_admin_categories_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72725,9 +72903,9 @@ "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" + "target": "backend_src_auth_jwt_auth_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72737,9 +72915,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_categories_controller", - "target": "backend_src_common_dto_pagination_dto" + "target": "backend_src_common_dto_pagination_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72749,9 +72927,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_categories_service", - "target": "backend_src_prisma_prisma_service" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72761,9 +72939,9 @@ "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" + "target": "backend_src_common_dto_pagination_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72773,9 +72951,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_media_controller", - "target": "backend_src_admin_media_service" + "target": "backend_src_admin_media_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72785,9 +72963,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_media_controller", - "target": "backend_src_auth_jwt_auth_guard" + "target": "backend_src_auth_jwt_auth_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72797,9 +72975,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_media_service", - "target": "backend_src_prisma_prisma_service" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72809,9 +72987,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_pets_controller", - "target": "backend_src_auth_jwt_auth_guard" + "target": "backend_src_auth_jwt_auth_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72821,9 +72999,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_pets_controller", - "target": "backend_src_common_dto_pagination_dto" + "target": "backend_src_common_dto_pagination_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72833,9 +73011,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_pets_controller", - "target": "backend_src_admin_pets_service" + "target": "backend_src_admin_pets_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72845,9 +73023,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_pets_service", - "target": "backend_src_prisma_prisma_service" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72857,9 +73035,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_reports_controller", - "target": "backend_src_admin_reports_service" + "target": "backend_src_admin_reports_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72869,9 +73047,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_reports_controller", - "target": "backend_src_auth_jwt_auth_guard" + "target": "backend_src_auth_jwt_auth_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72881,9 +73059,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_reports_service", - "target": "backend_src_prisma_prisma_service" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72893,9 +73071,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller", - "target": "backend_src_admin_ssl_service" + "target": "backend_src_admin_ssl_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72905,9 +73083,9 @@ "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" + "target": "backend_src_auth_jwt_auth_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72917,9 +73095,9 @@ "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" + "target": "backend_src_common_guards_roles_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72929,9 +73107,9 @@ "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" + "target": "backend_src_common_decorators_roles_decorator", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72941,9 +73119,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller", - "target": "backend_src_admin_wiki_service" + "target": "backend_src_admin_wiki_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72953,9 +73131,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller", - "target": "backend_src_auth_jwt_auth_guard" + "target": "backend_src_auth_jwt_auth_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72965,9 +73143,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller", - "target": "backend_src_common_dto_pagination_dto" + "target": "backend_src_common_dto_pagination_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72977,9 +73155,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_wiki_service", - "target": "backend_src_prisma_prisma_service" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -72989,9 +73167,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_controller", - "target": "backend_src_app_service" + "target": "backend_src_app_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73001,9 +73179,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_controller_spec", - "target": "backend_src_app_controller" + "target": "backend_src_app_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73013,9 +73191,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_controller_spec", - "target": "backend_src_app_service" + "target": "backend_src_app_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73025,9 +73203,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_settings_settings_module" + "target": "backend_src_settings_settings_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73037,9 +73215,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_common_metrics_controller" + "target": "backend_src_common_metrics_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73049,9 +73227,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_admin_admin_module" + "target": "backend_src_admin_admin_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73061,9 +73239,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_home_home_module" + "target": "backend_src_home_home_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73073,9 +73251,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_blogs_blogs_module" + "target": "backend_src_blogs_blogs_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73085,9 +73263,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_wiki_wiki_module" + "target": "backend_src_wiki_wiki_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73097,9 +73275,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_seo_seo_module" + "target": "backend_src_seo_seo_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73109,9 +73287,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_cms_cms_module" + "target": "backend_src_cms_cms_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73121,9 +73299,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_prisma_prisma_module" + "target": "backend_src_prisma_prisma_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73133,9 +73311,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_wholesale_wholesale_module" + "target": "backend_src_wholesale_wholesale_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73145,9 +73323,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_videos_videos_module" + "target": "backend_src_videos_videos_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73157,9 +73335,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_common_sms_module" + "target": "backend_src_common_sms_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73169,9 +73347,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_contact_contact_module" + "target": "backend_src_contact_contact_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73181,9 +73359,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_banners_banners_module" + "target": "backend_src_banners_banners_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73193,9 +73371,9 @@ "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" + "target": "backend_src_smart_advisor_smart_advisor_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73205,9 +73383,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_testimonials_testimonials_module" + "target": "backend_src_testimonials_testimonials_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73217,9 +73395,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_ingredients_ingredients_module" + "target": "backend_src_ingredients_ingredients_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73229,9 +73407,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_prescriptions_prescriptions_module" + "target": "backend_src_prescriptions_prescriptions_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73241,9 +73419,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_b2b_b2b_module" + "target": "backend_src_b2b_b2b_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73253,9 +73431,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_products_products_module" + "target": "backend_src_products_products_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73265,9 +73443,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_payment_payment_module" + "target": "backend_src_payment_payment_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73277,9 +73455,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_tickets_tickets_module" + "target": "backend_src_tickets_tickets_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73289,9 +73467,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_reviews_reviews_module" + "target": "backend_src_reviews_reviews_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73301,9 +73479,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_doctors_doctors_module" + "target": "backend_src_doctors_doctors_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73313,9 +73491,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_users_users_module" + "target": "backend_src_users_users_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73325,9 +73503,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_redis_redis_module" + "target": "backend_src_redis_redis_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73337,9 +73515,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_redis_redis_service" + "target": "backend_src_redis_redis_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73349,9 +73527,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_auth_auth_module" + "target": "backend_src_auth_auth_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73361,9 +73539,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_pets_pets_module" + "target": "backend_src_pets_pets_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73373,9 +73551,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_orders_orders_module" + "target": "backend_src_orders_orders_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73385,9 +73563,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_dto_admin_login_dto" + "target": "backend_src_auth_dto_admin_login_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73397,9 +73575,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_auth_service" + "target": "backend_src_auth_auth_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73409,9 +73587,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_dto_send_otp_dto" + "target": "backend_src_auth_dto_send_otp_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73421,9 +73599,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_dto_verify_otp_dto" + "target": "backend_src_auth_dto_verify_otp_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73433,9 +73611,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_dto_register_dto" + "target": "backend_src_auth_dto_register_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73445,9 +73623,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_dto_login_dto" + "target": "backend_src_auth_dto_login_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73457,9 +73635,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_jwt_auth_guard" + "target": "backend_src_auth_jwt_auth_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73469,9 +73647,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_spec", - "target": "backend_src_auth_auth_controller" + "target": "backend_src_auth_auth_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73481,9 +73659,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_spec", - "target": "backend_src_auth_auth_service" + "target": "backend_src_auth_auth_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73493,9 +73671,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_module", - "target": "backend_src_auth_auth_service" + "target": "backend_src_auth_auth_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73505,9 +73683,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_module", - "target": "backend_src_auth_auth_controller" + "target": "backend_src_auth_auth_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73517,9 +73695,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_module", - "target": "backend_src_auth_jwt_strategy" + "target": "backend_src_auth_jwt_strategy", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73529,9 +73707,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_module", - "target": "backend_src_users_users_module" + "target": "backend_src_users_users_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73541,9 +73719,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_module", - "target": "backend_src_auth_auth_constants" + "target": "backend_src_auth_auth_constants", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73553,9 +73731,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_service", - "target": "backend_src_common_utils_phone_utils" + "target": "backend_src_common_utils_phone_utils", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73565,9 +73743,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_service", - "target": "backend_src_prisma_prisma_service" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73577,9 +73755,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_service", - "target": "backend_src_redis_redis_service" + "target": "backend_src_redis_redis_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73589,9 +73767,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_service", - "target": "backend_src_auth_dto_send_otp_dto" + "target": "backend_src_auth_dto_send_otp_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73601,9 +73779,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_service", - "target": "backend_src_auth_dto_verify_otp_dto" + "target": "backend_src_auth_dto_verify_otp_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73613,9 +73791,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_service", - "target": "backend_src_common_services_sms_service" + "target": "backend_src_common_services_sms_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73625,9 +73803,9 @@ "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" + "target": "backend_src_auth_auth_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73637,9 +73815,9 @@ "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" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73649,9 +73827,9 @@ "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" + "target": "backend_src_redis_redis_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73661,9 +73839,9 @@ "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" + "target": "backend_src_common_services_sms_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73673,9 +73851,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_jwt_strategy", - "target": "backend_src_users_users_service" + "target": "backend_src_users_users_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73685,9 +73863,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_jwt_strategy", - "target": "backend_src_auth_auth_constants" + "target": "backend_src_auth_auth_constants", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73697,9 +73875,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller", - "target": "backend_src_b2b_b2b_service" + "target": "backend_src_b2b_b2b_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73709,9 +73887,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller", - "target": "backend_src_auth_jwt_auth_guard" + "target": "backend_src_auth_jwt_auth_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73721,9 +73899,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller", - "target": "backend_src_auth_roles_guard" + "target": "backend_src_auth_roles_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73733,9 +73911,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller", - "target": "backend_src_auth_roles_decorator" + "target": "backend_src_auth_roles_decorator", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73745,9 +73923,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_b2b_b2b_module", - "target": "backend_src_b2b_b2b_controller" + "target": "backend_src_b2b_b2b_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73757,9 +73935,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_b2b_b2b_module", - "target": "backend_src_b2b_b2b_service" + "target": "backend_src_b2b_b2b_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73769,9 +73947,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_b2b_b2b_module", - "target": "backend_src_prisma_prisma_module" + "target": "backend_src_prisma_prisma_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73781,9 +73959,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_b2b_b2b_service", - "target": "backend_src_prisma_prisma_service" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73793,9 +73971,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_banners_banners_controller", - "target": "backend_src_banners_banners_service" + "target": "backend_src_banners_banners_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73805,9 +73983,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_banners_banners_controller", - "target": "backend_src_auth_jwt_auth_guard" + "target": "backend_src_auth_jwt_auth_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73817,9 +73995,9 @@ "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" + "target": "backend_src_common_guards_roles_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73829,9 +74007,9 @@ "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" + "target": "backend_src_common_decorators_roles_decorator", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73841,9 +74019,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_banners_banners_module", - "target": "backend_src_banners_banners_controller" + "target": "backend_src_banners_banners_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73853,9 +74031,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_banners_banners_module", - "target": "backend_src_banners_banners_service" + "target": "backend_src_banners_banners_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73865,9 +74043,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_banners_banners_module", - "target": "backend_src_prisma_prisma_module" + "target": "backend_src_prisma_prisma_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73877,9 +74055,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_banners_banners_service", - "target": "backend_src_prisma_prisma_service" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73889,9 +74067,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_blogs_blogs_controller", - "target": "backend_src_common_dto_pagination_dto" + "target": "backend_src_common_dto_pagination_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73901,9 +74079,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_blogs_blogs_controller", - "target": "backend_src_blogs_blogs_service" + "target": "backend_src_blogs_blogs_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73913,9 +74091,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_blogs_blogs_module", - "target": "backend_src_blogs_blogs_service" + "target": "backend_src_blogs_blogs_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73925,9 +74103,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_blogs_blogs_module", - "target": "backend_src_blogs_blogs_controller" + "target": "backend_src_blogs_blogs_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73937,9 +74115,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_blogs_blogs_service", - "target": "backend_src_prisma_prisma_service" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73949,9 +74127,9 @@ "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" + "target": "backend_src_common_dto_pagination_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73961,9 +74139,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_blogs_dto_update_blog_dto", - "target": "backend_src_blogs_dto_create_blog_dto" + "target": "backend_src_blogs_dto_create_blog_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73973,9 +74151,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_cms_cms_controller", - "target": "backend_src_cms_cms_service" + "target": "backend_src_cms_cms_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73985,9 +74163,9 @@ "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" + "target": "backend_src_cms_dto_cms_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -73997,9 +74175,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_cms_cms_controller", - "target": "backend_src_auth_jwt_auth_guard" + "target": "backend_src_auth_jwt_auth_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74009,9 +74187,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_cms_cms_controller", - "target": "backend_src_auth_roles_guard" + "target": "backend_src_auth_roles_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74021,9 +74199,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_cms_cms_controller", - "target": "backend_src_auth_roles_decorator" + "target": "backend_src_auth_roles_decorator", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74033,9 +74211,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_cms_cms_module", - "target": "backend_src_cms_cms_controller" + "target": "backend_src_cms_cms_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74045,9 +74223,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_cms_cms_module", - "target": "backend_src_cms_cms_service" + "target": "backend_src_cms_cms_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74057,9 +74235,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_cms_cms_module", - "target": "backend_src_prisma_prisma_module" + "target": "backend_src_prisma_prisma_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74069,9 +74247,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_cms_cms_service", - "target": "backend_src_prisma_prisma_service" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74081,9 +74259,9 @@ "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" + "target": "backend_src_cms_dto_cms_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74093,9 +74271,9 @@ "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" + "target": "backend_src_common_schemas_error_response_schema", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74105,9 +74283,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_guards_roles_guard", - "target": "backend_src_common_decorators_roles_decorator" + "target": "backend_src_common_decorators_roles_decorator", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74117,9 +74295,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_guards_roles_guard_spec", - "target": "backend_src_common_guards_roles_guard" + "target": "backend_src_common_guards_roles_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74129,9 +74307,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_guards_roles_guard_spec", - "target": "backend_src_common_decorators_roles_decorator" + "target": "backend_src_common_decorators_roles_decorator", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74141,9 +74319,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_interceptors_decimal_interceptor_spec", - "target": "backend_src_common_interceptors_decimal_interceptor" + "target": "backend_src_common_interceptors_decimal_interceptor", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74153,9 +74331,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_metrics_controller", - "target": "backend_src_prisma_prisma_service" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74165,9 +74343,9 @@ "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" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74177,9 +74355,9 @@ "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" + "target": "backend_src_common_services_sms_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74189,9 +74367,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_contact_contact_controller", - "target": "backend_src_contact_contact_service" + "target": "backend_src_contact_contact_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74201,9 +74379,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_contact_contact_controller", - "target": "backend_src_auth_jwt_auth_guard" + "target": "backend_src_auth_jwt_auth_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74213,9 +74391,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_contact_contact_controller", - "target": "backend_src_auth_roles_guard" + "target": "backend_src_auth_roles_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74225,9 +74403,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_contact_contact_controller", - "target": "backend_src_auth_roles_decorator" + "target": "backend_src_auth_roles_decorator", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74237,9 +74415,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_contact_contact_module", - "target": "backend_src_contact_contact_controller" + "target": "backend_src_contact_contact_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74249,9 +74427,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_contact_contact_module", - "target": "backend_src_contact_contact_service" + "target": "backend_src_contact_contact_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74261,9 +74439,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_contact_contact_module", - "target": "backend_src_common_sms_module" + "target": "backend_src_common_sms_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74273,9 +74451,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_contact_contact_service", - "target": "backend_src_prisma_prisma_service" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74285,9 +74463,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_contact_contact_service", - "target": "backend_src_common_services_sms_service" + "target": "backend_src_common_services_sms_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74297,9 +74475,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_doctors_doctors_controller", - "target": "backend_src_doctors_doctors_service" + "target": "backend_src_doctors_doctors_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74309,9 +74487,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_doctors_doctors_controller", - "target": "backend_src_auth_jwt_auth_guard" + "target": "backend_src_auth_jwt_auth_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74321,9 +74499,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_doctors_doctors_module", - "target": "backend_src_doctors_doctors_service" + "target": "backend_src_doctors_doctors_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74333,9 +74511,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_doctors_doctors_module", - "target": "backend_src_doctors_doctors_controller" + "target": "backend_src_doctors_doctors_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74345,9 +74523,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_doctors_doctors_module", - "target": "backend_src_prisma_prisma_module" + "target": "backend_src_prisma_prisma_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74357,9 +74535,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_doctors_doctors_service", - "target": "backend_src_prisma_prisma_service" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74369,9 +74547,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_home_dto_update_home_dto", - "target": "backend_src_home_dto_create_home_dto" + "target": "backend_src_home_dto_create_home_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74381,9 +74559,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_home_home_controller", - "target": "backend_src_home_home_service" + "target": "backend_src_home_home_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74393,9 +74571,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_home_home_module", - "target": "backend_src_home_home_service" + "target": "backend_src_home_home_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74405,9 +74583,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_home_home_module", - "target": "backend_src_home_home_controller" + "target": "backend_src_home_home_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74417,9 +74595,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_home_home_service", - "target": "backend_src_prisma_prisma_service" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74429,9 +74607,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller", - "target": "backend_src_ingredients_ingredients_service" + "target": "backend_src_ingredients_ingredients_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74441,9 +74619,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller", - "target": "backend_src_auth_jwt_auth_guard" + "target": "backend_src_auth_jwt_auth_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74453,9 +74631,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller", - "target": "backend_src_common_guards_roles_guard" + "target": "backend_src_common_guards_roles_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74465,9 +74643,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller", - "target": "backend_src_common_decorators_roles_decorator" + "target": "backend_src_common_decorators_roles_decorator", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74477,9 +74655,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_module", - "target": "backend_src_ingredients_ingredients_controller" + "target": "backend_src_ingredients_ingredients_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74489,9 +74667,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_module", - "target": "backend_src_ingredients_ingredients_service" + "target": "backend_src_ingredients_ingredients_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74501,9 +74679,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_module", - "target": "backend_src_prisma_prisma_module" + "target": "backend_src_prisma_prisma_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74513,9 +74691,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_service", - "target": "backend_src_prisma_prisma_service" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74525,9 +74703,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_main", - "target": "backend_src_app_module" + "target": "backend_src_app_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74537,9 +74715,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_main", - "target": "backend_src_common_filters_http_exception_filter" + "target": "backend_src_common_filters_http_exception_filter", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74549,9 +74727,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_main", - "target": "backend_src_common_filters_prisma_exception_filter" + "target": "backend_src_common_filters_prisma_exception_filter", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74561,9 +74739,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_main", - "target": "backend_src_common_interceptors_decimal_interceptor" + "target": "backend_src_common_interceptors_decimal_interceptor", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74573,9 +74751,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_controller", - "target": "backend_src_orders_orders_service" + "target": "backend_src_orders_orders_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74585,9 +74763,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_controller", - "target": "backend_src_orders_dto_create_order_dto" + "target": "backend_src_orders_dto_create_order_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74597,9 +74775,9 @@ "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" + "target": "backend_src_auth_jwt_auth_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74609,9 +74787,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_controller", - "target": "backend_src_common_dto_pagination_dto" + "target": "backend_src_common_dto_pagination_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74621,9 +74799,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_spec", - "target": "backend_src_orders_orders_controller" + "target": "backend_src_orders_orders_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74633,9 +74811,9 @@ "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" + "target": "backend_src_orders_orders_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74645,9 +74823,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_module", - "target": "backend_src_orders_orders_service" + "target": "backend_src_orders_orders_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74657,9 +74835,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_module", - "target": "backend_src_orders_orders_controller" + "target": "backend_src_orders_orders_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74669,9 +74847,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_service", - "target": "backend_src_common_services_sms_service" + "target": "backend_src_common_services_sms_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74681,9 +74859,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_service", - "target": "backend_src_prisma_prisma_service" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74693,9 +74871,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_service", - "target": "backend_src_common_dto_pagination_dto" + "target": "backend_src_common_dto_pagination_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74705,9 +74883,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_service", - "target": "backend_src_orders_dto_create_order_dto" + "target": "backend_src_orders_dto_create_order_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74717,9 +74895,9 @@ "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" + "target": "backend_src_orders_orders_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74729,9 +74907,9 @@ "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" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74741,9 +74919,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_service_spec", - "target": "backend_src_common_services_sms_service" + "target": "backend_src_common_services_sms_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74753,9 +74931,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_payment_service" + "target": "backend_src_payment_payment_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74765,9 +74943,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_zibal_service" + "target": "backend_src_payment_zibal_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74777,9 +74955,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_dto_initiate_payment_dto" + "target": "backend_src_payment_dto_initiate_payment_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74789,9 +74967,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_dto_verify_payment_dto" + "target": "backend_src_payment_dto_verify_payment_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74801,9 +74979,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_dto_admin_transaction_filter_dto" + "target": "backend_src_payment_dto_admin_transaction_filter_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74813,9 +74991,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller", - "target": "backend_src_auth_jwt_auth_guard" + "target": "backend_src_auth_jwt_auth_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74825,9 +75003,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller", - "target": "backend_src_common_guards_roles_guard" + "target": "backend_src_common_guards_roles_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74837,9 +75015,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller", - "target": "backend_src_common_decorators_roles_decorator" + "target": "backend_src_common_decorators_roles_decorator", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74849,9 +75027,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_module", - "target": "backend_src_payment_payment_controller" + "target": "backend_src_payment_payment_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74861,9 +75039,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_module", - "target": "backend_src_payment_payment_service" + "target": "backend_src_payment_payment_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74873,9 +75051,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_module", - "target": "backend_src_payment_zibal_service" + "target": "backend_src_payment_zibal_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74885,9 +75063,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_module", - "target": "backend_src_prisma_prisma_module" + "target": "backend_src_prisma_prisma_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74897,9 +75075,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_module", - "target": "backend_src_common_sms_module" + "target": "backend_src_common_sms_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74909,9 +75087,9 @@ "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" + "target": "backend_src_payment_dto_admin_transaction_filter_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74921,9 +75099,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_service", - "target": "backend_src_prisma_prisma_service" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74933,9 +75111,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_service", - "target": "backend_src_payment_zibal_service" + "target": "backend_src_payment_zibal_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74945,9 +75123,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_service", - "target": "backend_src_common_services_sms_service" + "target": "backend_src_common_services_sms_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74957,9 +75135,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_zibal_service", - "target": "backend_src_prisma_prisma_service" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74969,9 +75147,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_zibal_service", - "target": "backend_src_payment_interfaces_payment_gateway_interface" + "target": "backend_src_payment_interfaces_payment_gateway_interface", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74981,9 +75159,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_dto_update_pet_dto", - "target": "backend_src_pets_dto_create_pet_dto" + "target": "backend_src_pets_dto_create_pet_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -74993,9 +75171,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_controller", - "target": "backend_src_pets_pets_service" + "target": "backend_src_pets_pets_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75005,9 +75183,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_controller", - "target": "backend_src_pets_dto_create_pet_dto" + "target": "backend_src_pets_dto_create_pet_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75017,9 +75195,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_controller", - "target": "backend_src_pets_dto_update_pet_dto" + "target": "backend_src_pets_dto_update_pet_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75029,9 +75207,9 @@ "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" + "target": "backend_src_pets_dto_create_reminder_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75041,9 +75219,9 @@ "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" + "target": "backend_src_pets_dto_create_health_log_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75053,9 +75231,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_controller", - "target": "backend_src_auth_jwt_auth_guard" + "target": "backend_src_auth_jwt_auth_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75065,9 +75243,9 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_controller", - "target": "backend_src_common_dto_pagination_dto" + "target": "backend_src_common_dto_pagination_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75077,9 +75255,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_spec", - "target": "backend_src_pets_pets_controller" + "target": "backend_src_pets_pets_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75089,9 +75267,9 @@ "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" + "target": "backend_src_pets_pets_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75101,9 +75279,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_module", - "target": "backend_src_pets_pets_service" + "target": "backend_src_pets_pets_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75113,9 +75291,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_module", - "target": "backend_src_pets_pets_controller" + "target": "backend_src_pets_pets_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75125,9 +75303,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_service", - "target": "backend_src_prisma_prisma_service" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75137,9 +75315,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_service", - "target": "backend_src_common_dto_pagination_dto" + "target": "backend_src_common_dto_pagination_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75149,9 +75327,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_service", - "target": "backend_src_pets_dto_create_pet_dto" + "target": "backend_src_pets_dto_create_pet_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75161,9 +75339,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_service", - "target": "backend_src_pets_dto_update_pet_dto" + "target": "backend_src_pets_dto_update_pet_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75173,9 +75351,9 @@ "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" + "target": "backend_src_pets_pets_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75185,9 +75363,9 @@ "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" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75197,9 +75375,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller", - "target": "backend_src_prescriptions_prescriptions_service" + "target": "backend_src_prescriptions_prescriptions_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75209,9 +75387,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller", - "target": "backend_src_auth_jwt_auth_guard" + "target": "backend_src_auth_jwt_auth_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75221,9 +75399,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller", - "target": "backend_src_common_guards_roles_guard" + "target": "backend_src_common_guards_roles_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75233,9 +75411,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller", - "target": "backend_src_common_decorators_roles_decorator" + "target": "backend_src_common_decorators_roles_decorator", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75245,9 +75423,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_module", - "target": "backend_src_prescriptions_prescriptions_controller" + "target": "backend_src_prescriptions_prescriptions_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75257,9 +75435,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_module", - "target": "backend_src_prescriptions_prescriptions_service" + "target": "backend_src_prescriptions_prescriptions_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75269,9 +75447,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_module", - "target": "backend_src_prisma_prisma_module" + "target": "backend_src_prisma_prisma_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75281,9 +75459,9 @@ "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" + "target": "backend_src_common_services_sms_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75293,9 +75471,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_service", - "target": "backend_src_prisma_prisma_service" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75305,9 +75483,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_service", - "target": "backend_src_common_services_sms_service" + "target": "backend_src_common_services_sms_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75317,9 +75495,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_prisma_prisma_module", - "target": "backend_src_prisma_prisma_service" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75329,9 +75507,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_dto_get_products_dto", - "target": "backend_src_common_dto_pagination_dto" + "target": "backend_src_common_dto_pagination_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75341,9 +75519,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_controller", - "target": "backend_src_products_products_service" + "target": "backend_src_products_products_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75353,9 +75531,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_controller", - "target": "backend_src_products_dto_get_products_dto" + "target": "backend_src_products_dto_get_products_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75365,9 +75543,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_controller", - "target": "backend_src_auth_jwt_auth_guard" + "target": "backend_src_auth_jwt_auth_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75377,9 +75555,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_controller", - "target": "backend_src_common_guards_roles_guard" + "target": "backend_src_common_guards_roles_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75389,9 +75567,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_controller", - "target": "backend_src_common_decorators_roles_decorator" + "target": "backend_src_common_decorators_roles_decorator", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75401,9 +75579,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_controller_spec", - "target": "backend_src_products_products_controller" + "target": "backend_src_products_products_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75413,9 +75591,9 @@ "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" + "target": "backend_src_products_products_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75425,9 +75603,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_module", - "target": "backend_src_products_products_service" + "target": "backend_src_products_products_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75437,9 +75615,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_module", - "target": "backend_src_products_products_controller" + "target": "backend_src_products_products_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75449,9 +75627,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_service", - "target": "backend_src_prisma_prisma_service" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75461,9 +75639,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_service", - "target": "backend_src_products_dto_get_products_dto" + "target": "backend_src_products_dto_get_products_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75473,9 +75651,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_service_spec", - "target": "backend_src_products_products_service" + "target": "backend_src_products_products_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75485,9 +75663,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_service_spec", - "target": "backend_src_prisma_prisma_service" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75497,9 +75675,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_redis_redis_module", - "target": "backend_src_redis_redis_service" + "target": "backend_src_redis_redis_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75509,9 +75687,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_redis_redis_service_spec", - "target": "backend_src_redis_redis_service" + "target": "backend_src_redis_redis_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75521,9 +75699,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller", - "target": "backend_src_reviews_reviews_service" + "target": "backend_src_reviews_reviews_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75533,9 +75711,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller", - "target": "backend_src_reviews_dto_create_review_dto" + "target": "backend_src_reviews_dto_create_review_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75545,9 +75723,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller", - "target": "backend_src_reviews_dto_update_review_dto" + "target": "backend_src_reviews_dto_update_review_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75557,9 +75735,9 @@ "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" + "target": "backend_src_auth_jwt_auth_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75569,9 +75747,9 @@ "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" + "target": "backend_src_common_guards_roles_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75581,9 +75759,9 @@ "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" + "target": "backend_src_common_decorators_roles_decorator", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75593,9 +75771,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_module", - "target": "backend_src_reviews_reviews_service" + "target": "backend_src_reviews_reviews_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75605,9 +75783,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_module", - "target": "backend_src_reviews_reviews_controller" + "target": "backend_src_reviews_reviews_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75617,9 +75795,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_module", - "target": "backend_src_prisma_prisma_module" + "target": "backend_src_prisma_prisma_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75629,9 +75807,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_service", - "target": "backend_src_prisma_prisma_service" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75641,9 +75819,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_service", - "target": "backend_src_reviews_dto_create_review_dto" + "target": "backend_src_reviews_dto_create_review_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75653,9 +75831,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_service", - "target": "backend_src_reviews_dto_update_review_dto" + "target": "backend_src_reviews_dto_update_review_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75665,9 +75843,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_seo_seo_controller", - "target": "backend_src_seo_seo_service" + "target": "backend_src_seo_seo_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75677,9 +75855,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_seo_seo_module", - "target": "backend_src_seo_seo_controller" + "target": "backend_src_seo_seo_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75689,9 +75867,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_seo_seo_module", - "target": "backend_src_seo_seo_service" + "target": "backend_src_seo_seo_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75701,9 +75879,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_seo_seo_module", - "target": "backend_src_prisma_prisma_module" + "target": "backend_src_prisma_prisma_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75713,9 +75891,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_seo_seo_service", - "target": "backend_src_prisma_prisma_service" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75725,9 +75903,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller", - "target": "backend_src_settings_settings_service" + "target": "backend_src_settings_settings_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75737,9 +75915,9 @@ "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" + "target": "backend_src_settings_dto_sms_log_query_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75749,9 +75927,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller", - "target": "backend_src_auth_jwt_auth_guard" + "target": "backend_src_auth_jwt_auth_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75761,9 +75939,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller", - "target": "backend_src_common_guards_roles_guard" + "target": "backend_src_common_guards_roles_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75773,9 +75951,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller", - "target": "backend_src_common_decorators_roles_decorator" + "target": "backend_src_common_decorators_roles_decorator", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75785,9 +75963,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_spec", - "target": "backend_src_settings_settings_controller" + "target": "backend_src_settings_settings_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75797,9 +75975,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_spec", - "target": "backend_src_settings_settings_service" + "target": "backend_src_settings_settings_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75809,9 +75987,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_spec", - "target": "backend_src_auth_jwt_auth_guard" + "target": "backend_src_auth_jwt_auth_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75821,9 +75999,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_spec", - "target": "backend_src_common_guards_roles_guard" + "target": "backend_src_common_guards_roles_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75833,9 +76011,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_spec", - "target": "backend_src_common_decorators_roles_decorator" + "target": "backend_src_common_decorators_roles_decorator", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75845,9 +76023,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_module", - "target": "backend_src_settings_settings_service" + "target": "backend_src_settings_settings_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75857,9 +76035,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_module", - "target": "backend_src_settings_settings_controller" + "target": "backend_src_settings_settings_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75869,9 +76047,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_module", - "target": "backend_src_prisma_prisma_module" + "target": "backend_src_prisma_prisma_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75881,9 +76059,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service", - "target": "backend_src_prisma_prisma_service" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75893,9 +76071,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service", - "target": "backend_src_common_services_sms_service" + "target": "backend_src_common_services_sms_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75905,9 +76083,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service", - "target": "backend_src_settings_default_ui_texts" + "target": "backend_src_settings_default_ui_texts", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75917,9 +76095,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service_spec", - "target": "backend_src_settings_settings_service" + "target": "backend_src_settings_settings_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75929,9 +76107,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service_spec", - "target": "backend_src_prisma_prisma_service" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75941,9 +76119,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller", - "target": "backend_src_smart_advisor_smart_advisor_service" + "target": "backend_src_smart_advisor_smart_advisor_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75953,9 +76131,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller", - "target": "backend_src_auth_jwt_auth_guard" + "target": "backend_src_auth_jwt_auth_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75965,9 +76143,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller", - "target": "backend_src_common_guards_roles_guard" + "target": "backend_src_common_guards_roles_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75977,9 +76155,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller", - "target": "backend_src_common_decorators_roles_decorator" + "target": "backend_src_common_decorators_roles_decorator", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -75989,9 +76167,9 @@ "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" + "target": "backend_src_smart_advisor_smart_advisor_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76001,9 +76179,9 @@ "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" + "target": "backend_src_smart_advisor_smart_advisor_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76013,9 +76191,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_module", - "target": "backend_src_prisma_prisma_module" + "target": "backend_src_prisma_prisma_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76025,9 +76203,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_service", - "target": "backend_src_prisma_prisma_service" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76037,9 +76215,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller", - "target": "backend_src_testimonials_testimonials_service" + "target": "backend_src_testimonials_testimonials_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76049,9 +76227,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller", - "target": "backend_src_auth_jwt_auth_guard" + "target": "backend_src_auth_jwt_auth_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76061,9 +76239,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller", - "target": "backend_src_common_guards_roles_guard" + "target": "backend_src_common_guards_roles_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76073,9 +76251,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller", - "target": "backend_src_common_decorators_roles_decorator" + "target": "backend_src_common_decorators_roles_decorator", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76085,9 +76263,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_module", - "target": "backend_src_testimonials_testimonials_controller" + "target": "backend_src_testimonials_testimonials_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76097,9 +76275,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_module", - "target": "backend_src_testimonials_testimonials_service" + "target": "backend_src_testimonials_testimonials_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76109,9 +76287,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_module", - "target": "backend_src_prisma_prisma_module" + "target": "backend_src_prisma_prisma_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76121,9 +76299,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_service", - "target": "backend_src_prisma_prisma_service" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76133,9 +76311,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_tickets_tickets_service" + "target": "backend_src_tickets_tickets_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76145,9 +76323,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_tickets_dto_create_ticket_dto" + "target": "backend_src_tickets_dto_create_ticket_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76157,9 +76335,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_tickets_dto_ticket_query_dto" + "target": "backend_src_tickets_dto_ticket_query_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76169,9 +76347,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_auth_jwt_auth_guard" + "target": "backend_src_auth_jwt_auth_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76181,9 +76359,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_common_guards_roles_guard" + "target": "backend_src_common_guards_roles_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76193,9 +76371,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_common_decorators_roles_decorator" + "target": "backend_src_common_decorators_roles_decorator", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76205,9 +76383,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_module", - "target": "backend_src_tickets_tickets_service" + "target": "backend_src_tickets_tickets_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76217,9 +76395,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_module", - "target": "backend_src_tickets_tickets_controller" + "target": "backend_src_tickets_tickets_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76229,9 +76407,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_module", - "target": "backend_src_prisma_prisma_module" + "target": "backend_src_prisma_prisma_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76241,9 +76419,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service", - "target": "backend_src_tickets_dto_ticket_query_dto" + "target": "backend_src_tickets_dto_ticket_query_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76253,9 +76431,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service", - "target": "backend_src_prisma_prisma_service" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76265,9 +76443,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service", - "target": "backend_src_tickets_dto_create_ticket_dto" + "target": "backend_src_tickets_dto_create_ticket_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76277,9 +76455,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_controller", - "target": "backend_src_users_users_service" + "target": "backend_src_users_users_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76289,9 +76467,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_controller", - "target": "backend_src_auth_jwt_auth_guard" + "target": "backend_src_auth_jwt_auth_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76301,9 +76479,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_controller", - "target": "backend_src_users_dto_update_profile_dto" + "target": "backend_src_users_dto_update_profile_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76313,9 +76491,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_controller", - "target": "backend_src_users_dto_address_dto" + "target": "backend_src_users_dto_address_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76325,9 +76503,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_controller_spec", - "target": "backend_src_users_users_controller" + "target": "backend_src_users_users_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76337,9 +76515,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_controller_spec", - "target": "backend_src_users_users_service" + "target": "backend_src_users_users_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76349,9 +76527,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_module", - "target": "backend_src_users_users_service" + "target": "backend_src_users_users_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76361,9 +76539,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_module", - "target": "backend_src_users_users_controller" + "target": "backend_src_users_users_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76373,9 +76551,9 @@ "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" + "target": "backend_src_users_dto_update_profile_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76385,9 +76563,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_service", - "target": "backend_src_prisma_prisma_service" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76397,9 +76575,9 @@ "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" + "target": "backend_src_common_utils_phone_utils", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76409,9 +76587,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_service_spec", - "target": "backend_src_users_users_service" + "target": "backend_src_users_users_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76421,9 +76599,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_service_spec", - "target": "backend_src_prisma_prisma_service" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76433,9 +76611,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_videos_dto_get_videos_query_dto", - "target": "backend_src_common_dto_pagination_dto" + "target": "backend_src_common_dto_pagination_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76445,9 +76623,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_videos_videos_controller", - "target": "backend_src_videos_videos_service" + "target": "backend_src_videos_videos_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76457,9 +76635,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_videos_videos_controller", - "target": "backend_src_videos_dto_create_video_dto" + "target": "backend_src_videos_dto_create_video_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76469,9 +76647,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_videos_videos_controller", - "target": "backend_src_videos_dto_get_videos_query_dto" + "target": "backend_src_videos_dto_get_videos_query_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76481,9 +76659,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_videos_videos_controller", - "target": "backend_src_auth_jwt_auth_guard" + "target": "backend_src_auth_jwt_auth_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76493,9 +76671,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_videos_videos_module", - "target": "backend_src_videos_videos_controller" + "target": "backend_src_videos_videos_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76505,9 +76683,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_videos_videos_module", - "target": "backend_src_videos_videos_service" + "target": "backend_src_videos_videos_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76517,9 +76695,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_videos_videos_service", - "target": "backend_src_prisma_prisma_service" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76529,9 +76707,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_videos_videos_service", - "target": "backend_src_videos_dto_create_video_dto" + "target": "backend_src_videos_dto_create_video_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76541,9 +76719,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller", - "target": "backend_src_wholesale_wholesale_service" + "target": "backend_src_wholesale_wholesale_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76553,9 +76731,9 @@ "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" + "target": "backend_src_wholesale_dto_wholesale_apply_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76565,9 +76743,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller", - "target": "backend_src_auth_jwt_auth_guard" + "target": "backend_src_auth_jwt_auth_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76577,9 +76755,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller", - "target": "backend_src_auth_roles_guard" + "target": "backend_src_auth_roles_guard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76589,9 +76767,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller", - "target": "backend_src_auth_roles_decorator" + "target": "backend_src_auth_roles_decorator", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76601,9 +76779,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_module", - "target": "backend_src_wholesale_wholesale_controller" + "target": "backend_src_wholesale_wholesale_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76613,9 +76791,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_module", - "target": "backend_src_wholesale_wholesale_service" + "target": "backend_src_wholesale_wholesale_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76625,9 +76803,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_module", - "target": "backend_src_prisma_prisma_module" + "target": "backend_src_prisma_prisma_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76637,9 +76815,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_service", - "target": "backend_src_prisma_prisma_service" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76649,9 +76827,9 @@ "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" + "target": "backend_src_wholesale_dto_wholesale_apply_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76661,9 +76839,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_service", - "target": "backend_src_common_services_sms_service" + "target": "backend_src_common_services_sms_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76673,9 +76851,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wiki_dto_update_wiki_dto", - "target": "backend_src_wiki_dto_create_wiki_dto" + "target": "backend_src_wiki_dto_create_wiki_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76685,9 +76863,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wiki_wiki_controller", - "target": "backend_src_common_dto_pagination_dto" + "target": "backend_src_common_dto_pagination_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76697,9 +76875,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wiki_wiki_controller", - "target": "backend_src_wiki_wiki_service" + "target": "backend_src_wiki_wiki_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76709,9 +76887,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wiki_wiki_module", - "target": "backend_src_wiki_wiki_service" + "target": "backend_src_wiki_wiki_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76721,9 +76899,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wiki_wiki_module", - "target": "backend_src_wiki_wiki_controller" + "target": "backend_src_wiki_wiki_controller", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76733,9 +76911,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wiki_wiki_service", - "target": "backend_src_prisma_prisma_service" + "target": "backend_src_prisma_prisma_service", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76745,9 +76923,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wiki_wiki_service", - "target": "backend_src_common_dto_pagination_dto" + "target": "backend_src_common_dto_pagination_dto", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76757,9 +76935,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_test_app_audit_verification_e2e_spec", - "target": "backend_src_common_interceptors_decimal_interceptor" + "target": "backend_src_common_interceptors_decimal_interceptor", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76769,9 +76947,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_test_app_audit_verification_e2e_spec", - "target": "backend_src_app_module" + "target": "backend_src_app_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76781,9 +76959,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_test_app_audit_verification_e2e_spec", - "target": "backend_src_common_filters_http_exception_filter" + "target": "backend_src_common_filters_http_exception_filter", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76793,9 +76971,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_test_app_audit_verification_e2e_spec", - "target": "backend_src_common_filters_prisma_exception_filter" + "target": "backend_src_common_filters_prisma_exception_filter", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76805,9 +76983,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_test_app_e2e_spec", - "target": "backend_src_app_module" + "target": "backend_src_app_module", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76817,9 +76995,9 @@ "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" + "target": "frontend_admin_panel_src_routes_adminroutes", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76829,9 +77007,9 @@ "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" + "target": "frontend_admin_panel_src_components_sidebar", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76841,9 +77019,9 @@ "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" + "target": "frontend_admin_panel_src_components_topbar", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76853,9 +77031,9 @@ "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" + "target": "frontend_admin_panel_src_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76865,9 +77043,9 @@ "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" + "target": "frontend_admin_panel_src_store_adminauthstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76877,9 +77055,9 @@ "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" + "target": "frontend_admin_panel_src_types_admin", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76889,9 +77067,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_sidebar", - "target": "frontend_admin_panel_src_services_api" + "target": "frontend_admin_panel_src_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76901,9 +77079,9 @@ "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" + "target": "frontend_admin_panel_src_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76913,9 +77091,9 @@ "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" + "target": "frontend_admin_panel_src_store_adminauthstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76925,9 +77103,9 @@ "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" + "target": "frontend_admin_panel_src_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76937,9 +77115,9 @@ "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" + "target": "frontend_admin_panel_src_components_ui_spinner", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76949,9 +77127,9 @@ "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" + "target": "frontend_admin_panel_src_components_ui_pagination", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76961,9 +77139,9 @@ "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_components_ui_confirmmodal" + "target": "frontend_admin_panel_src_components_ui_confirmmodal", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76973,9 +77151,9 @@ "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" + "target": "frontend_admin_panel_src_components_ui_imagepreviewmodal", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76985,9 +77163,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_main", - "target": "frontend_admin_panel_src_app" + "target": "frontend_admin_panel_src_app", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -76997,9 +77175,9 @@ "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" + "target": "frontend_admin_panel_src_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77009,9 +77187,9 @@ "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" + "target": "frontend_admin_panel_src_components_ui_spinner", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77021,9 +77199,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_b2bmanager", - "target": "frontend_admin_panel_src_types_admin" + "target": "frontend_admin_panel_src_types_admin", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77033,9 +77211,9 @@ "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" + "target": "frontend_admin_panel_src_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77045,9 +77223,9 @@ "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" + "target": "frontend_admin_panel_src_components_ui_spinner", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77057,9 +77235,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_bannersmanager", - "target": "frontend_admin_panel_src_components_ui_confirmmodal" + "target": "frontend_admin_panel_src_components_ui_confirmmodal", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77069,9 +77247,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_bannersmanager", - "target": "frontend_admin_panel_src_components_ui_mediaselector" + "target": "frontend_admin_panel_src_components_ui_mediaselector", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77081,9 +77259,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_bannersmanager", - "target": "frontend_admin_panel_src_types_admin" + "target": "frontend_admin_panel_src_types_admin", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77093,9 +77271,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_services_api" + "target": "frontend_admin_panel_src_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77105,9 +77283,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_components_ui_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77117,9 +77295,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_components_ui_pagination" + "target": "frontend_admin_panel_src_components_ui_pagination", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77129,9 +77307,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_components_ui_mediaselector" + "target": "frontend_admin_panel_src_components_ui_mediaselector", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77141,9 +77319,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_components_ui_confirmmodal" + "target": "frontend_admin_panel_src_components_ui_confirmmodal", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77153,9 +77331,9 @@ "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" + "target": "frontend_admin_panel_src_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77165,9 +77343,9 @@ "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" + "target": "frontend_admin_panel_src_components_ui_spinner", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77177,9 +77355,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_categories", - "target": "frontend_admin_panel_src_components_ui_pagination" + "target": "frontend_admin_panel_src_components_ui_pagination", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77189,9 +77367,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_categories", - "target": "frontend_admin_panel_src_components_ui_mediaselector" + "target": "frontend_admin_panel_src_components_ui_mediaselector", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77201,9 +77379,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_categories", - "target": "frontend_admin_panel_src_components_ui_confirmmodal" + "target": "frontend_admin_panel_src_components_ui_confirmmodal", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77213,9 +77391,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_cms", - "target": "frontend_admin_panel_src_services_api" + "target": "frontend_admin_panel_src_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77225,9 +77403,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_cms", - "target": "frontend_admin_panel_src_components_ui_confirmmodal" + "target": "frontend_admin_panel_src_components_ui_confirmmodal", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77237,9 +77415,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_contactsubmissions", - "target": "frontend_admin_panel_src_services_api" + "target": "frontend_admin_panel_src_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77249,9 +77427,9 @@ "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" + "target": "frontend_admin_panel_src_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77261,9 +77439,9 @@ "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" + "target": "frontend_admin_panel_src_components_ui_spinner", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77273,9 +77451,9 @@ "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" + "target": "frontend_admin_panel_src_components_ui_pagination", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77285,9 +77463,9 @@ "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" + "target": "frontend_admin_panel_src_components_ui_confirmmodal", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77297,9 +77475,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_components_ui_priceinput" + "target": "frontend_admin_panel_src_components_ui_priceinput", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77309,9 +77487,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_dashboard", - "target": "frontend_admin_panel_src_services_api" + "target": "frontend_admin_panel_src_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77321,9 +77499,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_doctorsmanager", - "target": "frontend_admin_panel_src_services_api" + "target": "frontend_admin_panel_src_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77333,9 +77511,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_doctorsmanager", - "target": "frontend_admin_panel_src_components_ui_confirmmodal" + "target": "frontend_admin_panel_src_components_ui_confirmmodal", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77345,9 +77523,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_doctorsmanager", - "target": "frontend_admin_panel_src_components_ui_mediaselector" + "target": "frontend_admin_panel_src_components_ui_mediaselector", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77357,9 +77535,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_doctorsmanager", - "target": "frontend_admin_panel_src_components_ui_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77369,9 +77547,9 @@ "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" + "target": "frontend_admin_panel_src_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77381,9 +77559,9 @@ "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" + "target": "frontend_admin_panel_src_components_ui_spinner", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77393,9 +77571,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_financialsettingspage", - "target": "frontend_admin_panel_src_components_ui_priceinput" + "target": "frontend_admin_panel_src_components_ui_priceinput", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77405,9 +77583,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_financialsettingspage", - "target": "frontend_admin_panel_src_types_admin" + "target": "frontend_admin_panel_src_types_admin", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77417,9 +77595,9 @@ "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" + "target": "frontend_admin_panel_src_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77429,9 +77607,9 @@ "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" + "target": "frontend_admin_panel_src_components_ui_spinner", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77441,9 +77619,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_ingredientsmanager", - "target": "frontend_admin_panel_src_components_ui_confirmmodal" + "target": "frontend_admin_panel_src_components_ui_confirmmodal", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77453,9 +77631,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_ingredientsmanager", - "target": "frontend_admin_panel_src_components_ui_mediaselector" + "target": "frontend_admin_panel_src_components_ui_mediaselector", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77465,9 +77643,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_ingredientsmanager", - "target": "frontend_admin_panel_src_types_admin" + "target": "frontend_admin_panel_src_types_admin", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77477,9 +77655,9 @@ "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" + "target": "frontend_admin_panel_src_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77489,9 +77667,9 @@ "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" + "target": "frontend_admin_panel_src_store_adminauthstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77501,9 +77679,9 @@ "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" + "target": "frontend_admin_panel_src_types_admin", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77513,9 +77691,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_services_api" + "target": "frontend_admin_panel_src_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77525,9 +77703,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_components_ui_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77537,9 +77715,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_components_ui_pagination" + "target": "frontend_admin_panel_src_components_ui_pagination", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77549,9 +77727,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_components_ui_confirmmodal" + "target": "frontend_admin_panel_src_components_ui_confirmmodal", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77561,9 +77739,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_components_ui_imagepreviewmodal" + "target": "frontend_admin_panel_src_components_ui_imagepreviewmodal", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77621,9 +77799,9 @@ "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" + "target": "frontend_admin_panel_src_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77633,9 +77811,9 @@ "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" + "target": "frontend_admin_panel_src_components_ui_spinner", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77645,9 +77823,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_pets", - "target": "frontend_admin_panel_src_components_ui_pagination" + "target": "frontend_admin_panel_src_components_ui_pagination", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77657,9 +77835,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_pets", - "target": "frontend_admin_panel_src_components_ui_confirmmodal" + "target": "frontend_admin_panel_src_components_ui_confirmmodal", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77669,9 +77847,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_prescriptionsmanager", - "target": "frontend_admin_panel_src_services_api" + "target": "frontend_admin_panel_src_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77681,9 +77859,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_prescriptionsmanager", - "target": "frontend_admin_panel_src_components_ui_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77693,9 +77871,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_prescriptionsmanager", - "target": "frontend_admin_panel_src_components_ui_imagepreviewmodal" + "target": "frontend_admin_panel_src_components_ui_imagepreviewmodal", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77705,9 +77883,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_prescriptionsmanager", - "target": "frontend_admin_panel_src_components_ui_badge" + "target": "frontend_admin_panel_src_components_ui_badge", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77717,9 +77895,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_prescriptionsmanager", - "target": "frontend_admin_panel_src_types_admin" + "target": "frontend_admin_panel_src_types_admin", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77729,9 +77907,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_products", - "target": "frontend_admin_panel_src_components_ui_priceinput" + "target": "frontend_admin_panel_src_components_ui_priceinput", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77741,9 +77919,9 @@ "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" + "target": "frontend_admin_panel_src_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77753,9 +77931,9 @@ "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" + "target": "frontend_admin_panel_src_components_ui_spinner", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77765,9 +77943,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_products", - "target": "frontend_admin_panel_src_components_ui_pagination" + "target": "frontend_admin_panel_src_components_ui_pagination", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77777,9 +77955,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_products", - "target": "frontend_admin_panel_src_components_ui_mediaselector" + "target": "frontend_admin_panel_src_components_ui_mediaselector", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77789,9 +77967,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_products", - "target": "frontend_admin_panel_src_components_ui_confirmmodal" + "target": "frontend_admin_panel_src_components_ui_confirmmodal", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77801,9 +77979,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_reports", - "target": "frontend_admin_panel_src_services_api" + "target": "frontend_admin_panel_src_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77813,9 +77991,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_reports", - "target": "frontend_admin_panel_src_components_ui_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77825,9 +78003,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_reviews", - "target": "frontend_admin_panel_src_services_api" + "target": "frontend_admin_panel_src_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77837,9 +78015,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_reviews", - "target": "frontend_admin_panel_src_components_ui_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77849,9 +78027,9 @@ "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" + "target": "frontend_admin_panel_src_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77861,9 +78039,9 @@ "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" + "target": "frontend_admin_panel_src_components_ui_spinner", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77873,9 +78051,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_seosettingspage", - "target": "frontend_admin_panel_src_components_ui_mediaselector" + "target": "frontend_admin_panel_src_components_ui_mediaselector", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77885,9 +78063,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_seosettingspage", - "target": "frontend_admin_panel_src_types_admin" + "target": "frontend_admin_panel_src_types_admin", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77897,9 +78075,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_settings", - "target": "frontend_admin_panel_src_services_api" + "target": "frontend_admin_panel_src_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77909,9 +78087,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_settings", - "target": "frontend_admin_panel_src_components_ui_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77921,9 +78099,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_settings", - "target": "frontend_admin_panel_src_components_ui_priceinput" + "target": "frontend_admin_panel_src_components_ui_priceinput", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77933,9 +78111,9 @@ "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" + "target": "frontend_admin_panel_src_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77945,9 +78123,9 @@ "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" + "target": "frontend_admin_panel_src_components_ui_spinner", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77957,9 +78135,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_smartadvisormanager", - "target": "frontend_admin_panel_src_components_ui_confirmmodal" + "target": "frontend_admin_panel_src_components_ui_confirmmodal", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77969,21 +78147,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_smartadvisormanager", - "target": "frontend_admin_panel_src_types_admin" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.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_services_api" + "target": "frontend_admin_panel_src_types_admin", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -77993,9 +78159,21 @@ "source_location": "L40", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_smssettingspage", - "target": "frontend_admin_panel_src_components_ui_spinner" + "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", @@ -78005,9 +78183,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_sslsettingspage", - "target": "frontend_admin_panel_src_services_api" + "target": "frontend_admin_panel_src_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78017,9 +78195,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_sslsettingspage", - "target": "frontend_admin_panel_src_components_ui_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78029,9 +78207,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_systemsettingspage", - "target": "frontend_admin_panel_src_services_api" + "target": "frontend_admin_panel_src_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78041,9 +78219,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_systemsettingspage", - "target": "frontend_admin_panel_src_components_ui_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78053,9 +78231,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_systemsettingspage", - "target": "frontend_admin_panel_src_types_admin" + "target": "frontend_admin_panel_src_types_admin", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78065,9 +78243,9 @@ "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" + "target": "frontend_admin_panel_src_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78077,9 +78255,9 @@ "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" + "target": "frontend_admin_panel_src_components_ui_spinner", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78089,9 +78267,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_testimonialsmanager", - "target": "frontend_admin_panel_src_components_ui_confirmmodal" + "target": "frontend_admin_panel_src_components_ui_confirmmodal", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78101,9 +78279,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_testimonialsmanager", - "target": "frontend_admin_panel_src_components_ui_mediaselector" + "target": "frontend_admin_panel_src_components_ui_mediaselector", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78113,9 +78291,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_testimonialsmanager", - "target": "frontend_admin_panel_src_types_admin" + "target": "frontend_admin_panel_src_types_admin", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78125,9 +78303,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_tickets", - "target": "frontend_admin_panel_src_services_api" + "target": "frontend_admin_panel_src_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78137,9 +78315,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_services_api" + "target": "frontend_admin_panel_src_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78149,9 +78327,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_components_ui_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78161,9 +78339,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_components_ui_pagination" + "target": "frontend_admin_panel_src_components_ui_pagination", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78173,9 +78351,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_services_api" + "target": "frontend_admin_panel_src_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78185,9 +78363,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_components_ui_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78197,9 +78375,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_components_ui_toggleswitch" + "target": "frontend_admin_panel_src_components_ui_toggleswitch", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78209,9 +78387,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_components_ui_imagepreviewmodal" + "target": "frontend_admin_panel_src_components_ui_imagepreviewmodal", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78221,9 +78399,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_services_api" + "target": "frontend_admin_panel_src_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78233,9 +78411,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_components_ui_skeleton" + "target": "frontend_admin_panel_src_components_ui_skeleton", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78245,9 +78423,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_components_ui_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78257,9 +78435,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_components_ui_pagination" + "target": "frontend_admin_panel_src_components_ui_pagination", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78269,9 +78447,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_types_admin" + "target": "frontend_admin_panel_src_types_admin", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78281,9 +78459,9 @@ "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" + "target": "frontend_admin_panel_src_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78293,9 +78471,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_videos", - "target": "frontend_admin_panel_src_components_ui_confirmmodal" + "target": "frontend_admin_panel_src_components_ui_confirmmodal", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78305,9 +78483,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_videos", - "target": "frontend_admin_panel_src_components_ui_mediaselector" + "target": "frontend_admin_panel_src_components_ui_mediaselector", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78317,9 +78495,9 @@ "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" + "target": "frontend_admin_panel_src_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78329,9 +78507,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_wholesaleapplications", - "target": "frontend_admin_panel_src_components_ui_confirmmodal" + "target": "frontend_admin_panel_src_components_ui_confirmmodal", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78341,9 +78519,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_wiki", - "target": "frontend_admin_panel_src_services_api" + "target": "frontend_admin_panel_src_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78353,9 +78531,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_wiki", - "target": "frontend_admin_panel_src_components_ui_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78365,9 +78543,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_wiki", - "target": "frontend_admin_panel_src_components_ui_pagination" + "target": "frontend_admin_panel_src_components_ui_pagination", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78377,9 +78555,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_wiki", - "target": "frontend_admin_panel_src_components_ui_confirmmodal" + "target": "frontend_admin_panel_src_components_ui_confirmmodal", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78389,9 +78567,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_components_layout" + "target": "frontend_admin_panel_src_components_layout", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78401,9 +78579,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_components_protectedroute" + "target": "frontend_admin_panel_src_components_protectedroute", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78413,9 +78591,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_login" + "target": "frontend_admin_panel_src_pages_login", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78425,9 +78603,9 @@ "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" + "target": "frontend_admin_panel_src_store_adminauthstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78437,9 +78615,9 @@ "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" + "target": "frontend_admin_panel_src_types_admin", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78449,9 +78627,9 @@ "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" + "target": "frontend_admin_panel_src_types_admin", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78461,9 +78639,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_blog_page", - "target": "frontend_application_components_blogpage" + "target": "frontend_application_components_blogpage", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78473,9 +78651,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_catalog_catalogclient", - "target": "frontend_application_components_catalog_flipbookcatalog" + "target": "frontend_application_components_catalog_flipbookcatalog", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78485,9 +78663,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_catalog_catalogclient", - "target": "frontend_application_lib_services_productservice" + "target": "frontend_application_lib_services_productservice", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78497,9 +78675,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_catalog_catalogclient", - "target": "frontend_application_lib_data_products" + "target": "frontend_application_lib_data_products", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78509,9 +78687,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_catalog_page", - "target": "frontend_application_app_catalog_catalogclient" + "target": "frontend_application_app_catalog_catalogclient", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78521,9 +78699,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_checkout_page", - "target": "frontend_application_components_checkoutpage" + "target": "frontend_application_components_checkoutpage", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78533,9 +78711,9 @@ "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" + "target": "frontend_application_components_ordersuccess", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78545,9 +78723,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_cartdrawer" + "target": "frontend_application_components_cartdrawer", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78557,9 +78735,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_loginmodal" + "target": "frontend_application_components_loginmodal", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78569,9 +78747,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_authmodal" + "target": "frontend_application_components_authmodal", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78581,9 +78759,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_b2bportal" + "target": "frontend_application_components_b2bportal", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78593,9 +78771,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_lib_store_userstore" + "target": "frontend_application_lib_store_userstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78605,9 +78783,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_lib_store_settingsstore" + "target": "frontend_application_lib_store_settingsstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78617,9 +78795,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_lib_store_uistore" + "target": "frontend_application_lib_store_uistore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78629,9 +78807,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_maintenancepage" + "target": "frontend_application_components_maintenancepage", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78641,9 +78819,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_lib_types" + "target": "frontend_application_lib_types", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78653,9 +78831,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_header" + "target": "frontend_application_components_header", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78665,9 +78843,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_footer" + "target": "frontend_application_components_footer", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78677,9 +78855,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_networkbanner" + "target": "frontend_application_components_networkbanner", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78689,9 +78867,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_contact_page", - "target": "frontend_application_components_contactformclient" + "target": "frontend_application_components_contactformclient", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78701,9 +78879,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_dashboard_page", - "target": "frontend_application_components_userdashboard" + "target": "frontend_application_components_userdashboard", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78713,9 +78891,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_error", - "target": "frontend_application_components_errorpages" + "target": "frontend_application_components_errorpages", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78725,9 +78903,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_lib_utils" + "target": "frontend_application_lib_utils", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78737,9 +78915,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_lib_store_settingsstore" + "target": "frontend_application_lib_store_settingsstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78749,9 +78927,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_lib_services_api" + "target": "frontend_application_lib_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78761,9 +78939,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_lib_types" + "target": "frontend_application_lib_types", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78773,9 +78951,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_components_hero" + "target": "frontend_application_components_hero", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78785,9 +78963,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_components_smartadvisor" + "target": "frontend_application_components_smartadvisor", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78797,9 +78975,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_components_featuredproducts" + "target": "frontend_application_components_featuredproducts", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78809,9 +78987,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_components_vetgallery" + "target": "frontend_application_components_vetgallery", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78821,9 +78999,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_components_testimonialssection" + "target": "frontend_application_components_testimonialssection", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78833,9 +79011,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_components_bannerplacement" + "target": "frontend_application_components_bannerplacement", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78845,9 +79023,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_layout", - "target": "frontend_application_app_clientlayout" + "target": "frontend_application_app_clientlayout", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78857,9 +79035,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_loading", - "target": "frontend_application_components_skeleton" + "target": "frontend_application_components_skeleton", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78869,9 +79047,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_not_found", - "target": "frontend_application_components_errorpages" + "target": "frontend_application_components_errorpages", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78881,9 +79059,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_page", - "target": "frontend_application_app_homeclient" + "target": "frontend_application_app_homeclient", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78893,9 +79071,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_page", - "target": "frontend_application_lib_types" + "target": "frontend_application_lib_types", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78905,9 +79083,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_payment_verify_page", - "target": "frontend_application_lib_utils" + "target": "frontend_application_lib_utils", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78917,9 +79095,9 @@ "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" + "target": "frontend_application_lib_store_cartstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78929,9 +79107,9 @@ "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" + "target": "frontend_application_lib_store_userstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78941,9 +79119,9 @@ "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" + "target": "frontend_application_lib_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78953,9 +79131,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_profile_page", - "target": "frontend_application_components_petprofile" + "target": "frontend_application_components_petprofile", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78965,9 +79143,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_search_page", - "target": "frontend_application_components_searchresultspage" + "target": "frontend_application_components_searchresultspage", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78977,9 +79155,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_shop_page", - "target": "frontend_application_components_archivepage" + "target": "frontend_application_components_archivepage", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -78989,9 +79167,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_shop_slug_page", - "target": "frontend_application_components_productpage" + "target": "frontend_application_components_productpage", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79001,9 +79179,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_shop_slug_page", - "target": "frontend_application_lib_services_productservice" + "target": "frontend_application_lib_services_productservice", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79013,9 +79191,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_sitemap", - "target": "frontend_application_lib_services_productservice" + "target": "frontend_application_lib_services_productservice", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79025,9 +79203,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_sitemap", - "target": "frontend_application_lib_data_products" + "target": "frontend_application_lib_data_products", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79037,9 +79215,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_track_page", - "target": "frontend_application_components_ordertracking" + "target": "frontend_application_components_ordertracking", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79049,9 +79227,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_trust_seals_page", - "target": "frontend_application_components_enamadbadge" + "target": "frontend_application_components_enamadbadge", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79061,9 +79239,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_videos_page", - "target": "frontend_application_components_videospage" + "target": "frontend_application_components_videospage", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79073,9 +79251,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_wiki_page", - "target": "frontend_application_components_ingredientwiki" + "target": "frontend_application_components_ingredientwiki", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79085,9 +79263,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_addressmodal", - "target": "frontend_application_lib_utils" + "target": "frontend_application_lib_utils", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79097,9 +79275,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_addressmodal", - "target": "frontend_application_lib_store_userstore" + "target": "frontend_application_lib_store_userstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79109,9 +79287,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_addressmodal", - "target": "frontend_application_lib_data_provinces" + "target": "frontend_application_lib_data_provinces", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79121,9 +79299,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_addressmodal", - "target": "frontend_application_components_searchableselect" + "target": "frontend_application_components_searchableselect", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79133,9 +79311,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_store_cartstore" + "target": "frontend_application_lib_store_cartstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79145,9 +79323,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_store_settingsstore" + "target": "frontend_application_lib_store_settingsstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79157,9 +79335,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_utils" + "target": "frontend_application_lib_utils", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79169,9 +79347,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_components_safeimage" + "target": "frontend_application_components_safeimage", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79181,9 +79359,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_components_bannerplacement" + "target": "frontend_application_components_bannerplacement", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79193,9 +79371,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_types" + "target": "frontend_application_lib_types", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79205,9 +79383,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_data_products" + "target": "frontend_application_lib_data_products", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79217,9 +79395,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_store_usepetstore" + "target": "frontend_application_lib_store_usepetstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79229,9 +79407,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_services_productservice" + "target": "frontend_application_lib_services_productservice", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79241,9 +79419,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_components_skeleton" + "target": "frontend_application_components_skeleton", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79253,9 +79431,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_authmodal", - "target": "frontend_application_lib_store_userstore" + "target": "frontend_application_lib_store_userstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79265,9 +79443,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_authmodal", - "target": "frontend_application_lib_store_settingsstore" + "target": "frontend_application_lib_store_settingsstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79277,9 +79455,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_authmodal", - "target": "frontend_application_lib_services_authservice" + "target": "frontend_application_lib_services_authservice", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79289,9 +79467,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_authmodal", - "target": "frontend_application_lib_utils" + "target": "frontend_application_lib_utils", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79301,9 +79479,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_b2bportal", - "target": "frontend_application_components_safeimage" + "target": "frontend_application_components_safeimage", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79313,9 +79491,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_b2bportal", - "target": "frontend_application_lib_utils" + "target": "frontend_application_lib_utils", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79325,9 +79503,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_b2bportal", - "target": "frontend_application_lib_data_products" + "target": "frontend_application_lib_data_products", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79337,9 +79515,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_b2bportal", - "target": "frontend_application_lib_store_cartstore" + "target": "frontend_application_lib_store_cartstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79349,9 +79527,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_b2bportal", - "target": "frontend_application_lib_store_userstore" + "target": "frontend_application_lib_store_userstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79361,9 +79539,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_b2bportal", - "target": "frontend_application_lib_store_settingsstore" + "target": "frontend_application_lib_store_settingsstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79373,9 +79551,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_b2bportal", - "target": "frontend_application_lib_services_productservice" + "target": "frontend_application_lib_services_productservice", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79385,9 +79563,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_backbutton", - "target": "frontend_application_lib_utils" + "target": "frontend_application_lib_utils", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79397,9 +79575,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_bannerplacement", - "target": "frontend_application_lib_types" + "target": "frontend_application_lib_types", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79409,9 +79587,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_blogpage", - "target": "frontend_application_lib_data_products" + "target": "frontend_application_lib_data_products", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79421,9 +79599,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_blogpage", - "target": "frontend_application_lib_services_productservice" + "target": "frontend_application_lib_services_productservice", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79433,9 +79611,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_brandlogo", - "target": "frontend_application_lib_store_settingsstore" + "target": "frontend_application_lib_store_settingsstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79445,9 +79623,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_lib_store_userstore" + "target": "frontend_application_lib_store_userstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79457,9 +79635,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_components_authmodal" + "target": "frontend_application_components_authmodal", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79469,9 +79647,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_lib_utils" + "target": "frontend_application_lib_utils", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79481,9 +79659,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_lib_store_cartstore" + "target": "frontend_application_lib_store_cartstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79493,9 +79671,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_lib_data_products" + "target": "frontend_application_lib_data_products", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79505,9 +79683,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_lib_services_productservice" + "target": "frontend_application_lib_services_productservice", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79517,9 +79695,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_components_safeimage" + "target": "frontend_application_components_safeimage", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79529,9 +79707,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_catalog_catalogpagespread", - "target": "frontend_application_components_safeimage" + "target": "frontend_application_components_safeimage", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79541,9 +79719,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_catalog_catalogpagespread", - "target": "frontend_application_lib_data_products" + "target": "frontend_application_lib_data_products", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79553,9 +79731,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_catalog_flipbookcatalog", - "target": "frontend_application_components_catalog_catalogpagespread" + "target": "frontend_application_components_catalog_catalogpagespread", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79565,9 +79743,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_catalog_flipbookcatalog", - "target": "frontend_application_lib_data_products" + "target": "frontend_application_lib_data_products", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79577,9 +79755,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_catalog_productdetailmodal", - "target": "frontend_application_components_safeimage" + "target": "frontend_application_components_safeimage", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79589,9 +79767,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_catalog_productdetailmodal", - "target": "frontend_application_lib_data_products" + "target": "frontend_application_lib_data_products", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79601,9 +79779,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_lib_utils" + "target": "frontend_application_lib_utils", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79613,9 +79791,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_lib_data_products" + "target": "frontend_application_lib_data_products", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79625,9 +79803,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_lib_store_cartstore" + "target": "frontend_application_lib_store_cartstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79637,9 +79815,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_lib_store_usepetstore" + "target": "frontend_application_lib_store_usepetstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79649,9 +79827,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_lib_store_userstore" + "target": "frontend_application_lib_store_userstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79661,9 +79839,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_lib_store_settingsstore" + "target": "frontend_application_lib_store_settingsstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79673,9 +79851,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_components_topupmodal" + "target": "frontend_application_components_topupmodal", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79685,9 +79863,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_components_addressmodal" + "target": "frontend_application_components_addressmodal", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79697,9 +79875,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_components_searchableselect" + "target": "frontend_application_components_searchableselect", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79709,9 +79887,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_lib_data_provinces" + "target": "frontend_application_lib_data_provinces", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79721,9 +79899,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_lib_services_api" + "target": "frontend_application_lib_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79733,9 +79911,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_contactformclient", - "target": "frontend_application_lib_services_api" + "target": "frontend_application_lib_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79745,9 +79923,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_enamadbadge", - "target": "frontend_application_lib_store_settingsstore" + "target": "frontend_application_lib_store_settingsstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79757,9 +79935,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_lib_store_settingsstore" + "target": "frontend_application_lib_store_settingsstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79769,9 +79947,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_lib_store_cartstore" + "target": "frontend_application_lib_store_cartstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79781,9 +79959,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_lib_data_products" + "target": "frontend_application_lib_data_products", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79793,9 +79971,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_lib_store_usepetstore" + "target": "frontend_application_lib_store_usepetstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79805,9 +79983,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_lib_services_productservice" + "target": "frontend_application_lib_services_productservice", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79817,9 +79995,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_components_safeimage" + "target": "frontend_application_components_safeimage", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79829,9 +80007,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_components_skeleton" + "target": "frontend_application_components_skeleton", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79841,9 +80019,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_footer", - "target": "frontend_application_lib_store_settingsstore" + "target": "frontend_application_lib_store_settingsstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79853,9 +80031,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_footer", - "target": "frontend_application_components_brandlogo" + "target": "frontend_application_components_brandlogo", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79865,9 +80043,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_footer", - "target": "frontend_application_lib_types" + "target": "frontend_application_lib_types", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79877,9 +80055,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_lib_store_settingsstore" + "target": "frontend_application_lib_store_settingsstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79889,9 +80067,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_components_authmodal" + "target": "frontend_application_components_authmodal", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79901,9 +80079,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_components_prescriptionuploadmodal" + "target": "frontend_application_components_prescriptionuploadmodal", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79913,9 +80091,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_components_tickerbanner" + "target": "frontend_application_components_tickerbanner", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79925,9 +80103,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_components_brandlogo" + "target": "frontend_application_components_brandlogo", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79937,9 +80115,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_lib_utils" + "target": "frontend_application_lib_utils", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79949,9 +80127,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_lib_services_productservice" + "target": "frontend_application_lib_services_productservice", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79961,9 +80139,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_lib_types" + "target": "frontend_application_lib_types", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79973,9 +80151,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_lib_store_cartstore" + "target": "frontend_application_lib_store_cartstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79985,9 +80163,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_lib_store_usepetstore" + "target": "frontend_application_lib_store_usepetstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -79997,9 +80175,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_lib_store_userstore" + "target": "frontend_application_lib_store_userstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80009,9 +80187,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_headerbutton", - "target": "frontend_application_lib_utils" + "target": "frontend_application_lib_utils", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80021,9 +80199,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_hero", - "target": "frontend_application_lib_utils" + "target": "frontend_application_lib_utils", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80033,9 +80211,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_hero", - "target": "frontend_application_lib_store_settingsstore" + "target": "frontend_application_lib_store_settingsstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80045,9 +80223,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_hero", - "target": "frontend_application_lib_types" + "target": "frontend_application_lib_types", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80057,9 +80235,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_ingredientwiki", - "target": "frontend_application_lib_services_api" + "target": "frontend_application_lib_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80069,9 +80247,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_ingredientwiki", - "target": "frontend_application_lib_types" + "target": "frontend_application_lib_types", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80081,9 +80259,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_ingredientwiki", - "target": "frontend_application_lib_data_products" + "target": "frontend_application_lib_data_products", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80093,9 +80271,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_ingredientwiki", - "target": "frontend_application_lib_services_productservice" + "target": "frontend_application_lib_services_productservice", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80105,9 +80283,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_loginmodal", - "target": "frontend_application_lib_services_authservice" + "target": "frontend_application_lib_services_authservice", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80117,9 +80295,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_loginmodal", - "target": "frontend_application_lib_store_userstore" + "target": "frontend_application_lib_store_userstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80129,9 +80307,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_loginmodal", - "target": "frontend_application_lib_utils" + "target": "frontend_application_lib_utils", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80141,9 +80319,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_maintenancepage", - "target": "frontend_application_lib_store_settingsstore" + "target": "frontend_application_lib_store_settingsstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80153,9 +80331,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_maintenancepage", - "target": "frontend_application_components_brandlogo" + "target": "frontend_application_components_brandlogo", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80165,9 +80343,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_networkbanner", - "target": "frontend_application_lib_hooks_usenetworkstatus" + "target": "frontend_application_lib_hooks_usenetworkstatus", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80177,9 +80355,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_orderdetailsmodal", - "target": "frontend_application_lib_utils" + "target": "frontend_application_lib_utils", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80189,9 +80367,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_orderdetailsmodal", - "target": "frontend_application_lib_services_api" + "target": "frontend_application_lib_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80201,9 +80379,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_orderdetailsmodal", - "target": "frontend_application_lib_store_settingsstore" + "target": "frontend_application_lib_store_settingsstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80213,9 +80391,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_ordersuccess", - "target": "frontend_application_lib_store_cartstore" + "target": "frontend_application_lib_store_cartstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80225,9 +80403,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_ordersuccess", - "target": "frontend_application_lib_store_usepetstore" + "target": "frontend_application_lib_store_usepetstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80237,9 +80415,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_ordertracking", - "target": "frontend_application_lib_store_cartstore" + "target": "frontend_application_lib_store_cartstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80249,9 +80427,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_store_usepetstore" + "target": "frontend_application_lib_store_usepetstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80261,9 +80439,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_data_products" + "target": "frontend_application_lib_data_products", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80273,9 +80451,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_store_cartstore" + "target": "frontend_application_lib_store_cartstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80285,9 +80463,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_components_safeimage" + "target": "frontend_application_components_safeimage", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80297,9 +80475,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_components_smartadvisor" + "target": "frontend_application_components_smartadvisor", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80309,9 +80487,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_components_orderdetailsmodal" + "target": "frontend_application_components_orderdetailsmodal", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80321,9 +80499,9 @@ "source_location": "L35", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_utils" + "target": "frontend_application_lib_utils", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80333,9 +80511,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_services_api" + "target": "frontend_application_lib_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80345,9 +80523,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_services_productservice" + "target": "frontend_application_lib_services_productservice", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80357,9 +80535,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_components_skeleton" + "target": "frontend_application_components_skeleton", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80369,9 +80547,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_prescriptionuploadmodal", - "target": "frontend_application_lib_store_userstore" + "target": "frontend_application_lib_store_userstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80381,9 +80559,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_prescriptionuploadmodal", - "target": "frontend_application_lib_store_usepetstore" + "target": "frontend_application_lib_store_usepetstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80393,9 +80571,9 @@ "source_location": "L42", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_utils" + "target": "frontend_application_lib_utils", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80405,9 +80583,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_data_products" + "target": "frontend_application_lib_data_products", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80417,9 +80595,9 @@ "source_location": "L44", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_services_productservice" + "target": "frontend_application_lib_services_productservice", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80429,9 +80607,9 @@ "source_location": "L45", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_data_scientificterms" + "target": "frontend_application_lib_data_scientificterms", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80441,9 +80619,9 @@ "source_location": "L46", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_store_settingsstore" + "target": "frontend_application_lib_store_settingsstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80453,9 +80631,9 @@ "source_location": "L48", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_store_cartstore" + "target": "frontend_application_lib_store_cartstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80465,9 +80643,9 @@ "source_location": "L49", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_store_usepetstore" + "target": "frontend_application_lib_store_usepetstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80477,9 +80655,9 @@ "source_location": "L51", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_services_api" + "target": "frontend_application_lib_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80489,9 +80667,9 @@ "source_location": "L52", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_types" + "target": "frontend_application_lib_types", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80501,9 +80679,9 @@ "source_location": "L68", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_components_tooltip" + "target": "frontend_application_components_tooltip", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80513,9 +80691,9 @@ "source_location": "L69", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_components_safeimage" + "target": "frontend_application_components_safeimage", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80525,9 +80703,9 @@ "source_location": "L70", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_components_productreviews" + "target": "frontend_application_components_productreviews", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80537,9 +80715,9 @@ "source_location": "L71", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_components_videomodalplayer" + "target": "frontend_application_components_videomodalplayer", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80549,9 +80727,9 @@ "source_location": "L72", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_components_podcastinlineplayer" + "target": "frontend_application_components_podcastinlineplayer", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80561,9 +80739,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productreviews", - "target": "frontend_application_lib_services_api" + "target": "frontend_application_lib_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80573,9 +80751,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productreviews", - "target": "frontend_application_lib_utils" + "target": "frontend_application_lib_utils", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80585,9 +80763,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_safeimage", - "target": "frontend_application_lib_utils" + "target": "frontend_application_lib_utils", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80597,9 +80775,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_searchableselect", - "target": "frontend_application_lib_utils" + "target": "frontend_application_lib_utils", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80609,9 +80787,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_searchresultspage", - "target": "frontend_application_lib_store_usepetstore" + "target": "frontend_application_lib_store_usepetstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80621,9 +80799,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_searchresultspage", - "target": "frontend_application_lib_data_products" + "target": "frontend_application_lib_data_products", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80633,9 +80811,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_searchresultspage", - "target": "frontend_application_lib_services_productservice" + "target": "frontend_application_lib_services_productservice", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80645,9 +80823,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_utils" + "target": "frontend_application_lib_utils", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80657,9 +80835,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_data_products" + "target": "frontend_application_lib_data_products", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80669,9 +80847,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_services_productservice" + "target": "frontend_application_lib_services_productservice", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80681,9 +80859,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_store_userstore" + "target": "frontend_application_lib_store_userstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80693,9 +80871,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_store_uistore" + "target": "frontend_application_lib_store_uistore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80705,9 +80883,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_store_usepetstore" + "target": "frontend_application_lib_store_usepetstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80717,9 +80895,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_services_api" + "target": "frontend_application_lib_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80729,9 +80907,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_store_settingsstore" + "target": "frontend_application_lib_store_settingsstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80741,9 +80919,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_testimonialssection", - "target": "frontend_application_components_safeimage" + "target": "frontend_application_components_safeimage", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80753,9 +80931,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_testimonialssection", - "target": "frontend_application_lib_store_settingsstore" + "target": "frontend_application_lib_store_settingsstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80765,9 +80943,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_testimonialssection", - "target": "frontend_application_lib_services_api" + "target": "frontend_application_lib_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80777,9 +80955,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_tests_cartdrawer_test", - "target": "frontend_application_components_cartdrawer" + "target": "frontend_application_components_cartdrawer", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80789,9 +80967,9 @@ "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" + "target": "frontend_application_lib_store_cartstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80801,9 +80979,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_tests_cartdrawer_test", - "target": "frontend_application_lib_services_productservice" + "target": "frontend_application_lib_services_productservice", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80813,9 +80991,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_tests_featuredproducts_test", - "target": "frontend_application_components_featuredproducts" + "target": "frontend_application_components_featuredproducts", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80825,9 +81003,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_tests_featuredproducts_test", - "target": "frontend_application_lib_services_productservice" + "target": "frontend_application_lib_services_productservice", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80837,9 +81015,9 @@ "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" + "target": "frontend_application_lib_store_usepetstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80849,9 +81027,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_tests_footer_test", - "target": "frontend_application_components_footer" + "target": "frontend_application_components_footer", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80861,9 +81039,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_tests_header_test", - "target": "frontend_application_components_header" + "target": "frontend_application_components_header", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80873,9 +81051,9 @@ "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" + "target": "frontend_application_lib_store_cartstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80885,9 +81063,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_tests_header_test", - "target": "frontend_application_lib_store_usepetstore" + "target": "frontend_application_lib_store_usepetstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80897,9 +81075,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_tests_header_test", - "target": "frontend_application_lib_store_userstore" + "target": "frontend_application_lib_store_userstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80909,9 +81087,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_tests_hero_test", - "target": "frontend_application_components_hero" + "target": "frontend_application_components_hero", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80921,9 +81099,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_tests_hero_test", - "target": "frontend_application_lib_store_settingsstore" + "target": "frontend_application_lib_store_settingsstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80933,9 +81111,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_tests_tooltip_test", - "target": "frontend_application_components_tooltip" + "target": "frontend_application_components_tooltip", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80945,9 +81123,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_tests_tooltip_test", - "target": "frontend_application_lib_store_settingsstore" + "target": "frontend_application_lib_store_settingsstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80957,9 +81135,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_tickerbanner", - "target": "frontend_application_lib_store_settingsstore" + "target": "frontend_application_lib_store_settingsstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80969,9 +81147,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_tooltip", - "target": "frontend_application_lib_data_scientificterms" + "target": "frontend_application_lib_data_scientificterms", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80981,9 +81159,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_tooltip", - "target": "frontend_application_lib_store_settingsstore" + "target": "frontend_application_lib_store_settingsstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -80993,9 +81171,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_topupmodal", - "target": "frontend_application_lib_utils" + "target": "frontend_application_lib_utils", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81005,9 +81183,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_topupmodal", - "target": "frontend_application_lib_store_userstore" + "target": "frontend_application_lib_store_userstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81017,9 +81195,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_topupmodal", - "target": "frontend_application_lib_store_settingsstore" + "target": "frontend_application_lib_store_settingsstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81029,9 +81207,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_topupmodal", - "target": "frontend_application_lib_services_api" + "target": "frontend_application_lib_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81041,9 +81219,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_orderdetailsmodal" + "target": "frontend_application_components_orderdetailsmodal", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81053,9 +81231,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_addressmodal" + "target": "frontend_application_components_addressmodal", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81065,9 +81243,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_deleteconfirmmodal" + "target": "frontend_application_components_deleteconfirmmodal", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81077,9 +81255,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_topupmodal" + "target": "frontend_application_components_topupmodal", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81089,9 +81267,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_services_ticketservice" + "target": "frontend_application_lib_services_ticketservice", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81101,9 +81279,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_store_usepetstore" + "target": "frontend_application_lib_store_usepetstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81113,9 +81291,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_petprofile" + "target": "frontend_application_components_petprofile", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81125,9 +81303,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_services_api" + "target": "frontend_application_lib_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81137,9 +81315,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_skeleton" + "target": "frontend_application_components_skeleton", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81149,9 +81327,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_store_userstore" + "target": "frontend_application_lib_store_userstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81161,9 +81339,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_store_cartstore" + "target": "frontend_application_lib_store_cartstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81173,9 +81351,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_store_settingsstore" + "target": "frontend_application_lib_store_settingsstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81185,9 +81363,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_utils" + "target": "frontend_application_lib_utils", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81197,9 +81375,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_vetgallery", - "target": "frontend_application_components_safeimage" + "target": "frontend_application_components_safeimage", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81209,9 +81387,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_vetgallery", - "target": "frontend_application_lib_store_settingsstore" + "target": "frontend_application_lib_store_settingsstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81221,9 +81399,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_vetgallery", - "target": "frontend_application_lib_services_videoservice" + "target": "frontend_application_lib_services_videoservice", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81233,9 +81411,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_vetgallery", - "target": "frontend_application_components_videomodalplayer" + "target": "frontend_application_components_videomodalplayer", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81245,9 +81423,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_videospage", - "target": "frontend_application_components_videomodalplayer" + "target": "frontend_application_components_videomodalplayer", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81257,9 +81435,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_videospage", - "target": "frontend_application_components_safeimage" + "target": "frontend_application_components_safeimage", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81269,9 +81447,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_videospage", - "target": "frontend_application_lib_services_videoservice" + "target": "frontend_application_lib_services_videoservice", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81281,9 +81459,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_api", - "target": "frontend_application_lib_store_userstore" + "target": "frontend_application_lib_store_userstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81293,9 +81471,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_authservice", - "target": "frontend_application_lib_services_api" + "target": "frontend_application_lib_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81305,9 +81483,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_orderservice", - "target": "frontend_application_lib_services_api" + "target": "frontend_application_lib_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81317,9 +81495,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice", - "target": "frontend_application_lib_services_api" + "target": "frontend_application_lib_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81329,9 +81507,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice", - "target": "frontend_application_lib_data_products" + "target": "frontend_application_lib_data_products", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81341,9 +81519,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice", - "target": "frontend_application_lib_types" + "target": "frontend_application_lib_types", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81353,9 +81531,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_ticketservice", - "target": "frontend_application_lib_services_api" + "target": "frontend_application_lib_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81365,9 +81543,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_videoservice", - "target": "frontend_application_lib_services_api" + "target": "frontend_application_lib_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81377,9 +81555,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_cartstore", - "target": "frontend_application_lib_data_products" + "target": "frontend_application_lib_data_products", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81389,9 +81567,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_cartstore", - "target": "frontend_application_lib_services_orderservice" + "target": "frontend_application_lib_services_orderservice", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81401,9 +81579,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_cartstore", - "target": "frontend_application_lib_services_api" + "target": "frontend_application_lib_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81413,9 +81591,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_settingsstore", - "target": "frontend_application_lib_services_api" + "target": "frontend_application_lib_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81425,9 +81603,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_tests_cartstore_test", - "target": "frontend_application_lib_store_cartstore" + "target": "frontend_application_lib_store_cartstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81437,9 +81615,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_tests_cartstore_test", - "target": "frontend_application_lib_services_orderservice" + "target": "frontend_application_lib_services_orderservice", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81449,9 +81627,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_tests_cartstore_test", - "target": "frontend_application_lib_services_api" + "target": "frontend_application_lib_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81461,9 +81639,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_tests_settingsstore_test", - "target": "frontend_application_lib_store_settingsstore" + "target": "frontend_application_lib_store_settingsstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81473,9 +81651,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_tests_settingsstore_test", - "target": "frontend_application_lib_services_api" + "target": "frontend_application_lib_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81485,9 +81663,9 @@ "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" + "target": "frontend_application_lib_store_userstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81497,9 +81675,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_tests_userstore_test", - "target": "frontend_application_lib_services_authservice" + "target": "frontend_application_lib_services_authservice", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81509,9 +81687,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_tests_userstore_test", - "target": "frontend_application_lib_services_api" + "target": "frontend_application_lib_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81521,9 +81699,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_usepetstore", - "target": "frontend_application_lib_services_api" + "target": "frontend_application_lib_services_api", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81533,9 +81711,9 @@ "context": "import", "source_location": "L6", "weight": 1.0, - "confidence_score": 1.0, "source": "frontend_application_lib_store_usepetstore", - "target": "frontend_application_lib_store_userstore" + "target": "frontend_application_lib_store_userstore", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81545,9 +81723,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_userstore", - "target": "frontend_application_lib_services_authservice" + "target": "frontend_application_lib_services_authservice", + "confidence_score": 1.0 }, { "relation": "imports_from", @@ -81557,9 +81735,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_userstore", - "target": "frontend_application_lib_store_cartstore" + "target": "frontend_application_lib_store_cartstore", + "confidence_score": 1.0 }, { "relation": "references", @@ -81569,9 +81747,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_constructor", - "target": "backend_src_admin_admin_service_adminservice" + "target": "backend_src_admin_admin_service_adminservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -81581,9 +81759,9 @@ "source_location": "L190", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_createcoupon", - "target": "backend_src_admin_admin_service_couponinput" + "target": "backend_src_admin_admin_service_couponinput", + "confidence_score": 1.0 }, { "relation": "references", @@ -81593,9 +81771,9 @@ "source_location": "L131", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_createproduct", - "target": "backend_src_admin_dto_product_dto_productdto" + "target": "backend_src_admin_dto_product_dto_productdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -81605,9 +81783,9 @@ "source_location": "L51", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_createuser", - "target": "backend_src_admin_dto_user_dto_createuserdto" + "target": "backend_src_admin_dto_user_dto_createuserdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -81617,9 +81795,9 @@ "source_location": "L183", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_getcoupons", - "target": "backend_src_admin_dto_admin_query_dto_adminquerydto" + "target": "backend_src_admin_dto_admin_query_dto_adminquerydto", + "confidence_score": 1.0 }, { "relation": "references", @@ -81629,9 +81807,9 @@ "source_location": "L158", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_getorders", - "target": "backend_src_admin_dto_admin_query_dto_adminquerydto" + "target": "backend_src_admin_dto_admin_query_dto_adminquerydto", + "confidence_score": 1.0 }, { "relation": "references", @@ -81641,9 +81819,9 @@ "source_location": "L124", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_getproducts", - "target": "backend_src_admin_dto_admin_query_dto_adminquerydto" + "target": "backend_src_admin_dto_admin_query_dto_adminquerydto", + "confidence_score": 1.0 }, { "relation": "references", @@ -81653,9 +81831,9 @@ "source_location": "L44", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_getusers", - "target": "backend_src_admin_dto_admin_query_dto_adminquerydto" + "target": "backend_src_admin_dto_admin_query_dto_adminquerydto", + "confidence_score": 1.0 }, { "relation": "references", @@ -81665,9 +81843,9 @@ "source_location": "L197", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_updatecoupon", - "target": "backend_src_admin_admin_service_couponinput" + "target": "backend_src_admin_admin_service_couponinput", + "confidence_score": 1.0 }, { "relation": "references", @@ -81677,9 +81855,9 @@ "source_location": "L138", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_updateproduct", - "target": "backend_src_admin_dto_product_dto_productdto" + "target": "backend_src_admin_dto_product_dto_productdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -81689,9 +81867,9 @@ "source_location": "L69", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller_updateuser", - "target": "backend_src_admin_dto_user_dto_updateuserdto" + "target": "backend_src_admin_dto_user_dto_updateuserdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -81701,9 +81879,9 @@ "source_location": "L51", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service_adminservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -81713,9 +81891,9 @@ "source_location": "L51", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service_adminservice_constructor", - "target": "backend_src_redis_redis_service_redisservice" + "target": "backend_src_redis_redis_service_redisservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -81725,9 +81903,9 @@ "source_location": "L356", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service_adminservice_createproduct", - "target": "backend_src_admin_dto_product_dto_productdto" + "target": "backend_src_admin_dto_product_dto_productdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -81737,9 +81915,9 @@ "source_location": "L164", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service_adminservice_createuser", - "target": "backend_src_admin_dto_user_dto_createuserdto" + "target": "backend_src_admin_dto_user_dto_createuserdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -81749,9 +81927,9 @@ "source_location": "L415", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service_adminservice_updateproduct", - "target": "backend_src_admin_dto_product_dto_productdto" + "target": "backend_src_admin_dto_product_dto_productdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -81761,9 +81939,9 @@ "source_location": "L201", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service_adminservice_updateuser", - "target": "backend_src_admin_dto_user_dto_updateuserdto" + "target": "backend_src_admin_dto_user_dto_updateuserdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -81773,9 +81951,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller_blogscontroller_constructor", - "target": "backend_src_admin_blogs_service_blogsservice" + "target": "backend_src_admin_blogs_service_blogsservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -81785,9 +81963,9 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller_blogscontroller_getblogs", - "target": "backend_src_common_dto_pagination_dto_paginationdto" + "target": "backend_src_common_dto_pagination_dto_paginationdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -81797,9 +81975,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_blogs_service_blogsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -81809,9 +81987,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_categories_controller_categoriescontroller_constructor", - "target": "backend_src_admin_categories_service_categoriesservice" + "target": "backend_src_admin_categories_service_categoriesservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -81821,9 +81999,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_categories_controller_categoriescontroller_getcategories", - "target": "backend_src_common_dto_pagination_dto_paginationdto" + "target": "backend_src_common_dto_pagination_dto_paginationdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -81833,9 +82011,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_categories_service_categoriesservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -81845,9 +82023,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_media_controller_mediacontroller_constructor", - "target": "backend_src_admin_media_service_mediaservice" + "target": "backend_src_admin_media_service_mediaservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -81857,9 +82035,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_media_service_mediaservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -81869,9 +82047,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_pets_controller_petscontroller_constructor", - "target": "backend_src_admin_pets_service_petsservice" + "target": "backend_src_admin_pets_service_petsservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -81881,9 +82059,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_pets_controller_petscontroller_getpets", - "target": "backend_src_common_dto_pagination_dto_paginationdto" + "target": "backend_src_common_dto_pagination_dto_paginationdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -81893,9 +82071,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_pets_service_petsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -81905,9 +82083,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_reports_controller_reportscontroller_constructor", - "target": "backend_src_admin_reports_service_reportsservice" + "target": "backend_src_admin_reports_service_reportsservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -81917,9 +82095,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_reports_service_reportsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -81929,9 +82107,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller_sslcontroller_constructor", - "target": "backend_src_admin_ssl_service_sslservice" + "target": "backend_src_admin_ssl_service_sslservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -81941,9 +82119,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller_wikicontroller_constructor", - "target": "backend_src_admin_wiki_service_wikiservice" + "target": "backend_src_admin_wiki_service_wikiservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -81953,9 +82131,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller_wikicontroller_getterms", - "target": "backend_src_common_dto_pagination_dto_paginationdto" + "target": "backend_src_common_dto_pagination_dto_paginationdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -81965,9 +82143,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_wiki_service_wikiservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -81977,9 +82155,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_controller_appcontroller_constructor", - "target": "backend_src_app_service_appservice" + "target": "backend_src_app_service_appservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -81989,9 +82167,9 @@ "source_location": "L84", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module_appmodule_constructor", - "target": "backend_src_redis_redis_service_redisservice" + "target": "backend_src_redis_redis_service_redisservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82001,9 +82179,9 @@ "source_location": "L89", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_adminlogin", - "target": "backend_src_auth_dto_admin_login_dto_adminlogindto" + "target": "backend_src_auth_dto_admin_login_dto_adminlogindto", + "confidence_score": 1.0 }, { "relation": "references", @@ -82013,9 +82191,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_constructor", - "target": "backend_src_auth_auth_service_authservice" + "target": "backend_src_auth_auth_service_authservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82025,9 +82203,9 @@ "source_location": "L80", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_login", - "target": "backend_src_auth_dto_login_dto_logindto" + "target": "backend_src_auth_dto_login_dto_logindto", + "confidence_score": 1.0 }, { "relation": "references", @@ -82037,9 +82215,9 @@ "source_location": "L71", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_register", - "target": "backend_src_auth_dto_register_dto_registerdto" + "target": "backend_src_auth_dto_register_dto_registerdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -82049,9 +82227,9 @@ "source_location": "L49", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_sendotp", - "target": "backend_src_auth_dto_send_otp_dto_sendotpdto" + "target": "backend_src_auth_dto_send_otp_dto_sendotpdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -82061,9 +82239,9 @@ "source_location": "L60", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller_verifyotp", - "target": "backend_src_auth_dto_verify_otp_dto_verifyotpdto" + "target": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -82073,9 +82251,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_service_authservice_constructor", - "target": "backend_src_common_services_sms_service_smsservice" + "target": "backend_src_common_services_sms_service_smsservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82085,9 +82263,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_service_authservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82097,9 +82275,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_service_authservice_constructor", - "target": "backend_src_redis_redis_service_redisservice" + "target": "backend_src_redis_redis_service_redisservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82109,9 +82287,9 @@ "source_location": "L40", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_service_authservice_sendotp", - "target": "backend_src_auth_dto_send_otp_dto_sendotpdto" + "target": "backend_src_auth_dto_send_otp_dto_sendotpdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -82121,9 +82299,9 @@ "source_location": "L119", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_service_authservice_verifyotp", - "target": "backend_src_auth_dto_verify_otp_dto_verifyotpdto" + "target": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -82133,9 +82311,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_jwt_strategy_jwtstrategy_constructor", - "target": "backend_src_users_users_service_usersservice" + "target": "backend_src_users_users_service_usersservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82145,9 +82323,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller_constructor", - "target": "backend_src_b2b_b2b_service_b2bservice" + "target": "backend_src_b2b_b2b_service_b2bservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82157,9 +82335,9 @@ "source_location": "L73", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", - "target": "backend_src_b2b_b2b_service_b2bwholesaleorderitem" + "target": "backend_src_b2b_b2b_service_b2bwholesaleorderitem", + "confidence_score": 1.0 }, { "relation": "references", @@ -82169,9 +82347,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_b2b_b2b_service_b2bservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82181,9 +82359,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_banners_banners_controller_bannerscontroller_constructor", - "target": "backend_src_banners_banners_service_bannersservice" + "target": "backend_src_banners_banners_service_bannersservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82193,9 +82371,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_banners_banners_service_bannersservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82205,9 +82383,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_blogs_blogs_controller_blogscontroller_constructor", - "target": "backend_src_blogs_blogs_service_blogsservice" + "target": "backend_src_blogs_blogs_service_blogsservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82217,9 +82395,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_blogs_blogs_controller_blogscontroller_findall", - "target": "backend_src_common_dto_pagination_dto_paginationdto" + "target": "backend_src_common_dto_pagination_dto_paginationdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -82229,9 +82407,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_blogs_blogs_service_blogsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82241,9 +82419,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_blogs_blogs_service_blogsservice_findall", - "target": "backend_src_common_dto_pagination_dto_paginationdto" + "target": "backend_src_common_dto_pagination_dto_paginationdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -82253,9 +82431,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_constructor", - "target": "backend_src_cms_cms_service_cmsservice" + "target": "backend_src_cms_cms_service_cmsservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82265,9 +82443,9 @@ "source_location": "L39", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_createherobanner", - "target": "backend_src_cms_dto_cms_dto_createherobannerdto" + "target": "backend_src_cms_dto_cms_dto_createherobannerdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -82277,9 +82455,9 @@ "source_location": "L95", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_createsmartadvisorrule", - "target": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto" + "target": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", + "confidence_score": 1.0 }, { "relation": "references", @@ -82289,9 +82467,9 @@ "source_location": "L67", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_cms_cms_controller_cmscontroller_createvettestimonial", - "target": "backend_src_cms_dto_cms_dto_createvettestimonialdto" + "target": "backend_src_cms_dto_cms_dto_createvettestimonialdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -82301,9 +82479,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_cms_cms_service_cmsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82313,9 +82491,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_cms_cms_service_cmsservice_createherobanner", - "target": "backend_src_cms_dto_cms_dto_createherobannerdto" + "target": "backend_src_cms_dto_cms_dto_createherobannerdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -82325,9 +82503,9 @@ "source_location": "L67", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_cms_cms_service_cmsservice_createsmartadvisorrule", - "target": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto" + "target": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", + "confidence_score": 1.0 }, { "relation": "references", @@ -82337,9 +82515,9 @@ "source_location": "L41", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_cms_cms_service_cmsservice_createvettestimonial", - "target": "backend_src_cms_dto_cms_dto_createvettestimonialdto" + "target": "backend_src_cms_dto_cms_dto_createvettestimonialdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -82349,9 +82527,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_metrics_controller_metricscontroller_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82361,9 +82539,9 @@ "source_location": "L54", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_services_sms_service_smsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82373,9 +82551,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_contact_contact_controller_contactcontroller_constructor", - "target": "backend_src_contact_contact_service_contactservice" + "target": "backend_src_contact_contact_service_contactservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82385,9 +82563,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_contact_contact_service_contactservice_constructor", - "target": "backend_src_common_services_sms_service_smsservice" + "target": "backend_src_common_services_sms_service_smsservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82397,9 +82575,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_contact_contact_service_contactservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82409,9 +82587,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_doctors_doctors_controller_doctorscontroller_constructor", - "target": "backend_src_doctors_doctors_service_doctorsservice" + "target": "backend_src_doctors_doctors_service_doctorsservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82421,9 +82599,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_doctors_doctors_controller_doctorscontroller_findall", - "target": "backend_src_doctors_doctors_service_doctorquery" + "target": "backend_src_doctors_doctors_service_doctorquery", + "confidence_score": 1.0 }, { "relation": "references", @@ -82433,9 +82611,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_doctors_doctors_service_doctorsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82445,9 +82623,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_home_home_controller_homecontroller_constructor", - "target": "backend_src_home_home_service_homeservice" + "target": "backend_src_home_home_service_homeservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82457,9 +82635,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_home_home_service_homeservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82469,9 +82647,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_constructor", - "target": "backend_src_ingredients_ingredients_service_ingredientsservice" + "target": "backend_src_ingredients_ingredients_service_ingredientsservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82481,9 +82659,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_service_ingredientsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82493,9 +82671,9 @@ "source_location": "L55", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller_constructor", - "target": "backend_src_orders_orders_service_ordersservice" + "target": "backend_src_orders_orders_service_ordersservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82505,9 +82683,9 @@ "source_location": "L85", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller_create", - "target": "backend_src_orders_dto_create_order_dto_createorderdto" + "target": "backend_src_orders_dto_create_order_dto_createorderdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -82517,9 +82695,9 @@ "source_location": "L146", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller_findall", - "target": "backend_src_common_dto_pagination_dto_paginationdto" + "target": "backend_src_common_dto_pagination_dto_paginationdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -82529,9 +82707,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_service_ordersservice_constructor", - "target": "backend_src_common_services_sms_service_smsservice" + "target": "backend_src_common_services_sms_service_smsservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82541,9 +82719,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_service_ordersservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82553,9 +82731,9 @@ "source_location": "L101", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_service_ordersservice_create", - "target": "backend_src_orders_dto_create_order_dto_createorderdto" + "target": "backend_src_orders_dto_create_order_dto_createorderdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -82565,9 +82743,9 @@ "source_location": "L348", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_service_ordersservice_findallbyuser", - "target": "backend_src_common_dto_pagination_dto_paginationdto" + "target": "backend_src_common_dto_pagination_dto_paginationdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -82577,9 +82755,9 @@ "source_location": "L39", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_constructor", - "target": "backend_src_payment_payment_service_paymentservice" + "target": "backend_src_payment_payment_service_paymentservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82589,9 +82767,9 @@ "source_location": "L39", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_constructor", - "target": "backend_src_payment_zibal_service_zibalservice" + "target": "backend_src_payment_zibal_service_zibalservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82601,9 +82779,9 @@ "source_location": "L204", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", - "target": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto" + "target": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -82613,9 +82791,9 @@ "source_location": "L93", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", - "target": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto" + "target": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto", + "confidence_score": 1.0 }, { "relation": "references", @@ -82625,9 +82803,9 @@ "source_location": "L163", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", - "target": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto" + "target": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto", + "confidence_score": 1.0 }, { "relation": "references", @@ -82637,9 +82815,9 @@ "source_location": "L54", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", - "target": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto" + "target": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -82649,9 +82827,9 @@ "source_location": "L75", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "target": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto" + "target": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -82661,9 +82839,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_service_paymentservice_constructor", - "target": "backend_src_common_services_sms_service_smsservice" + "target": "backend_src_common_services_sms_service_smsservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82673,9 +82851,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_service_paymentservice_constructor", - "target": "backend_src_payment_zibal_service_zibalservice" + "target": "backend_src_payment_zibal_service_zibalservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82685,9 +82863,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_service_paymentservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82697,9 +82875,9 @@ "source_location": "L669", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_service_paymentservice_getadmintransactions", - "target": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto" + "target": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -82709,9 +82887,9 @@ "source_location": "L47", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82721,9 +82899,9 @@ "source_location": "L154", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice_requestpayment", - "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestoptions" + "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestoptions", + "confidence_score": 1.0 }, { "relation": "references", @@ -82733,9 +82911,9 @@ "source_location": "L285", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_addhealthlog", - "target": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto" + "target": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -82745,9 +82923,9 @@ "source_location": "L259", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_addreminder", - "target": "backend_src_pets_dto_create_reminder_dto_createreminderdto" + "target": "backend_src_pets_dto_create_reminder_dto_createreminderdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -82757,9 +82935,9 @@ "source_location": "L56", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_constructor", - "target": "backend_src_pets_pets_service_petsservice" + "target": "backend_src_pets_pets_service_petsservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82769,9 +82947,9 @@ "source_location": "L119", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_create", - "target": "backend_src_pets_dto_create_pet_dto_createpetdto" + "target": "backend_src_pets_dto_create_pet_dto_createpetdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -82781,9 +82959,9 @@ "source_location": "L155", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_findall", - "target": "backend_src_common_dto_pagination_dto_paginationdto" + "target": "backend_src_common_dto_pagination_dto_paginationdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -82793,9 +82971,9 @@ "source_location": "L223", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller_update", - "target": "backend_src_pets_dto_update_pet_dto_updatepetdto" + "target": "backend_src_pets_dto_update_pet_dto_updatepetdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -82805,9 +82983,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_service_petsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82817,9 +82995,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_service_petsservice_create", - "target": "backend_src_pets_dto_create_pet_dto_createpetdto" + "target": "backend_src_pets_dto_create_pet_dto_createpetdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -82829,9 +83007,9 @@ "source_location": "L49", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_service_petsservice_findalladmin", - "target": "backend_src_common_dto_pagination_dto_paginationdto" + "target": "backend_src_common_dto_pagination_dto_paginationdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -82841,9 +83019,9 @@ "source_location": "L109", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_service_petsservice_findallbyuser", - "target": "backend_src_common_dto_pagination_dto_paginationdto" + "target": "backend_src_common_dto_pagination_dto_paginationdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -82853,9 +83031,9 @@ "source_location": "L161", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_service_petsservice_update", - "target": "backend_src_pets_dto_update_pet_dto_updatepetdto" + "target": "backend_src_pets_dto_update_pet_dto_updatepetdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -82865,9 +83043,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_constructor", - "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice" + "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82877,9 +83055,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_constructor", - "target": "backend_src_common_services_sms_service_smsservice" + "target": "backend_src_common_services_sms_service_smsservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82889,9 +83067,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82901,9 +83079,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_controller_productscontroller_constructor", - "target": "backend_src_products_products_service_productsservice" + "target": "backend_src_products_products_service_productsservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82913,9 +83091,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_controller_productscontroller_findall", - "target": "backend_src_products_dto_get_products_dto_getproductsdto" + "target": "backend_src_products_dto_get_products_dto_getproductsdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -82925,9 +83103,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_service_productsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82937,9 +83115,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_service_productsservice_findall", - "target": "backend_src_products_dto_get_products_dto_getproductsdto" + "target": "backend_src_products_dto_get_products_dto_getproductsdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -82949,9 +83127,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_constructor", - "target": "backend_src_reviews_reviews_service_reviewsservice" + "target": "backend_src_reviews_reviews_service_reviewsservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82961,9 +83139,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", - "target": "backend_src_reviews_dto_create_review_dto_createreviewdto" + "target": "backend_src_reviews_dto_create_review_dto_createreviewdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -82973,9 +83151,9 @@ "source_location": "L89", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", - "target": "backend_src_reviews_dto_update_review_dto_updatereviewdto" + "target": "backend_src_reviews_dto_update_review_dto_updatereviewdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -82985,9 +83163,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_service_reviewsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -82997,9 +83175,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_service_reviewsservice_createreview", - "target": "backend_src_reviews_dto_create_review_dto_createreviewdto" + "target": "backend_src_reviews_dto_create_review_dto_createreviewdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -83009,9 +83187,9 @@ "source_location": "L185", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_service_reviewsservice_updatereviewstatus", - "target": "backend_src_reviews_dto_update_review_dto_updatereviewdto" + "target": "backend_src_reviews_dto_update_review_dto_updatereviewdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -83021,9 +83199,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_seo_seo_controller_seocontroller_constructor", - "target": "backend_src_seo_seo_service_seoservice" + "target": "backend_src_seo_seo_service_seoservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -83033,9 +83211,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_seo_seo_service_seoservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -83045,21 +83223,21 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_settingscontroller_constructor", - "target": "backend_src_settings_settings_service_settingsservice" + "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": "L252", + "source_location": "L261", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", - "target": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto" + "target": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", + "confidence_score": 1.0 }, { "relation": "references", @@ -83069,9 +83247,9 @@ "source_location": "L107", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", - "target": "backend_src_settings_settings_service_scientifictermdata" + "target": "backend_src_settings_settings_service_scientifictermdata", + "confidence_score": 1.0 }, { "relation": "references", @@ -83081,9 +83259,9 @@ "source_location": "L89", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service_settingsservice_constructor", - "target": "backend_src_common_services_sms_service_smsservice" + "target": "backend_src_common_services_sms_service_smsservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -83093,21 +83271,21 @@ "source_location": "L89", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service_settingsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice" + "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": "L395", + "source_location": "L399", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service_settingsservice_getsmslogs", - "target": "backend_src_common_services_sms_service_smslogquery" + "target": "backend_src_common_services_sms_service_smslogquery", + "confidence_score": 1.0 }, { "relation": "references", @@ -83117,9 +83295,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_constructor", - "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice" + "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -83129,9 +83307,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -83141,9 +83319,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_constructor", - "target": "backend_src_testimonials_testimonials_service_testimonialsservice" + "target": "backend_src_testimonials_testimonials_service_testimonialsservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -83153,9 +83331,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_service_testimonialsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -83165,9 +83343,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_constructor", - "target": "backend_src_tickets_tickets_service_ticketsservice" + "target": "backend_src_tickets_tickets_service_ticketsservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -83177,9 +83355,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", - "target": "backend_src_tickets_dto_create_ticket_dto_createticketdto" + "target": "backend_src_tickets_dto_create_ticket_dto_createticketdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -83189,9 +83367,9 @@ "source_location": "L81", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", - "target": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto" + "target": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", + "confidence_score": 1.0 }, { "relation": "references", @@ -83201,9 +83379,9 @@ "source_location": "L65", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", - "target": "backend_src_tickets_dto_create_ticket_dto_replyticketdto" + "target": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -83213,9 +83391,9 @@ "source_location": "L90", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", - "target": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto" + "target": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -83225,9 +83403,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service_ticketsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -83237,9 +83415,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service_ticketsservice_createticket", - "target": "backend_src_tickets_dto_create_ticket_dto_createticketdto" + "target": "backend_src_tickets_dto_create_ticket_dto_createticketdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -83249,9 +83427,9 @@ "source_location": "L189", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service_ticketsservice_getadmintickets", - "target": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto" + "target": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", + "confidence_score": 1.0 }, { "relation": "references", @@ -83261,9 +83439,9 @@ "source_location": "L132", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service_ticketsservice_replytoticket", - "target": "backend_src_tickets_dto_create_ticket_dto_replyticketdto" + "target": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -83273,9 +83451,9 @@ "source_location": "L261", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service_ticketsservice_updateticketstatus", - "target": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto" + "target": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -83285,9 +83463,9 @@ "source_location": "L131", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_addaddress", - "target": "backend_src_users_dto_address_dto_addressdto" + "target": "backend_src_users_dto_address_dto_addressdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -83297,9 +83475,9 @@ "source_location": "L44", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_constructor", - "target": "backend_src_users_users_service_usersservice" + "target": "backend_src_users_users_service_usersservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -83309,9 +83487,9 @@ "source_location": "L159", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_updateaddress", - "target": "backend_src_users_dto_address_dto_addressdto" + "target": "backend_src_users_dto_address_dto_addressdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -83321,9 +83499,9 @@ "source_location": "L103", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_controller_userscontroller_updateprofile", - "target": "backend_src_users_dto_update_profile_dto_updateprofiledto" + "target": "backend_src_users_dto_update_profile_dto_updateprofiledto", + "confidence_score": 1.0 }, { "relation": "references", @@ -83333,9 +83511,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_service_usersservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -83345,9 +83523,9 @@ "source_location": "L125", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_service_usersservice_update", - "target": "backend_src_users_dto_update_profile_dto_updateprofiledto" + "target": "backend_src_users_dto_update_profile_dto_updateprofiledto", + "confidence_score": 1.0 }, { "relation": "references", @@ -83357,9 +83535,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller_constructor", - "target": "backend_src_videos_videos_service_videosservice" + "target": "backend_src_videos_videos_service_videosservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -83369,9 +83547,9 @@ "source_location": "L48", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller_create", - "target": "backend_src_videos_dto_create_video_dto_createvideodto" + "target": "backend_src_videos_dto_create_video_dto_createvideodto", + "confidence_score": 1.0 }, { "relation": "references", @@ -83381,9 +83559,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_videos_videos_controller_videoscontroller_findall", - "target": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto" + "target": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", + "confidence_score": 1.0 }, { "relation": "references", @@ -83393,9 +83571,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_videos_videos_service_videosservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -83405,9 +83583,9 @@ "source_location": "L75", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_videos_videos_service_videosservice_create", - "target": "backend_src_videos_dto_create_video_dto_createvideodto" + "target": "backend_src_videos_dto_create_video_dto_createvideodto", + "confidence_score": 1.0 }, { "relation": "references", @@ -83417,9 +83595,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", - "target": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto" + "target": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", + "confidence_score": 1.0 }, { "relation": "references", @@ -83429,9 +83607,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_constructor", - "target": "backend_src_wholesale_wholesale_service_wholesaleservice" + "target": "backend_src_wholesale_wholesale_service_wholesaleservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -83441,9 +83619,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_service_wholesaleservice_applyforwholesale", - "target": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto" + "target": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", + "confidence_score": 1.0 }, { "relation": "references", @@ -83453,9 +83631,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_service_wholesaleservice_constructor", - "target": "backend_src_common_services_sms_service_smsservice" + "target": "backend_src_common_services_sms_service_smsservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -83465,9 +83643,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_service_wholesaleservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -83477,9 +83655,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wiki_wiki_controller_wikicontroller_constructor", - "target": "backend_src_wiki_wiki_service_wikiservice" + "target": "backend_src_wiki_wiki_service_wikiservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -83489,9 +83667,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wiki_wiki_controller_wikicontroller_findall", - "target": "backend_src_common_dto_pagination_dto_paginationdto" + "target": "backend_src_common_dto_pagination_dto_paginationdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -83501,9 +83679,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wiki_wiki_service_wikiservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "references", @@ -83513,9 +83691,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wiki_wiki_service_wikiservice_findall", - "target": "backend_src_common_dto_pagination_dto_paginationdto" + "target": "backend_src_common_dto_pagination_dto_paginationdto", + "confidence_score": 1.0 }, { "relation": "references", @@ -83525,9 +83703,9 @@ "source_location": "L216", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice_productservice_getproducts", - "target": "frontend_application_lib_data_products_pettype" + "target": "frontend_application_lib_data_products_pettype", + "confidence_score": 1.0 }, { "relation": "references", @@ -83537,9 +83715,9 @@ "source_location": "L83", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend", - "target": "frontend_application_lib_data_products_product" + "target": "frontend_application_lib_data_products_product", + "confidence_score": 1.0 }, { "relation": "implements", @@ -83549,9 +83727,9 @@ "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" + "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", + "confidence_score": 1.0 }, { "relation": "inherits", @@ -83561,9 +83739,9 @@ "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" + "target": "backend_src_common_dto_pagination_dto_paginationdto", + "confidence_score": 1.0 }, { "relation": "inherits", @@ -83573,9 +83751,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_dto_get_products_dto_getproductsdto", - "target": "backend_src_common_dto_pagination_dto_paginationdto" + "target": "backend_src_common_dto_pagination_dto_paginationdto", + "confidence_score": 1.0 }, { "relation": "inherits", @@ -83585,9 +83763,9 @@ "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_createvideodto" + "target": "backend_src_videos_dto_create_video_dto_createvideodto", + "confidence_score": 1.0 }, { "relation": "inherits", @@ -83597,9 +83775,9 @@ "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_common_dto_pagination_dto_paginationdto" + "target": "backend_src_common_dto_pagination_dto_paginationdto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -83608,9 +83786,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "agents", - "target": "agents_graphify" + "target": "agents_graphify", + "confidence_score": 1.0 }, { "relation": "contains", @@ -83619,9 +83797,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "agents_rules_graphify", - "target": "agents_rules_graphify_graphify" + "target": "agents_rules_graphify_graphify", + "confidence_score": 1.0 }, { "relation": "contains", @@ -83630,9 +83808,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "agents_workflows_graphify", - "target": "agents_workflows_graphify_workflow_graphify" + "target": "agents_workflows_graphify_workflow_graphify", + "confidence_score": 1.0 }, { "relation": "contains", @@ -83641,9 +83819,9 @@ "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" + "target": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", + "confidence_score": 1.0 }, { "relation": "contains", @@ -83652,9 +83830,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", - "target": "ai_agency_agency_activation" + "target": "ai_agency_agency_activation", + "confidence_score": 1.0 }, { "relation": "contains", @@ -83663,9 +83841,9 @@ "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" + "target": "ai_agency_agency_pipeline_c_add_specific_feature_add_feature", + "confidence_score": 1.0 }, { "relation": "contains", @@ -83674,9 +83852,9 @@ "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" + "target": "ai_agency_agency_pipeline_d_content_seo_only_content_creation", + "confidence_score": 1.0 }, { "relation": "contains", @@ -83685,9 +83863,9 @@ "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" + "target": "ai_agency_agency_task_execution_loop_all_pipelines", + "confidence_score": 1.0 }, { "relation": "contains", @@ -83696,9 +83874,9 @@ "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" + "target": "ai_agency_agency_state_machine_active_agent_tracking", + "confidence_score": 1.0 }, { "relation": "contains", @@ -83707,9 +83885,9 @@ "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" + "target": "ai_agency_agency_state_json_template_full_schema_v3", + "confidence_score": 1.0 }, { "relation": "contains", @@ -83718,9 +83896,9 @@ "source_location": "L239", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", - "target": "ai_agency_agency_agent_directory_reference" + "target": "ai_agency_agency_agent_directory_reference", + "confidence_score": 1.0 }, { "relation": "contains", @@ -83729,9 +83907,9 @@ "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" + "target": "ai_agency_agency_step_1_detect_project_intent", + "confidence_score": 1.0 }, { "relation": "contains", @@ -83740,9 +83918,9 @@ "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" + "target": "ai_agency_agency_real_data_policy", + "confidence_score": 1.0 }, { "relation": "contains", @@ -83751,9 +83929,9 @@ "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" + "target": "ai_agency_agency_your_identity", + "confidence_score": 1.0 }, { "relation": "contains", @@ -83762,9 +83940,9 @@ "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" + "target": "ai_agency_agency_step_2_token_limit_context_resume_protocol_critical", + "confidence_score": 1.0 }, { "relation": "contains", @@ -83773,9 +83951,9 @@ "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" + "target": "ai_agency_agency_pipeline_a_new_project_greenfield", + "confidence_score": 1.0 }, { "relation": "contains", @@ -83784,9 +83962,9 @@ "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" + "target": "ai_agency_agency_pipeline_b_review_improve_existing_project_review_and_plan", + "confidence_score": 1.0 }, { "relation": "contains", @@ -83795,9 +83973,9 @@ "source_location": "L104", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "ai_agency_agency_phase_2_master_synthesis_02_product_manager_in_synthesis_mode", + "confidence_score": 1.0 }, { "relation": "contains", @@ -83806,9 +83984,9 @@ "source_location": "L114", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agency_pipeline_b_review_improve_existing_project_review_and_plan", - "target": "ai_agency_agency_phase_3_execution_same_as_always" + "target": "ai_agency_agency_phase_3_execution_same_as_always", + "confidence_score": 1.0 }, { "relation": "contains", @@ -83817,9 +83995,9 @@ "source_location": "L79", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "ai_agency_agency_phase_1_specialist_review_all_agents_read_none_write_code_yet", + "confidence_score": 1.0 }, { "relation": "contains", @@ -83828,9 +84006,9 @@ "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" + "target": "ai_agency_agents_00_intake_role_core_objective", + "confidence_score": 1.0 }, { "relation": "contains", @@ -83839,9 +84017,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_00_intake_operational_rules_boundaries", - "target": "ai_agency_agents_00_intake_1_ask_don_t_assume" + "target": "ai_agency_agents_00_intake_1_ask_don_t_assume", + "confidence_score": 1.0 }, { "relation": "contains", @@ -83850,9 +84028,9 @@ "source_location": "L58", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_00_intake_operational_rules_boundaries", - "target": "ai_agency_agents_00_intake_2_forbidden_actions" + "target": "ai_agency_agents_00_intake_2_forbidden_actions", + "confidence_score": 1.0 }, { "relation": "contains", @@ -83861,9 +84039,9 @@ "source_location": "L105", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_00_intake_role_core_objective", - "target": "ai_agency_agents_00_intake_expected_json_output_schema" + "target": "ai_agency_agents_00_intake_expected_json_output_schema", + "confidence_score": 1.0 }, { "relation": "contains", @@ -83872,9 +84050,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_00_intake_role_core_objective", - "target": "ai_agency_agents_00_intake_brownfield_detection" + "target": "ai_agency_agents_00_intake_brownfield_detection", + "confidence_score": 1.0 }, { "relation": "contains", @@ -83883,9 +84061,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_00_intake_role_core_objective", - "target": "ai_agency_agents_00_intake_operational_rules_boundaries" + "target": "ai_agency_agents_00_intake_operational_rules_boundaries", + "confidence_score": 1.0 }, { "relation": "contains", @@ -83894,9 +84072,9 @@ "source_location": "L65", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_00_intake_role_core_objective", - "target": "ai_agency_agents_00_intake_required_output_artifacts_what_files_to_write_update" + "target": "ai_agency_agents_00_intake_required_output_artifacts_what_files_to_write_update", + "confidence_score": 1.0 }, { "relation": "contains", @@ -83905,9 +84083,9 @@ "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" + "target": "ai_agency_agents_00_intake_strict_input_specifications_what_files_to_read", + "confidence_score": 1.0 }, { "relation": "contains", @@ -83916,9 +84094,9 @@ "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" + "target": "ai_agency_agents_01_auditor_role_core_objective", + "confidence_score": 1.0 }, { "relation": "contains", @@ -83927,9 +84105,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_01_auditor_operational_rules_boundaries", - "target": "ai_agency_agents_01_auditor_1_detect_tech_stack_first_universal" + "target": "ai_agency_agents_01_auditor_1_detect_tech_stack_first_universal", + "confidence_score": 1.0 }, { "relation": "contains", @@ -83938,9 +84116,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_01_auditor_operational_rules_boundaries", - "target": "ai_agency_agents_01_auditor_2_explicit_scoring_methodology_universal" + "target": "ai_agency_agents_01_auditor_2_explicit_scoring_methodology_universal", + "confidence_score": 1.0 }, { "relation": "contains", @@ -83949,9 +84127,9 @@ "source_location": "L47", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_01_auditor_operational_rules_boundaries", - "target": "ai_agency_agents_01_auditor_3_code_coverage_ratio_rule" + "target": "ai_agency_agents_01_auditor_3_code_coverage_ratio_rule", + "confidence_score": 1.0 }, { "relation": "contains", @@ -83960,9 +84138,9 @@ "source_location": "L54", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_01_auditor_operational_rules_boundaries", - "target": "ai_agency_agents_01_auditor_4_deep_directory_scanning" + "target": "ai_agency_agents_01_auditor_4_deep_directory_scanning", + "confidence_score": 1.0 }, { "relation": "contains", @@ -83971,9 +84149,9 @@ "source_location": "L58", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_01_auditor_operational_rules_boundaries", - "target": "ai_agency_agents_01_auditor_5_forbidden_actions" + "target": "ai_agency_agents_01_auditor_5_forbidden_actions", + "confidence_score": 1.0 }, { "relation": "contains", @@ -83982,9 +84160,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_01_auditor_role_core_objective", - "target": "ai_agency_agents_01_auditor_operational_rules_boundaries" + "target": "ai_agency_agents_01_auditor_operational_rules_boundaries", + "confidence_score": 1.0 }, { "relation": "contains", @@ -83993,9 +84171,9 @@ "source_location": "L66", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_01_auditor_role_core_objective", - "target": "ai_agency_agents_01_auditor_required_output_artifacts_what_files_to_write_update" + "target": "ai_agency_agents_01_auditor_required_output_artifacts_what_files_to_write_update", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84004,9 +84182,9 @@ "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" + "target": "ai_agency_agents_01_auditor_strict_input_specifications_what_files_to_read", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84015,9 +84193,9 @@ "source_location": "L74", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_01_auditor_role_core_objective", - "target": "ai_agency_agents_01_auditor_expected_json_output_schema" + "target": "ai_agency_agents_01_auditor_expected_json_output_schema", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84026,9 +84204,9 @@ "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" + "target": "ai_agency_agents_02_ceo_role_core_objective", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84037,9 +84215,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_02_ceo_operational_rules_boundaries", - "target": "ai_agency_agents_02_ceo_1_mode_direction_decision" + "target": "ai_agency_agents_02_ceo_1_mode_direction_decision", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84048,9 +84226,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_02_ceo_operational_rules_boundaries", - "target": "ai_agency_agents_02_ceo_2_brownfield_strategic_evaluation" + "target": "ai_agency_agents_02_ceo_2_brownfield_strategic_evaluation", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84059,9 +84237,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_02_ceo_operational_rules_boundaries", - "target": "ai_agency_agents_02_ceo_3_risk_assessment" + "target": "ai_agency_agents_02_ceo_3_risk_assessment", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84070,9 +84248,9 @@ "source_location": "L39", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_02_ceo_operational_rules_boundaries", - "target": "ai_agency_agents_02_ceo_4_forbidden_actions" + "target": "ai_agency_agents_02_ceo_4_forbidden_actions", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84081,9 +84259,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_02_ceo_role_core_objective", - "target": "ai_agency_agents_02_ceo_operational_rules_boundaries" + "target": "ai_agency_agents_02_ceo_operational_rules_boundaries", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84092,9 +84270,9 @@ "source_location": "L47", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_02_ceo_role_core_objective", - "target": "ai_agency_agents_02_ceo_required_output_artifacts_what_files_to_write_update" + "target": "ai_agency_agents_02_ceo_required_output_artifacts_what_files_to_write_update", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84103,9 +84281,9 @@ "source_location": "L56", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_02_ceo_role_core_objective", - "target": "ai_agency_agents_02_ceo_expected_json_output_schema" + "target": "ai_agency_agents_02_ceo_expected_json_output_schema", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84114,9 +84292,9 @@ "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" + "target": "ai_agency_agents_02_ceo_strict_input_specifications_what_files_to_read", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84125,9 +84303,9 @@ "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" + "target": "ai_agency_agents_03_product_manager_role_core_objective", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84136,9 +84314,9 @@ "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" + "target": "ai_agency_agents_03_product_manager_strict_input_specifications_what_files_to_read", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84147,9 +84325,9 @@ "source_location": "L110", "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_3_brownfield_completeness_rule" + "target": "ai_agency_agents_03_product_manager_3_brownfield_completeness_rule", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84158,9 +84336,9 @@ "source_location": "L116", "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_4_role_assignment_rules" + "target": "ai_agency_agents_03_product_manager_4_role_assignment_rules", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84169,9 +84347,9 @@ "source_location": "L126", "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_5_dependency_tracking_strict" + "target": "ai_agency_agents_03_product_manager_5_dependency_tracking_strict", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84180,9 +84358,9 @@ "source_location": "L132", "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_6_priority_assignment" + "target": "ai_agency_agents_03_product_manager_6_priority_assignment", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84191,9 +84369,9 @@ "source_location": "L140", "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_7_forbidden_actions" + "target": "ai_agency_agents_03_product_manager_7_forbidden_actions", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84202,9 +84380,9 @@ "source_location": "L86", "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_1_hierarchical_decomposition_algorithm_3_tier" + "target": "ai_agency_agents_03_product_manager_1_hierarchical_decomposition_algorithm_3_tier", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84213,9 +84391,9 @@ "source_location": "L98", "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_2_sub_step_definition_required_for_all_tasks" + "target": "ai_agency_agents_03_product_manager_2_sub_step_definition_required_for_all_tasks", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84224,9 +84402,9 @@ "source_location": "L149", "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_required_output_artifacts_what_files_to_write_update" + "target": "ai_agency_agents_03_product_manager_required_output_artifacts_what_files_to_write_update", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84235,9 +84413,9 @@ "source_location": "L194", "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_expected_json_output_schema" + "target": "ai_agency_agents_03_product_manager_expected_json_output_schema", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84246,9 +84424,9 @@ "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" + "target": "ai_agency_agents_03_product_manager_synthesis_mode_called_after_review_phase_completes", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84257,9 +84435,9 @@ "source_location": "L72", "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_decompose_mode_normal_operation_new_projects" + "target": "ai_agency_agents_03_product_manager_decompose_mode_normal_operation_new_projects", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84268,9 +84446,9 @@ "source_location": "L84", "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_operational_rules_boundaries" + "target": "ai_agency_agents_03_product_manager_operational_rules_boundaries", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84279,9 +84457,9 @@ "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" + "target": "ai_agency_agents_03_product_manager_what_you_read_all_of_these_the_full_picture", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84290,9 +84468,9 @@ "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" + "target": "ai_agency_agents_03_product_manager_synthesis_rules", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84301,9 +84479,9 @@ "source_location": "L62", "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_output_of_synthesis_mode" + "target": "ai_agency_agents_03_product_manager_output_of_synthesis_mode", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84312,9 +84490,9 @@ "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" + "target": "ai_agency_agents_04_architect_role_core_objective", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84323,9 +84501,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_04_architect_operational_rules_boundaries", - "target": "ai_agency_agents_04_architect_1_stack_detection_brownfield" + "target": "ai_agency_agents_04_architect_1_stack_detection_brownfield", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84334,9 +84512,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_04_architect_operational_rules_boundaries", - "target": "ai_agency_agents_04_architect_2_stack_selection_greenfield" + "target": "ai_agency_agents_04_architect_2_stack_selection_greenfield", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84345,9 +84523,9 @@ "source_location": "L40", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_04_architect_operational_rules_boundaries", - "target": "ai_agency_agents_04_architect_3_single_non_negotiable_stack_choice" + "target": "ai_agency_agents_04_architect_3_single_non_negotiable_stack_choice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84356,9 +84534,9 @@ "source_location": "L45", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_04_architect_operational_rules_boundaries", - "target": "ai_agency_agents_04_architect_4_tech_stack_must_be_written_to_state_json" + "target": "ai_agency_agents_04_architect_4_tech_stack_must_be_written_to_state_json", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84367,9 +84545,9 @@ "source_location": "L61", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_04_architect_operational_rules_boundaries", - "target": "ai_agency_agents_04_architect_5_directory_layout" + "target": "ai_agency_agents_04_architect_5_directory_layout", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84378,9 +84556,9 @@ "source_location": "L65", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_04_architect_operational_rules_boundaries", - "target": "ai_agency_agents_04_architect_6_openapi_api_contract" + "target": "ai_agency_agents_04_architect_6_openapi_api_contract", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84389,9 +84567,9 @@ "source_location": "L71", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_04_architect_operational_rules_boundaries", - "target": "ai_agency_agents_04_architect_7_forbidden_actions" + "target": "ai_agency_agents_04_architect_7_forbidden_actions", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84400,9 +84578,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_04_architect_role_core_objective", - "target": "ai_agency_agents_04_architect_operational_rules_boundaries" + "target": "ai_agency_agents_04_architect_operational_rules_boundaries", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84411,9 +84589,9 @@ "source_location": "L79", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_04_architect_role_core_objective", - "target": "ai_agency_agents_04_architect_required_output_artifacts_what_files_to_write_update" + "target": "ai_agency_agents_04_architect_required_output_artifacts_what_files_to_write_update", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84422,9 +84600,9 @@ "source_location": "L88", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_04_architect_role_core_objective", - "target": "ai_agency_agents_04_architect_expected_json_output_schema" + "target": "ai_agency_agents_04_architect_expected_json_output_schema", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84433,9 +84611,9 @@ "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" + "target": "ai_agency_agents_04_architect_strict_input_specifications_what_files_to_read", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84444,9 +84622,9 @@ "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" + "target": "ai_agency_agents_05_dev_backend_role_core_objective", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84455,9 +84633,9 @@ "source_location": "L110", "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_1_always_read_tech_stack_first" + "target": "ai_agency_agents_05_dev_backend_1_always_read_tech_stack_first", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84466,9 +84644,9 @@ "source_location": "L121", "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_2_sub_step_execution_token_resume_support" + "target": "ai_agency_agents_05_dev_backend_2_sub_step_execution_token_resume_support", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84477,9 +84655,9 @@ "source_location": "L131", "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_3_mandatory_test_authoring" + "target": "ai_agency_agents_05_dev_backend_3_mandatory_test_authoring", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84488,9 +84666,9 @@ "source_location": "L138", "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_4_code_quality_standards" + "target": "ai_agency_agents_05_dev_backend_4_code_quality_standards", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84499,9 +84677,9 @@ "source_location": "L146", "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_5_file_scope_boundary" + "target": "ai_agency_agents_05_dev_backend_5_file_scope_boundary", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84510,9 +84688,9 @@ "source_location": "L151", "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_6_forbidden_actions" + "target": "ai_agency_agents_05_dev_backend_6_forbidden_actions", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84521,9 +84699,9 @@ "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" + "target": "ai_agency_agents_05_dev_backend_your_domain_what_you_review_only_these_areas", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84532,9 +84710,9 @@ "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" + "target": "ai_agency_agents_05_dev_backend_what_you_do_not_review", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84543,9 +84721,9 @@ "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" + "target": "ai_agency_agents_05_dev_backend_what_you_look_for_backend_expert_eyes_only", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84554,9 +84732,9 @@ "source_location": "L60", "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_output" + "target": "ai_agency_agents_05_dev_backend_output", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84565,9 +84743,9 @@ "source_location": "L108", "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_operational_rules_boundaries" + "target": "ai_agency_agents_05_dev_backend_operational_rules_boundaries", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84576,9 +84754,9 @@ "source_location": "L160", "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_required_output_artifacts_what_files_to_write_update" + "target": "ai_agency_agents_05_dev_backend_required_output_artifacts_what_files_to_write_update", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84587,9 +84765,9 @@ "source_location": "L172", "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_expected_json_output_schema" + "target": "ai_agency_agents_05_dev_backend_expected_json_output_schema", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84598,9 +84776,9 @@ "source_location": "L7", "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_review_mode_called_during_review_phase" + "target": "ai_agency_agents_05_dev_backend_review_mode_called_during_review_phase", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84609,9 +84787,9 @@ "source_location": "L94", "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_implement_mode_normal_operation" + "target": "ai_agency_agents_05_dev_backend_implement_mode_normal_operation", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84620,9 +84798,9 @@ "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" + "target": "ai_agency_agents_05_dev_backend_strict_input_specifications_what_files_to_read", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84631,9 +84809,9 @@ "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" + "target": "ai_agency_agents_06_dev_frontend_role_core_objective", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84642,9 +84820,9 @@ "source_location": "L119", "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_1_always_read_tech_stack_first" + "target": "ai_agency_agents_06_dev_frontend_1_always_read_tech_stack_first", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84653,9 +84831,9 @@ "source_location": "L131", "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_2_sub_step_execution_token_resume_support" + "target": "ai_agency_agents_06_dev_frontend_2_sub_step_execution_token_resume_support", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84664,9 +84842,9 @@ "source_location": "L141", "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_3_api_mocking_requirement" + "target": "ai_agency_agents_06_dev_frontend_3_api_mocking_requirement", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84675,9 +84853,9 @@ "source_location": "L148", "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_4_modular_component_architecture" + "target": "ai_agency_agents_06_dev_frontend_4_modular_component_architecture", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84686,9 +84864,9 @@ "source_location": "L157", "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_5_responsive_design_mandatory" + "target": "ai_agency_agents_06_dev_frontend_5_responsive_design_mandatory", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84697,9 +84875,9 @@ "source_location": "L163", "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_6_file_scope_boundary" + "target": "ai_agency_agents_06_dev_frontend_6_file_scope_boundary", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84708,9 +84886,9 @@ "source_location": "L167", "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_7_forbidden_actions" + "target": "ai_agency_agents_06_dev_frontend_7_forbidden_actions", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84719,9 +84897,9 @@ "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" + "target": "ai_agency_agents_06_dev_frontend_your_domain_what_you_review_only_these_areas", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84730,9 +84908,9 @@ "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" + "target": "ai_agency_agents_06_dev_frontend_what_you_do_not_review", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84741,9 +84919,9 @@ "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" + "target": "ai_agency_agents_06_dev_frontend_what_you_look_for_frontend_expert_eyes_only", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84752,9 +84930,9 @@ "source_location": "L65", "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_output" + "target": "ai_agency_agents_06_dev_frontend_output", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84763,9 +84941,9 @@ "source_location": "L103", "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_implement_mode_normal_operation" + "target": "ai_agency_agents_06_dev_frontend_implement_mode_normal_operation", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84774,9 +84952,9 @@ "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" + "target": "ai_agency_agents_06_dev_frontend_strict_input_specifications_what_files_to_read", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84785,9 +84963,9 @@ "source_location": "L117", "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_operational_rules_boundaries" + "target": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84796,9 +84974,9 @@ "source_location": "L175", "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_required_output_artifacts_what_files_to_write_update" + "target": "ai_agency_agents_06_dev_frontend_required_output_artifacts_what_files_to_write_update", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84807,9 +84985,9 @@ "source_location": "L187", "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_expected_json_output_schema" + "target": "ai_agency_agents_06_dev_frontend_expected_json_output_schema", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84818,9 +84996,9 @@ "source_location": "L7", "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_review_mode_called_during_review_phase" + "target": "ai_agency_agents_06_dev_frontend_review_mode_called_during_review_phase", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84829,9 +85007,9 @@ "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" + "target": "ai_agency_agents_07_qa_engineer_role_core_objective", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84840,9 +85018,9 @@ "source_location": "L18", "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_1_detect_test_runner_from_tech_stack" + "target": "ai_agency_agents_07_qa_engineer_1_detect_test_runner_from_tech_stack", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84851,9 +85029,9 @@ "source_location": "L33", "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_2_execution_output_capture_mandatory" + "target": "ai_agency_agents_07_qa_engineer_2_execution_output_capture_mandatory", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84862,9 +85040,9 @@ "source_location": "L41", "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_3_acceptance_criteria_verification" + "target": "ai_agency_agents_07_qa_engineer_3_acceptance_criteria_verification", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84873,9 +85051,9 @@ "source_location": "L48", "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_4_failure_routing_protocol" + "target": "ai_agency_agents_07_qa_engineer_4_failure_routing_protocol", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84884,9 +85062,9 @@ "source_location": "L64", "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_5_success_routing_protocol" + "target": "ai_agency_agents_07_qa_engineer_5_success_routing_protocol", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84895,9 +85073,9 @@ "source_location": "L74", "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_6_forbidden_actions" + "target": "ai_agency_agents_07_qa_engineer_6_forbidden_actions", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84906,9 +85084,9 @@ "source_location": "L16", "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_operational_rules_boundaries" + "target": "ai_agency_agents_07_qa_engineer_operational_rules_boundaries", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84917,9 +85095,9 @@ "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" + "target": "ai_agency_agents_07_qa_engineer_strict_input_specifications_what_files_to_read", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84928,9 +85106,9 @@ "source_location": "L82", "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_required_output_artifacts_what_files_to_write_update" + "target": "ai_agency_agents_07_qa_engineer_required_output_artifacts_what_files_to_write_update", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84939,9 +85117,9 @@ "source_location": "L91", "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_expected_json_output_schema" + "target": "ai_agency_agents_07_qa_engineer_expected_json_output_schema", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84950,9 +85128,9 @@ "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" + "target": "ai_agency_agents_08_visual_qa_role_core_objective", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84961,9 +85139,9 @@ "source_location": "L115", "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_1_framework_aware_analysis" + "target": "ai_agency_agents_08_visual_qa_1_framework_aware_analysis", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84972,9 +85150,9 @@ "source_location": "L126", "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_2_dom_semantic_structure_analysis" + "target": "ai_agency_agents_08_visual_qa_2_dom_semantic_structure_analysis", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84983,9 +85161,9 @@ "source_location": "L134", "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_3_accessibility_compliance" + "target": "ai_agency_agents_08_visual_qa_3_accessibility_compliance", + "confidence_score": 1.0 }, { "relation": "contains", @@ -84994,9 +85172,9 @@ "source_location": "L143", "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_4_responsive_layout_verification" + "target": "ai_agency_agents_08_visual_qa_4_responsive_layout_verification", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85005,9 +85183,9 @@ "source_location": "L155", "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_5_fallback_inspection_mode" + "target": "ai_agency_agents_08_visual_qa_5_fallback_inspection_mode", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85016,9 +85194,9 @@ "source_location": "L162", "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_6_defect_routing_protocol" + "target": "ai_agency_agents_08_visual_qa_6_defect_routing_protocol", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85027,9 +85205,9 @@ "source_location": "L174", "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_7_forbidden_actions" + "target": "ai_agency_agents_08_visual_qa_7_forbidden_actions", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85038,9 +85216,9 @@ "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" + "target": "ai_agency_agents_08_visual_qa_your_domain_what_you_review_only_these_areas", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85049,9 +85227,9 @@ "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" + "target": "ai_agency_agents_08_visual_qa_what_you_do_not_review", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85060,9 +85238,9 @@ "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" + "target": "ai_agency_agents_08_visual_qa_what_you_look_for_ux_expert_eyes_only", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85071,9 +85249,9 @@ "source_location": "L63", "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_output" + "target": "ai_agency_agents_08_visual_qa_output", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85082,9 +85260,9 @@ "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" + "target": "ai_agency_agents_08_visual_qa_strict_input_specifications_what_files_to_read", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85093,9 +85271,9 @@ "source_location": "L113", "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_operational_rules_boundaries" + "target": "ai_agency_agents_08_visual_qa_operational_rules_boundaries", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85104,9 +85282,9 @@ "source_location": "L182", "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_required_output_artifacts_what_files_to_write_update" + "target": "ai_agency_agents_08_visual_qa_required_output_artifacts_what_files_to_write_update", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85115,9 +85293,9 @@ "source_location": "L190", "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_expected_json_output_schema" + "target": "ai_agency_agents_08_visual_qa_expected_json_output_schema", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85126,9 +85304,9 @@ "source_location": "L9", "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_review_mode_called_during_review_phase" + "target": "ai_agency_agents_08_visual_qa_review_mode_called_during_review_phase", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85137,9 +85315,9 @@ "source_location": "L99", "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_inspect_mode_normal_operation_post_task_verification" + "target": "ai_agency_agents_08_visual_qa_inspect_mode_normal_operation_post_task_verification", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85148,9 +85326,9 @@ "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" + "target": "ai_agency_agents_09_devops_security_role_core_objective", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85159,9 +85337,9 @@ "source_location": "L108", "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_1_active_secret_scanning_all_modified_files" + "target": "ai_agency_agents_09_devops_security_1_active_secret_scanning_all_modified_files", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85170,9 +85348,9 @@ "source_location": "L120", "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_2_docker_container_verification_if_dockerfile_exists" + "target": "ai_agency_agents_09_devops_security_2_docker_container_verification_if_dockerfile_exists", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85181,9 +85359,9 @@ "source_location": "L133", "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_3_ci_cd_basic_check_if_github_workflows_exists" + "target": "ai_agency_agents_09_devops_security_3_ci_cd_basic_check_if_github_workflows_exists", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85192,9 +85370,9 @@ "source_location": "L138", "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_4_failure_routing_protocol" + "target": "ai_agency_agents_09_devops_security_4_failure_routing_protocol", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85203,9 +85381,9 @@ "source_location": "L150", "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_5_forbidden_actions" + "target": "ai_agency_agents_09_devops_security_5_forbidden_actions", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85214,9 +85392,9 @@ "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" + "target": "ai_agency_agents_09_devops_security_your_domain_what_you_review_only_these_areas", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85225,9 +85403,9 @@ "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" + "target": "ai_agency_agents_09_devops_security_what_you_do_not_review", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85236,9 +85414,9 @@ "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" + "target": "ai_agency_agents_09_devops_security_what_you_look_for_security_expert_eyes_only", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85247,9 +85425,9 @@ "source_location": "L58", "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_output" + "target": "ai_agency_agents_09_devops_security_output", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85258,9 +85436,9 @@ "source_location": "L106", "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_operational_rules_boundaries" + "target": "ai_agency_agents_09_devops_security_operational_rules_boundaries", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85269,9 +85447,9 @@ "source_location": "L158", "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_required_output_artifacts_what_files_to_write_update" + "target": "ai_agency_agents_09_devops_security_required_output_artifacts_what_files_to_write_update", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85280,9 +85458,9 @@ "source_location": "L168", "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_expected_json_output_schema" + "target": "ai_agency_agents_09_devops_security_expected_json_output_schema", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85291,9 +85469,9 @@ "source_location": "L7", "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_review_mode_called_during_review_phase" + "target": "ai_agency_agents_09_devops_security_review_mode_called_during_review_phase", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85302,9 +85480,9 @@ "source_location": "L93", "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_enforce_mode_normal_operation" + "target": "ai_agency_agents_09_devops_security_enforce_mode_normal_operation", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85313,9 +85491,9 @@ "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" + "target": "ai_agency_agents_09_devops_security_strict_input_specifications_what_files_to_read", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85324,9 +85502,9 @@ "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" + "target": "ai_agency_agents_10_tech_writer_role_core_objective", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85335,9 +85513,9 @@ "source_location": "L23", "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_1_mark_active_task_as_complete" + "target": "ai_agency_agents_10_tech_writer_1_mark_active_task_as_complete", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85346,9 +85524,9 @@ "source_location": "L30", "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_2_documentation_updates" + "target": "ai_agency_agents_10_tech_writer_2_documentation_updates", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85357,9 +85535,9 @@ "source_location": "L44", "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_3_dynamic_routing_protocol_critical" + "target": "ai_agency_agents_10_tech_writer_3_dynamic_routing_protocol_critical", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85368,9 +85546,9 @@ "source_location": "L72", "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_4_backlog_insufficiency_check" + "target": "ai_agency_agents_10_tech_writer_4_backlog_insufficiency_check", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85379,9 +85557,9 @@ "source_location": "L77", "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_5_forbidden_actions" + "target": "ai_agency_agents_10_tech_writer_5_forbidden_actions", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85390,9 +85568,9 @@ "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" + "target": "ai_agency_agents_10_tech_writer_strict_input_specifications_what_files_to_read", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85401,9 +85579,9 @@ "source_location": "L21", "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_operational_rules_boundaries" + "target": "ai_agency_agents_10_tech_writer_operational_rules_boundaries", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85412,9 +85590,9 @@ "source_location": "L84", "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_required_output_artifacts_what_files_to_write_update" + "target": "ai_agency_agents_10_tech_writer_required_output_artifacts_what_files_to_write_update", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85423,9 +85601,9 @@ "source_location": "L96", "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_expected_json_output_schema" + "target": "ai_agency_agents_10_tech_writer_expected_json_output_schema", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85434,9 +85612,9 @@ "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" + "target": "ai_agency_agents_11_deploy_role_core_objective", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85445,9 +85623,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_11_deploy_operational_rules_boundaries", - "target": "ai_agency_agents_11_deploy_1_pre_deployment_checklist" + "target": "ai_agency_agents_11_deploy_1_pre_deployment_checklist", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85456,9 +85634,9 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_11_deploy_operational_rules_boundaries", - "target": "ai_agency_agents_11_deploy_2_build_verification" + "target": "ai_agency_agents_11_deploy_2_build_verification", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85467,9 +85645,9 @@ "source_location": "L52", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_11_deploy_operational_rules_boundaries", - "target": "ai_agency_agents_11_deploy_3_deployment_strategy_based_on_target" + "target": "ai_agency_agents_11_deploy_3_deployment_strategy_based_on_target", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85478,9 +85656,9 @@ "source_location": "L75", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_11_deploy_operational_rules_boundaries", - "target": "ai_agency_agents_11_deploy_4_post_deployment_health_check" + "target": "ai_agency_agents_11_deploy_4_post_deployment_health_check", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85489,9 +85667,9 @@ "source_location": "L82", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_11_deploy_operational_rules_boundaries", - "target": "ai_agency_agents_11_deploy_5_forbidden_actions" + "target": "ai_agency_agents_11_deploy_5_forbidden_actions", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85500,9 +85678,9 @@ "source_location": "L102", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_11_deploy_role_core_objective", - "target": "ai_agency_agents_11_deploy_expected_json_output_schema" + "target": "ai_agency_agents_11_deploy_expected_json_output_schema", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85511,9 +85689,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_11_deploy_role_core_objective", - "target": "ai_agency_agents_11_deploy_operational_rules_boundaries" + "target": "ai_agency_agents_11_deploy_operational_rules_boundaries", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85522,9 +85700,9 @@ "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" + "target": "ai_agency_agents_11_deploy_strict_input_specifications_what_files_to_read", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85533,9 +85711,9 @@ "source_location": "L90", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_agents_11_deploy_role_core_objective", - "target": "ai_agency_agents_11_deploy_required_output_artifacts_what_files_to_write_update" + "target": "ai_agency_agents_11_deploy_required_output_artifacts_what_files_to_write_update", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85544,9 +85722,9 @@ "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" + "target": "ai_agency_agents_12_seo_content_role_core_objective", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85555,9 +85733,9 @@ "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" + "target": "ai_agency_agents_12_seo_content_step_1_gather_resources", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85566,9 +85744,9 @@ "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" + "target": "ai_agency_agents_12_seo_content_step_2_seo_strategy", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85577,9 +85755,9 @@ "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" + "target": "ai_agency_agents_12_seo_content_step_3_content_hierarchy", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85588,9 +85766,9 @@ "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" + "target": "ai_agency_agents_12_seo_content_step_4_structured_data_json_ld", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85599,9 +85777,9 @@ "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" + "target": "ai_agency_agents_12_seo_content_step_5_real_content_writing_standards", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85610,9 +85788,9 @@ "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" + "target": "ai_agency_agents_12_seo_content_step_6_image_alt_text", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85621,9 +85799,9 @@ "source_location": "L116", "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_mode_1_review_called_during_review_phase" + "target": "ai_agency_agents_12_seo_content_mode_1_review_called_during_review_phase", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85632,9 +85810,9 @@ "source_location": "L160", "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_mode_2_content_creation_standalone_task_from_backlog" + "target": "ai_agency_agents_12_seo_content_mode_2_content_creation_standalone_task_from_backlog", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85643,9 +85821,9 @@ "source_location": "L231", "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_forbidden_actions" + "target": "ai_agency_agents_12_seo_content_forbidden_actions", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85654,9 +85832,9 @@ "source_location": "L238", "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_file_scope_boundary" + "target": "ai_agency_agents_12_seo_content_file_scope_boundary", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85665,9 +85843,9 @@ "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" + "target": "ai_agency_agents_12_seo_content_your_domain_what_you_review_only_these_areas", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85676,9 +85854,9 @@ "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" + "target": "ai_agency_agents_12_seo_content_what_you_do_not_review", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85687,9 +85865,9 @@ "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" + "target": "ai_agency_agents_12_seo_content_what_you_look_for_seo_expert_eyes_only", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85698,9 +85876,9 @@ "source_location": "L63", "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_output" + "target": "ai_agency_agents_12_seo_content_output", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85709,9 +85887,9 @@ "source_location": "L101", "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_create_mode_normal_operation" + "target": "ai_agency_agents_12_seo_content_create_mode_normal_operation", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85720,9 +85898,9 @@ "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" + "target": "ai_agency_agents_12_seo_content_strict_input_specifications_what_files_to_read", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85731,9 +85909,9 @@ "source_location": "L114", "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_operating_modes" + "target": "ai_agency_agents_12_seo_content_operating_modes", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85742,9 +85920,9 @@ "source_location": "L13", "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_review_mode_called_during_review_phase" + "target": "ai_agency_agents_12_seo_content_review_mode_called_during_review_phase", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85753,9 +85931,9 @@ "source_location": "L229", "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_operational_rules_boundaries" + "target": "ai_agency_agents_12_seo_content_operational_rules_boundaries", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85764,9 +85942,9 @@ "source_location": "L244", "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_required_output_artifacts" + "target": "ai_agency_agents_12_seo_content_required_output_artifacts", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85775,9 +85953,9 @@ "source_location": "L259", "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_expected_json_output_schema" + "target": "ai_agency_agents_12_seo_content_expected_json_output_schema", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85786,9 +85964,9 @@ "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" + "target": "ai_agency_memory_scratchpad_active_agent_working_scratchpad", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85797,9 +85975,9 @@ "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" + "target": "ai_agency_memory_scratchpad_execution_target", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85808,9 +85986,9 @@ "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" + "target": "ai_agency_memory_scratchpad_project_canina_veterinary_e_commerce_system", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85819,9 +85997,9 @@ "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" + "target": "ai_agency_memory_scratchpad_requirements_persona_mandates_intake_user_request", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85830,9 +86008,9 @@ "source_location": "L105", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_orchestrate", - "target": "ai_agency_orchestrate_cmd_next_task" + "target": "ai_agency_orchestrate_cmd_next_task", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85841,9 +86019,9 @@ "source_location": "L128", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_orchestrate", - "target": "ai_agency_orchestrate_cmd_unblock" + "target": "ai_agency_orchestrate_cmd_unblock", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85852,9 +86030,9 @@ "source_location": "L143", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_orchestrate", - "target": "ai_agency_orchestrate_cmd_reset" + "target": "ai_agency_orchestrate_cmd_reset", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85863,9 +86041,9 @@ "source_location": "L180", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_orchestrate", - "target": "ai_agency_orchestrate_main" + "target": "ai_agency_orchestrate_main", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85874,9 +86052,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_orchestrate", - "target": "ai_agency_orchestrate_load_json" + "target": "ai_agency_orchestrate_load_json", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85885,9 +86063,9 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_orchestrate", - "target": "ai_agency_orchestrate_save_json" + "target": "ai_agency_orchestrate_save_json", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85896,9 +86074,9 @@ "source_location": "L41", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_orchestrate", - "target": "ai_agency_orchestrate_cmd_status" + "target": "ai_agency_orchestrate_cmd_status", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85907,9 +86085,9 @@ "source_location": "L75", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_orchestrate", - "target": "ai_agency_orchestrate_cmd_progress" + "target": "ai_agency_orchestrate_cmd_progress", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85918,9 +86096,9 @@ "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" + "target": "ai_agency_specs_api_contract_api_contract_specification", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85929,9 +86107,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_specs_api_contract_api_contract_specification", - "target": "ai_agency_specs_api_contract_1_openapi_3_0_swagger_specification" + "target": "ai_agency_specs_api_contract_1_openapi_3_0_swagger_specification", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85940,9 +86118,9 @@ "source_location": "L55", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_specs_api_contract_api_contract_specification", - "target": "ai_agency_specs_api_contract_2_endpoint_definitions_data_types" + "target": "ai_agency_specs_api_contract_2_endpoint_definitions_data_types", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85951,9 +86129,9 @@ "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" + "target": "ai_agency_specs_architecture_spec_architecture_specification", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85962,9 +86140,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_specs_architecture_spec_architecture_specification", - "target": "ai_agency_specs_architecture_spec_2_directory_structure_tree" + "target": "ai_agency_specs_architecture_spec_2_directory_structure_tree", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85973,9 +86151,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_specs_architecture_spec_architecture_specification", - "target": "ai_agency_specs_architecture_spec_3_state_management_strategy" + "target": "ai_agency_specs_architecture_spec_3_state_management_strategy", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85984,9 +86162,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_specs_architecture_spec_architecture_specification", - "target": "ai_agency_specs_architecture_spec_4_deployment_docker_architecture" + "target": "ai_agency_specs_architecture_spec_4_deployment_docker_architecture", + "confidence_score": 1.0 }, { "relation": "contains", @@ -85995,9 +86173,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_specs_architecture_spec_architecture_specification", - "target": "ai_agency_specs_architecture_spec_1_single_non_negotiable_tech_stack" + "target": "ai_agency_specs_architecture_spec_1_single_non_negotiable_tech_stack", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86006,9 +86184,9 @@ "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" + "target": "ai_agency_specs_prd_product_requirement_document_prd", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86017,9 +86195,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_specs_prd_product_requirement_document_prd", - "target": "ai_agency_specs_prd_4_non_functional_requirements_performance_security" + "target": "ai_agency_specs_prd_4_non_functional_requirements_performance_security", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86028,9 +86206,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_specs_prd_product_requirement_document_prd", - "target": "ai_agency_specs_prd_5_epic_feature_breakdown" + "target": "ai_agency_specs_prd_5_epic_feature_breakdown", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86039,9 +86217,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_specs_prd_product_requirement_document_prd", - "target": "ai_agency_specs_prd_1_executive_vision" + "target": "ai_agency_specs_prd_1_executive_vision", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86050,9 +86228,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_specs_prd_product_requirement_document_prd", - "target": "ai_agency_specs_prd_2_target_audience" + "target": "ai_agency_specs_prd_2_target_audience", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86061,9 +86239,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_specs_prd_product_requirement_document_prd", - "target": "ai_agency_specs_prd_3_functional_requirements" + "target": "ai_agency_specs_prd_3_functional_requirements", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86072,9 +86250,9 @@ "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" + "target": "ai_agency_specs_project_health_project_health_audit_report", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86083,9 +86261,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_specs_project_health_project_health_audit_report", - "target": "ai_agency_specs_project_health_3_outdated_dependencies_list" + "target": "ai_agency_specs_project_health_3_outdated_dependencies_list", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86094,9 +86272,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_specs_project_health_project_health_audit_report", - "target": "ai_agency_specs_project_health_4_security_risks_env_leaks_unprotected_ports" + "target": "ai_agency_specs_project_health_4_security_risks_env_leaks_unprotected_ports", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86105,9 +86283,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_specs_project_health_project_health_audit_report", - "target": "ai_agency_specs_project_health_1_audit_score_summary" + "target": "ai_agency_specs_project_health_1_audit_score_summary", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86116,9 +86294,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_specs_project_health_project_health_audit_report", - "target": "ai_agency_specs_project_health_2_technical_debt_inventory" + "target": "ai_agency_specs_project_health_2_technical_debt_inventory", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86127,9 +86305,9 @@ "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" + "target": "ai_agency_specs_reviews_backend_review_backend_technical_review_05_dev_backend", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86138,9 +86316,9 @@ "source_location": "L3", "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_architectural_overview" + "target": "ai_agency_specs_reviews_backend_review_architectural_overview", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86149,9 +86327,9 @@ "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" + "target": "ai_agency_specs_reviews_backend_review_critical_review_findings_required_enhancements", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86160,9 +86338,9 @@ "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" + "target": "ai_agency_specs_reviews_code_health_review_code_health_audit_review_01_auditor", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86171,9 +86349,9 @@ "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" + "target": "ai_agency_specs_reviews_code_health_review_recommendations", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86182,9 +86360,9 @@ "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" + "target": "ai_agency_specs_reviews_code_health_review_executive_summary", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86193,9 +86371,9 @@ "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" + "target": "ai_agency_specs_reviews_code_health_review_key_findings", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86204,9 +86382,9 @@ "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" + "target": "ai_agency_specs_reviews_frontend_review_frontend_admin_panel_technical_review_06_dev_frontend", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86215,9 +86393,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_specs_reviews_frontend_review_frontend_admin_panel_technical_review_06_dev_frontend", - "target": "ai_agency_specs_reviews_frontend_review_architectural_overview" + "target": "ai_agency_specs_reviews_frontend_review_architectural_overview", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86226,9 +86404,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "ai_agency_specs_reviews_frontend_review_critical_review_findings_required_enhancements", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86237,9 +86415,9 @@ "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" + "target": "ai_agency_specs_reviews_security_review_security_performance_review_09_devops_security", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86248,9 +86426,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_specs_reviews_security_review_security_performance_review_09_devops_security", - "target": "ai_agency_specs_reviews_security_review_security_architecture_best_practices" + "target": "ai_agency_specs_reviews_security_review_security_architecture_best_practices", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86259,9 +86437,9 @@ "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" + "target": "ai_agency_specs_reviews_seo_content_review_seo_content_strategy_review_12_seo_content", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86270,9 +86448,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "ai_agency_specs_reviews_seo_content_review_overview_content_foundation", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86281,9 +86459,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "ai_agency_specs_reviews_seo_content_review_seo_content_requirements", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86292,9 +86470,9 @@ "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" + "target": "ai_agency_specs_reviews_ux_review_ux_persona_interface_review_08_visual_qa", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86303,9 +86481,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "ai_agency_specs_reviews_ux_review_ux_persona_interface_review_08_visual_qa", - "target": "ai_agency_specs_reviews_ux_review_persona_experience_alignment" + "target": "ai_agency_specs_reviews_ux_review_persona_experience_alignment", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86314,9 +86492,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "antigravity_instructions", - "target": "antigravity_instructions_graphify" + "target": "antigravity_instructions_graphify", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86325,9 +86503,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "antigravity_workflows_graphify", - "target": "antigravity_workflows_graphify_graphify" + "target": "antigravity_workflows_graphify_graphify", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86336,9 +86514,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "antigravity_workflows_graphify_graphify", - "target": "antigravity_workflows_graphify_usage" + "target": "antigravity_workflows_graphify_usage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86347,9 +86525,9 @@ "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" + "target": "antigravity_workflows_graphify_what_graphify_is_for", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86358,9 +86536,9 @@ "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" + "target": "antigravity_workflows_graphify_what_you_must_do_when_invoked", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86369,9 +86547,9 @@ "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" + "target": "antigravity_workflows_graphify_interpreter_guard_for_subcommands", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86380,9 +86558,9 @@ "source_location": "L701", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "antigravity_workflows_graphify_graphify", - "target": "antigravity_workflows_graphify_for_update_and_cluster_only" + "target": "antigravity_workflows_graphify_for_update_and_cluster_only", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86391,9 +86569,9 @@ "source_location": "L707", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "antigravity_workflows_graphify_graphify", - "target": "antigravity_workflows_graphify_for_graphify_query" + "target": "antigravity_workflows_graphify_for_graphify_query", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86402,9 +86580,9 @@ "source_location": "L719", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "antigravity_workflows_graphify_graphify", - "target": "antigravity_workflows_graphify_for_graphify_add_and_watch" + "target": "antigravity_workflows_graphify_for_graphify_add_and_watch", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86413,9 +86591,9 @@ "source_location": "L725", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "antigravity_workflows_graphify_graphify", - "target": "antigravity_workflows_graphify_for_the_commit_hook_and_native_claude_md_integration" + "target": "antigravity_workflows_graphify_for_the_commit_hook_and_native_claude_md_integration", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86424,9 +86602,9 @@ "source_location": "L731", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "antigravity_workflows_graphify_graphify", - "target": "antigravity_workflows_graphify_troubleshooting" + "target": "antigravity_workflows_graphify_troubleshooting", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86435,9 +86613,9 @@ "source_location": "L744", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "antigravity_workflows_graphify_graphify", - "target": "antigravity_workflows_graphify_honesty_rules" + "target": "antigravity_workflows_graphify_honesty_rules", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86446,9 +86624,9 @@ "source_location": "L192", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "antigravity_workflows_graphify_step_3_extract_entities_and_relationships", - "target": "antigravity_workflows_graphify_part_a_structural_extraction_for_code_files" + "target": "antigravity_workflows_graphify_part_a_structural_extraction_for_code_files", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86457,9 +86635,9 @@ "source_location": "L218", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "antigravity_workflows_graphify_step_3_extract_entities_and_relationships", - "target": "antigravity_workflows_graphify_part_b_semantic_extraction_parallel_subagents" + "target": "antigravity_workflows_graphify_part_b_semantic_extraction_parallel_subagents", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86468,9 +86646,9 @@ "source_location": "L381", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "antigravity_workflows_graphify_step_3_extract_entities_and_relationships", - "target": "antigravity_workflows_graphify_part_c_merge_ast_semantic_into_final_extraction" + "target": "antigravity_workflows_graphify_part_c_merge_ast_semantic_into_final_extraction", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86479,9 +86657,9 @@ "source_location": "L733", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "antigravity_workflows_graphify_troubleshooting", - "target": "antigravity_workflows_graphify_powershell_5_1_vertical_scrolling_stops_working" + "target": "antigravity_workflows_graphify_powershell_5_1_vertical_scrolling_stops_working", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86490,9 +86668,9 @@ "source_location": "L129", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "antigravity_workflows_graphify_what_you_must_do_when_invoked", - "target": "antigravity_workflows_graphify_step_2_detect_files" + "target": "antigravity_workflows_graphify_step_2_detect_files", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86501,9 +86679,9 @@ "source_location": "L169", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "antigravity_workflows_graphify_step_2_5_video_and_audio_only_if_video_files_detected", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86512,9 +86690,9 @@ "source_location": "L173", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "antigravity_workflows_graphify_what_you_must_do_when_invoked", - "target": "antigravity_workflows_graphify_step_3_extract_entities_and_relationships" + "target": "antigravity_workflows_graphify_step_3_extract_entities_and_relationships", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86523,9 +86701,9 @@ "source_location": "L415", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "antigravity_workflows_graphify_what_you_must_do_when_invoked", - "target": "antigravity_workflows_graphify_step_4_build_graph_cluster_analyze_generate_outputs" + "target": "antigravity_workflows_graphify_step_4_build_graph_cluster_analyze_generate_outputs", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86534,9 +86712,9 @@ "source_location": "L478", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "antigravity_workflows_graphify_what_you_must_do_when_invoked", - "target": "antigravity_workflows_graphify_step_4_5_graph_health_check_read_only_integrity_gate" + "target": "antigravity_workflows_graphify_step_4_5_graph_health_check_read_only_integrity_gate", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86545,9 +86723,9 @@ "source_location": "L504", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "antigravity_workflows_graphify_what_you_must_do_when_invoked", - "target": "antigravity_workflows_graphify_step_5_label_communities" + "target": "antigravity_workflows_graphify_step_5_label_communities", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86556,9 +86734,9 @@ "source_location": "L553", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "antigravity_workflows_graphify_what_you_must_do_when_invoked", - "target": "antigravity_workflows_graphify_step_6_generate_obsidian_vault_opt_in_html" + "target": "antigravity_workflows_graphify_step_6_generate_obsidian_vault_opt_in_html", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86567,9 +86745,9 @@ "source_location": "L573", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "antigravity_workflows_graphify_steps_6b_8_wiki_neo4j_falkordb_svg_graphml_mcp_benchmark_only_on_their_flags", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86578,9 +86756,9 @@ "source_location": "L579", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "antigravity_workflows_graphify_step_9_save_manifest_update_cost_tracker_clean_up_and_report", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86589,9 +86767,9 @@ "source_location": "L61", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "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", @@ -86600,9 +86778,9 @@ "source_location": "L65", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "antigravity_workflows_graphify_what_you_must_do_when_invoked", - "target": "antigravity_workflows_graphify_step_1_ensure_graphify_is_installed" + "target": "antigravity_workflows_graphify_step_1_ensure_graphify_is_installed", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86611,9 +86789,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_nest_cli", - "target": "backend_nest_cli_schema" + "target": "backend_nest_cli_schema", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86622,9 +86800,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_nest_cli", - "target": "backend_nest_cli_collection" + "target": "backend_nest_cli_collection", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86633,9 +86811,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_nest_cli", - "target": "backend_nest_cli_sourceroot" + "target": "backend_nest_cli_sourceroot", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86644,9 +86822,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_nest_cli", - "target": "backend_nest_cli_compileroptions" + "target": "backend_nest_cli_compileroptions", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86655,9 +86833,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_nest_cli_compileroptions", - "target": "backend_nest_cli_compileroptions_deleteoutdir" + "target": "backend_nest_cli_compileroptions_deleteoutdir", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86666,9 +86844,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package", - "target": "backend_package_name" + "target": "backend_package_name", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86677,9 +86855,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package", - "target": "backend_package_dependencies" + "target": "backend_package_dependencies", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86688,9 +86866,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package", - "target": "backend_package_version" + "target": "backend_package_version", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86699,9 +86877,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package", - "target": "backend_package_description" + "target": "backend_package_description", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86710,9 +86888,9 @@ "source_location": "L45", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package", - "target": "backend_package_devdependencies" + "target": "backend_package_devdependencies", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86721,9 +86899,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package", - "target": "backend_package_author" + "target": "backend_package_author", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86732,9 +86910,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package", - "target": "backend_package_private" + "target": "backend_package_private", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86743,9 +86921,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package", - "target": "backend_package_license" + "target": "backend_package_license", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86754,9 +86932,9 @@ "source_location": "L76", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package", - "target": "backend_package_jest" + "target": "backend_package_jest", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86765,9 +86943,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package", - "target": "backend_package_scripts" + "target": "backend_package_scripts", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86776,9 +86954,9 @@ "source_location": "L93", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package", - "target": "backend_package_prisma" + "target": "backend_package_prisma", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86787,9 +86965,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_nestjs_common" + "target": "backend_package_dependencies_nestjs_common", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86798,9 +86976,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_nestjs_core" + "target": "backend_package_dependencies_nestjs_core", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86809,9 +86987,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_nestjs_jwt" + "target": "backend_package_dependencies_nestjs_jwt", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86820,9 +86998,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_nestjs_passport" + "target": "backend_package_dependencies_nestjs_passport", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86831,9 +87009,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_nestjs_platform_express" + "target": "backend_package_dependencies_nestjs_platform_express", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86842,9 +87020,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_nestjs_swagger" + "target": "backend_package_dependencies_nestjs_swagger", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86853,9 +87031,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_nestjs_throttler" + "target": "backend_package_dependencies_nestjs_throttler", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86864,9 +87042,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_prisma_client" + "target": "backend_package_dependencies_prisma_client", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86875,9 +87053,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_bcrypt" + "target": "backend_package_dependencies_bcrypt", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86886,9 +87064,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_bcryptjs" + "target": "backend_package_dependencies_bcryptjs", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86897,9 +87075,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_class_transformer" + "target": "backend_package_dependencies_class_transformer", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86908,9 +87086,9 @@ "source_location": "L35", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_class_validator" + "target": "backend_package_dependencies_class_validator", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86919,9 +87097,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_helmet" + "target": "backend_package_dependencies_helmet", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86930,9 +87108,9 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_ioredis" + "target": "backend_package_dependencies_ioredis", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86941,9 +87119,9 @@ "source_location": "L38", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_js_yaml" + "target": "backend_package_dependencies_js_yaml", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86952,9 +87130,9 @@ "source_location": "L39", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_passport" + "target": "backend_package_dependencies_passport", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86963,9 +87141,9 @@ "source_location": "L40", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_passport_jwt" + "target": "backend_package_dependencies_passport_jwt", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86974,9 +87152,9 @@ "source_location": "L41", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_reflect_metadata" + "target": "backend_package_dependencies_reflect_metadata", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86985,9 +87163,9 @@ "source_location": "L42", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_rxjs" + "target": "backend_package_dependencies_rxjs", + "confidence_score": 1.0 }, { "relation": "contains", @@ -86996,9 +87174,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_dependencies", - "target": "backend_package_dependencies_swagger_ui_express" + "target": "backend_package_dependencies_swagger_ui_express", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87007,9 +87185,9 @@ "source_location": "L46", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_eslint_eslintrc" + "target": "backend_package_devdependencies_eslint_eslintrc", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87018,9 +87196,9 @@ "source_location": "L47", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_eslint_js" + "target": "backend_package_devdependencies_eslint_js", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87029,9 +87207,9 @@ "source_location": "L48", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_nestjs_cli" + "target": "backend_package_devdependencies_nestjs_cli", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87040,9 +87218,9 @@ "source_location": "L49", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_nestjs_schematics" + "target": "backend_package_devdependencies_nestjs_schematics", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87051,9 +87229,9 @@ "source_location": "L50", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_nestjs_testing" + "target": "backend_package_devdependencies_nestjs_testing", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87062,9 +87240,9 @@ "source_location": "L51", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_types_bcrypt" + "target": "backend_package_devdependencies_types_bcrypt", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87073,9 +87251,9 @@ "source_location": "L52", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_types_bcryptjs" + "target": "backend_package_devdependencies_types_bcryptjs", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87084,9 +87262,9 @@ "source_location": "L53", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_types_express" + "target": "backend_package_devdependencies_types_express", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87095,9 +87273,9 @@ "source_location": "L54", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_types_jest" + "target": "backend_package_devdependencies_types_jest", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87106,9 +87284,9 @@ "source_location": "L55", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_types_js_yaml" + "target": "backend_package_devdependencies_types_js_yaml", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87117,9 +87295,9 @@ "source_location": "L56", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_types_multer" + "target": "backend_package_devdependencies_types_multer", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87128,9 +87306,9 @@ "source_location": "L57", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_types_node" + "target": "backend_package_devdependencies_types_node", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87139,9 +87317,9 @@ "source_location": "L58", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_types_passport_jwt" + "target": "backend_package_devdependencies_types_passport_jwt", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87150,9 +87328,9 @@ "source_location": "L59", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_types_supertest" + "target": "backend_package_devdependencies_types_supertest", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87161,9 +87339,9 @@ "source_location": "L60", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_eslint" + "target": "backend_package_devdependencies_eslint", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87172,9 +87350,9 @@ "source_location": "L61", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_eslint_config_prettier" + "target": "backend_package_devdependencies_eslint_config_prettier", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87183,9 +87361,9 @@ "source_location": "L62", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_eslint_plugin_prettier" + "target": "backend_package_devdependencies_eslint_plugin_prettier", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87194,9 +87372,9 @@ "source_location": "L63", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_globals" + "target": "backend_package_devdependencies_globals", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87205,9 +87383,9 @@ "source_location": "L64", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_jest" + "target": "backend_package_devdependencies_jest", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87216,9 +87394,9 @@ "source_location": "L65", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_prettier" + "target": "backend_package_devdependencies_prettier", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87227,9 +87405,9 @@ "source_location": "L66", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_prisma" + "target": "backend_package_devdependencies_prisma", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87238,9 +87416,9 @@ "source_location": "L67", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_source_map_support" + "target": "backend_package_devdependencies_source_map_support", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87249,9 +87427,9 @@ "source_location": "L68", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_supertest" + "target": "backend_package_devdependencies_supertest", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87260,9 +87438,9 @@ "source_location": "L69", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_ts_jest" + "target": "backend_package_devdependencies_ts_jest", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87271,9 +87449,9 @@ "source_location": "L70", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_ts_loader" + "target": "backend_package_devdependencies_ts_loader", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87282,9 +87460,9 @@ "source_location": "L71", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_ts_node" + "target": "backend_package_devdependencies_ts_node", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87293,9 +87471,9 @@ "source_location": "L72", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_tsconfig_paths" + "target": "backend_package_devdependencies_tsconfig_paths", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87304,9 +87482,9 @@ "source_location": "L73", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_typescript" + "target": "backend_package_devdependencies_typescript", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87315,9 +87493,9 @@ "source_location": "L74", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_typescript_eslint" + "target": "backend_package_devdependencies_typescript_eslint", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87326,9 +87504,9 @@ "source_location": "L77", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_jest", - "target": "backend_package_jest_modulefileextensions" + "target": "backend_package_jest_modulefileextensions", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87337,9 +87515,9 @@ "source_location": "L82", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_jest", - "target": "backend_package_jest_rootdir" + "target": "backend_package_jest_rootdir", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87348,9 +87526,9 @@ "source_location": "L83", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_jest", - "target": "backend_package_jest_testregex" + "target": "backend_package_jest_testregex", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87359,9 +87537,9 @@ "source_location": "L84", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_jest", - "target": "backend_package_jest_transform" + "target": "backend_package_jest_transform", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87370,9 +87548,9 @@ "source_location": "L87", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_jest", - "target": "backend_package_jest_collectcoveragefrom" + "target": "backend_package_jest_collectcoveragefrom", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87381,9 +87559,9 @@ "source_location": "L90", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_jest", - "target": "backend_package_jest_coveragedirectory" + "target": "backend_package_jest_coveragedirectory", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87392,9 +87570,9 @@ "source_location": "L91", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_jest", - "target": "backend_package_jest_testenvironment" + "target": "backend_package_jest_testenvironment", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87403,9 +87581,9 @@ "source_location": "L85", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_jest_transform", - "target": "backend_package_transform_t_j_s" + "target": "backend_package_transform_t_j_s", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87414,9 +87592,9 @@ "source_location": "L94", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_prisma", - "target": "backend_package_prisma_seed" + "target": "backend_package_prisma_seed", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87425,9 +87603,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_scripts", - "target": "backend_package_scripts_format" + "target": "backend_package_scripts_format", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87436,9 +87614,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_scripts", - "target": "backend_package_scripts_start" + "target": "backend_package_scripts_start", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87447,9 +87625,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_scripts", - "target": "backend_package_scripts_start_dev" + "target": "backend_package_scripts_start_dev", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87458,9 +87636,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_scripts", - "target": "backend_package_scripts_start_debug" + "target": "backend_package_scripts_start_debug", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87469,9 +87647,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_scripts", - "target": "backend_package_scripts_start_prod" + "target": "backend_package_scripts_start_prod", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87480,9 +87658,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_scripts", - "target": "backend_package_scripts_lint" + "target": "backend_package_scripts_lint", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87491,9 +87669,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_scripts", - "target": "backend_package_scripts_test" + "target": "backend_package_scripts_test", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87502,9 +87680,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_scripts", - "target": "backend_package_scripts_test_watch" + "target": "backend_package_scripts_test_watch", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87513,9 +87691,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_scripts", - "target": "backend_package_scripts_test_cov" + "target": "backend_package_scripts_test_cov", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87524,9 +87702,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_scripts", - "target": "backend_package_scripts_test_debug" + "target": "backend_package_scripts_test_debug", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87535,9 +87713,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_scripts", - "target": "backend_package_scripts_test_e2e" + "target": "backend_package_scripts_test_e2e", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87546,9 +87724,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_scripts", - "target": "backend_package_scripts_docs_generate" + "target": "backend_package_scripts_docs_generate", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87557,9 +87735,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_package_scripts", - "target": "backend_package_scripts_build" + "target": "backend_package_scripts_build", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87568,9 +87746,9 @@ "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" + "target": "backend_prisma_migrations_20260526145407_init_migration_pet_medical_conditions", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87579,9 +87757,9 @@ "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" + "target": "backend_prisma_migrations_20260526145407_init_migration_reminders", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87590,9 +87768,9 @@ "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" + "target": "backend_prisma_migrations_20260526145407_init_migration_reminder_completions", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87601,9 +87779,9 @@ "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" + "target": "backend_prisma_migrations_20260526145407_init_migration_health_logs", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87612,9 +87790,9 @@ "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" + "target": "backend_prisma_migrations_20260526145407_init_migration_coupons", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87623,9 +87801,9 @@ "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" + "target": "backend_prisma_migrations_20260526145407_init_migration_orders", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87634,9 +87812,9 @@ "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" + "target": "backend_prisma_migrations_20260526145407_init_migration_order_items", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87645,9 +87823,9 @@ "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" + "target": "backend_prisma_migrations_20260526145407_init_migration_user_addresses", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87656,9 +87834,9 @@ "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" + "target": "backend_prisma_migrations_20260526145407_init_migration_users", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87667,9 +87845,9 @@ "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" + "target": "backend_prisma_migrations_20260526145407_init_migration_wallet_transactions", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87678,9 +87856,9 @@ "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" + "target": "backend_prisma_migrations_20260526145407_init_migration_products", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87689,9 +87867,9 @@ "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" + "target": "backend_prisma_migrations_20260526145407_init_migration_product_ingredients", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87700,9 +87878,9 @@ "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" + "target": "backend_prisma_migrations_20260526145407_init_migration_product_symptoms", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87711,9 +87889,9 @@ "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" + "target": "backend_prisma_migrations_20260526145407_init_migration_pets", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87722,9 +87900,9 @@ "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" + "target": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration_scientific_terms", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87733,9 +87911,9 @@ "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" + "target": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration_ui_texts", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87744,9 +87922,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_scientificterms", - "target": "backend_prisma_scientificterms_scientificterm" + "target": "backend_prisma_scientificterms_scientificterm", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87755,9 +87933,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_scientificterms", - "target": "backend_prisma_scientificterms_scientific_terms" + "target": "backend_prisma_scientificterms_scientific_terms", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87766,9 +87944,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_seed", - "target": "backend_prisma_seed_main" + "target": "backend_prisma_seed_main", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87777,9 +87955,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_seed", - "target": "backend_prisma_seed_prisma" + "target": "backend_prisma_seed_prisma", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87788,9 +87966,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_seed_blogs", - "target": "backend_prisma_seed_blogs_prisma" + "target": "backend_prisma_seed_blogs_prisma", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87799,9 +87977,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_seed_blogs", - "target": "backend_prisma_seed_blogs_main" + "target": "backend_prisma_seed_blogs_main", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87810,9 +87988,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_seed_custom", - "target": "backend_prisma_seed_custom_prisma" + "target": "backend_prisma_seed_custom_prisma", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87821,9 +87999,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_seed_custom", - "target": "backend_prisma_seed_custom_main" + "target": "backend_prisma_seed_custom_main", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87832,9 +88010,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_seed_home", - "target": "backend_prisma_seed_home_prisma" + "target": "backend_prisma_seed_home_prisma", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87843,9 +88021,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_seed_home", - "target": "backend_prisma_seed_home_main" + "target": "backend_prisma_seed_home_main", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87854,9 +88032,9 @@ "source_location": "L128", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_seed_products", - "target": "backend_prisma_seed_products_findorcreatecategory" + "target": "backend_prisma_seed_products_findorcreatecategory", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87865,9 +88043,9 @@ "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" + "target": "backend_prisma_seed_products_product_symptoms_map", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87876,9 +88054,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_seed_products", - "target": "backend_prisma_seed_products_determinesuitablefor" + "target": "backend_prisma_seed_products_determinesuitablefor", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87887,9 +88065,9 @@ "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" + "target": "backend_prisma_seed_products_product_taglines_map", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87898,9 +88076,9 @@ "source_location": "L268", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_seed_products", - "target": "backend_prisma_seed_products_main" + "target": "backend_prisma_seed_products_main", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87909,9 +88087,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_seed_products", - "target": "backend_prisma_seed_products_parsesize" + "target": "backend_prisma_seed_products_parsesize", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87920,9 +88098,9 @@ "source_location": "L41", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_seed_products", - "target": "backend_prisma_seed_products_getproductimageurl" + "target": "backend_prisma_seed_products_getproductimageurl", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87931,9 +88109,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_seed_products", - "target": "backend_prisma_seed_products_prisma" + "target": "backend_prisma_seed_products_prisma", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87942,9 +88120,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_seed_products", - "target": "backend_prisma_seed_products_slugify" + "target": "backend_prisma_seed_products_slugify", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87953,9 +88131,9 @@ "source_location": "L135", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_seed_ui_texts", - "target": "backend_prisma_seed_ui_texts_main" + "target": "backend_prisma_seed_ui_texts_main", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87964,9 +88142,9 @@ "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" + "target": "backend_prisma_seed_ui_texts_prisma", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87975,9 +88153,9 @@ "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" + "target": "backend_prisma_seed_ui_texts_ui_texts", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87986,9 +88164,9 @@ "source_location": "L370", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_seed_wiki", - "target": "backend_prisma_seed_wiki_main" + "target": "backend_prisma_seed_wiki_main", + "confidence_score": 1.0 }, { "relation": "contains", @@ -87997,9 +88175,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_seed_wiki", - "target": "backend_prisma_seed_wiki_prisma" + "target": "backend_prisma_seed_wiki_prisma", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88008,9 +88186,9 @@ "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" + "target": "backend_prisma_seed_wiki_canonical_wiki_terms", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88019,9 +88197,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_tsconfig", - "target": "backend_prisma_tsconfig_compileroptions" + "target": "backend_prisma_tsconfig_compileroptions", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88030,9 +88208,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_tsconfig", - "target": "backend_prisma_tsconfig_include" + "target": "backend_prisma_tsconfig_include", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88041,9 +88219,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_tsconfig_compileroptions", - "target": "backend_prisma_tsconfig_compileroptions_module" + "target": "backend_prisma_tsconfig_compileroptions_module", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88052,9 +88230,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_tsconfig_compileroptions", - "target": "backend_prisma_tsconfig_compileroptions_moduleresolution" + "target": "backend_prisma_tsconfig_compileroptions_moduleresolution", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88063,9 +88241,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_tsconfig_compileroptions", - "target": "backend_prisma_tsconfig_compileroptions_esmoduleinterop" + "target": "backend_prisma_tsconfig_compileroptions_esmoduleinterop", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88074,9 +88252,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_tsconfig_compileroptions", - "target": "backend_prisma_tsconfig_compileroptions_skiplibcheck" + "target": "backend_prisma_tsconfig_compileroptions_skiplibcheck", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88085,9 +88263,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_tsconfig_compileroptions", - "target": "backend_prisma_tsconfig_compileroptions_types" + "target": "backend_prisma_tsconfig_compileroptions_types", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88096,9 +88274,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_tsconfig_seed", - "target": "backend_prisma_tsconfig_seed_compileroptions" + "target": "backend_prisma_tsconfig_seed_compileroptions", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88107,9 +88285,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_tsconfig_seed", - "target": "backend_prisma_tsconfig_seed_include" + "target": "backend_prisma_tsconfig_seed_include", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88118,9 +88296,9 @@ "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" + "target": "backend_prisma_tsconfig_seed_compileroptions_module", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88129,9 +88307,9 @@ "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" + "target": "backend_prisma_tsconfig_seed_compileroptions_moduleresolution", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88140,9 +88318,9 @@ "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" + "target": "backend_prisma_tsconfig_seed_compileroptions_esmoduleinterop", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88151,9 +88329,9 @@ "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" + "target": "backend_prisma_tsconfig_seed_compileroptions_skiplibcheck", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88162,9 +88340,9 @@ "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" + "target": "backend_prisma_tsconfig_seed_compileroptions_types", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88173,9 +88351,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_readme", - "target": "backend_readme_description" + "target": "backend_readme_description", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88184,9 +88362,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_readme", - "target": "backend_readme_project_setup" + "target": "backend_readme_project_setup", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88195,9 +88373,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_readme", - "target": "backend_readme_compile_and_run_the_project" + "target": "backend_readme_compile_and_run_the_project", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88206,9 +88384,9 @@ "source_location": "L47", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_readme", - "target": "backend_readme_run_tests" + "target": "backend_readme_run_tests", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88217,9 +88395,9 @@ "source_location": "L60", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_readme", - "target": "backend_readme_deployment" + "target": "backend_readme_deployment", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88228,9 +88406,9 @@ "source_location": "L73", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_readme", - "target": "backend_readme_resources" + "target": "backend_readme_resources", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88239,9 +88417,9 @@ "source_location": "L86", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_readme", - "target": "backend_readme_support" + "target": "backend_readme_support", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88250,9 +88428,9 @@ "source_location": "L90", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_readme", - "target": "backend_readme_stay_in_touch" + "target": "backend_readme_stay_in_touch", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88261,9 +88439,9 @@ "source_location": "L96", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_readme", - "target": "backend_readme_license" + "target": "backend_readme_license", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88272,9 +88450,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi", - "target": "backend_scripts_generate_openapi_core_1" + "target": "backend_scripts_generate_openapi_core_1", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88283,9 +88461,9 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi", - "target": "backend_scripts_generate_openapi_app_module_1" + "target": "backend_scripts_generate_openapi_app_module_1", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88294,9 +88472,9 @@ "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" + "target": "backend_scripts_generate_openapi_swagger_1", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88305,9 +88483,9 @@ "source_location": "L39", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi", - "target": "backend_scripts_generate_openapi_fs" + "target": "backend_scripts_generate_openapi_fs", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88316,9 +88494,9 @@ "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" + "target": "backend_scripts_generate_openapi_path", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88327,9 +88505,9 @@ "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" + "target": "backend_scripts_generate_openapi_yaml", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88338,9 +88516,9 @@ "source_location": "L42", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi", - "target": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi_generateopenapi" + "target": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi_generateopenapi", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88349,9 +88527,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi", - "target": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi_generateopenapi" + "target": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi_generateopenapi", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88360,9 +88538,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_controller", - "target": "backend_src_admin_admin_controller_admincontroller" + "target": "backend_src_admin_admin_controller_admincontroller", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88371,9 +88549,9 @@ "source_location": "L44", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_admin_module_adminmodule" + "target": "backend_src_admin_admin_module_adminmodule", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88382,9 +88560,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service", - "target": "backend_src_admin_admin_service_paginationquery" + "target": "backend_src_admin_admin_service_paginationquery", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88393,9 +88571,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service", - "target": "backend_src_admin_admin_service_coupontargetinput" + "target": "backend_src_admin_admin_service_coupontargetinput", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88404,9 +88582,9 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service", - "target": "backend_src_admin_admin_service_couponinput" + "target": "backend_src_admin_admin_service_couponinput", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88415,9 +88593,9 @@ "source_location": "L50", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service", - "target": "backend_src_admin_admin_service_adminservice" + "target": "backend_src_admin_admin_service_adminservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88426,9 +88604,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller", - "target": "backend_src_admin_blogs_controller_blogscontroller" + "target": "backend_src_admin_blogs_controller_blogscontroller", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88437,9 +88615,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_blogs_service", - "target": "backend_src_admin_blogs_service_blogsservice" + "target": "backend_src_admin_blogs_service_blogsservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88448,9 +88626,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_blogs_service", - "target": "backend_src_admin_blogs_service_blogquery" + "target": "backend_src_admin_blogs_service_blogquery", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88459,9 +88637,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_categories_controller", - "target": "backend_src_admin_categories_controller_categoriescontroller" + "target": "backend_src_admin_categories_controller_categoriescontroller", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88470,9 +88648,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_categories_service", - "target": "backend_src_admin_categories_service_categoriesservice" + "target": "backend_src_admin_categories_service_categoriesservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88481,9 +88659,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_categories_service", - "target": "backend_src_admin_categories_service_categoryquery" + "target": "backend_src_admin_categories_service_categoryquery", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88492,9 +88670,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_dto_admin_query_dto", - "target": "backend_src_admin_dto_admin_query_dto_adminquerydto" + "target": "backend_src_admin_dto_admin_query_dto_adminquerydto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88503,9 +88681,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_dto_product_dto", - "target": "backend_src_admin_dto_product_dto_productdto" + "target": "backend_src_admin_dto_product_dto_productdto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88514,9 +88692,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_dto_user_dto", - "target": "backend_src_admin_dto_user_dto_createuserdto" + "target": "backend_src_admin_dto_user_dto_createuserdto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88525,9 +88703,9 @@ "source_location": "L42", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_dto_user_dto", - "target": "backend_src_admin_dto_user_dto_updateuserdto" + "target": "backend_src_admin_dto_user_dto_updateuserdto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88536,9 +88714,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_media_controller", - "target": "backend_src_admin_media_controller_mediacontroller" + "target": "backend_src_admin_media_controller_mediacontroller", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88547,9 +88725,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_media_service", - "target": "backend_src_admin_media_service_mediaservice" + "target": "backend_src_admin_media_service_mediaservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88558,9 +88736,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_pets_controller", - "target": "backend_src_admin_pets_controller_petscontroller" + "target": "backend_src_admin_pets_controller_petscontroller", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88569,9 +88747,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_pets_service", - "target": "backend_src_admin_pets_service_petsservice" + "target": "backend_src_admin_pets_service_petsservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88580,9 +88758,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_pets_service", - "target": "backend_src_admin_pets_service_petquery" + "target": "backend_src_admin_pets_service_petquery", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88591,9 +88769,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_reports_controller", - "target": "backend_src_admin_reports_controller_reportscontroller" + "target": "backend_src_admin_reports_controller_reportscontroller", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88602,9 +88780,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_reports_service", - "target": "backend_src_admin_reports_service_reportsservice" + "target": "backend_src_admin_reports_service_reportsservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88613,9 +88791,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller", - "target": "backend_src_admin_ssl_controller_sslcontroller" + "target": "backend_src_admin_ssl_controller_sslcontroller", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88624,9 +88802,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_ssl_service", - "target": "backend_src_admin_ssl_service_sslservice" + "target": "backend_src_admin_ssl_service_sslservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88635,9 +88813,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_ssl_service", - "target": "backend_src_admin_ssl_service_sslcertinfo" + "target": "backend_src_admin_ssl_service_sslcertinfo", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88646,9 +88824,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_wiki_controller", - "target": "backend_src_admin_wiki_controller_wikicontroller" + "target": "backend_src_admin_wiki_controller_wikicontroller", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88657,9 +88835,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_wiki_service", - "target": "backend_src_admin_wiki_service_wikiservice" + "target": "backend_src_admin_wiki_service_wikiservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88668,9 +88846,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_wiki_service", - "target": "backend_src_admin_wiki_service_wikiquery" + "target": "backend_src_admin_wiki_service_wikiquery", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88679,9 +88857,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_controller", - "target": "backend_src_app_controller_appcontroller" + "target": "backend_src_app_controller_appcontroller", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88690,9 +88868,9 @@ "source_location": "L83", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module", - "target": "backend_src_app_module_appmodule" + "target": "backend_src_app_module_appmodule", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88701,9 +88879,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_service", - "target": "backend_src_app_service_appservice" + "target": "backend_src_app_service_appservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88712,9 +88890,9 @@ "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" + "target": "backend_src_auth_auth_constants_default_jwt_secret", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88723,9 +88901,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_constants", - "target": "backend_src_auth_auth_constants_getjwtrefreshsecret" + "target": "backend_src_auth_auth_constants_getjwtrefreshsecret", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88734,9 +88912,9 @@ "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" + "target": "backend_src_auth_auth_constants_default_jwt_refresh_secret", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88745,9 +88923,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_constants", - "target": "backend_src_auth_auth_constants_getjwtsecret" + "target": "backend_src_auth_auth_constants_getjwtsecret", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88756,9 +88934,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_auth_controller_authcontroller" + "target": "backend_src_auth_auth_controller_authcontroller", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88767,9 +88945,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_module", - "target": "backend_src_auth_auth_module_authmodule" + "target": "backend_src_auth_auth_module_authmodule", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88778,9 +88956,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_service", - "target": "backend_src_auth_auth_service_registerinput" + "target": "backend_src_auth_auth_service_registerinput", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88789,9 +88967,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_service", - "target": "backend_src_auth_auth_service_logininput" + "target": "backend_src_auth_auth_service_logininput", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88800,9 +88978,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_service", - "target": "backend_src_auth_auth_service_adminlogininput" + "target": "backend_src_auth_auth_service_adminlogininput", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88811,9 +88989,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_service", - "target": "backend_src_auth_auth_service_authservice" + "target": "backend_src_auth_auth_service_authservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88822,9 +89000,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_dto_admin_login_dto", - "target": "backend_src_auth_dto_admin_login_dto_adminlogindto" + "target": "backend_src_auth_dto_admin_login_dto_adminlogindto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88833,9 +89011,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_dto_login_dto", - "target": "backend_src_auth_dto_login_dto_logindto" + "target": "backend_src_auth_dto_login_dto_logindto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88844,9 +89022,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_dto_register_dto", - "target": "backend_src_auth_dto_register_dto_registerdto" + "target": "backend_src_auth_dto_register_dto_registerdto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88855,9 +89033,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_dto_send_otp_dto", - "target": "backend_src_auth_dto_send_otp_dto_sendotpdto" + "target": "backend_src_auth_dto_send_otp_dto_sendotpdto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88866,9 +89044,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_dto_verify_otp_dto", - "target": "backend_src_auth_dto_verify_otp_dto_verifyotpdto" + "target": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88877,9 +89055,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_jwt_auth_guard", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard" + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88888,9 +89066,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_jwt_strategy", - "target": "backend_src_auth_jwt_strategy_jwtstrategy" + "target": "backend_src_auth_jwt_strategy_jwtstrategy", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88899,9 +89077,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_jwt_strategy", - "target": "backend_src_auth_jwt_strategy_jwtpayload" + "target": "backend_src_auth_jwt_strategy_jwtpayload", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88910,9 +89088,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller", - "target": "backend_src_b2b_b2b_controller_b2bcontroller" + "target": "backend_src_b2b_b2b_controller_b2bcontroller", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88921,9 +89099,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_b2b_b2b_module", - "target": "backend_src_b2b_b2b_module_b2bmodule" + "target": "backend_src_b2b_b2b_module_b2bmodule", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88932,9 +89110,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_b2b_b2b_service", - "target": "backend_src_b2b_b2b_service_b2bservice" + "target": "backend_src_b2b_b2b_service_b2bservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88943,9 +89121,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_b2b_b2b_service", - "target": "backend_src_b2b_b2b_service_b2bwholesaleorderitem" + "target": "backend_src_b2b_b2b_service_b2bwholesaleorderitem", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88954,9 +89132,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_banners_banners_controller", - "target": "backend_src_banners_banners_controller_bannerscontroller" + "target": "backend_src_banners_banners_controller_bannerscontroller", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88965,9 +89143,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_banners_banners_module", - "target": "backend_src_banners_banners_module_bannersmodule" + "target": "backend_src_banners_banners_module_bannersmodule", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88976,9 +89154,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_banners_banners_service", - "target": "backend_src_banners_banners_service_bannersservice" + "target": "backend_src_banners_banners_service_bannersservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88987,9 +89165,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_blogs_blogs_controller", - "target": "backend_src_blogs_blogs_controller_blogscontroller" + "target": "backend_src_blogs_blogs_controller_blogscontroller", + "confidence_score": 1.0 }, { "relation": "contains", @@ -88998,9 +89176,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_blogs_blogs_module", - "target": "backend_src_blogs_blogs_module_blogsmodule" + "target": "backend_src_blogs_blogs_module_blogsmodule", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89009,9 +89187,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_blogs_blogs_service", - "target": "backend_src_blogs_blogs_service_blogsservice" + "target": "backend_src_blogs_blogs_service_blogsservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89020,9 +89198,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_blogs_dto_create_blog_dto", - "target": "backend_src_blogs_dto_create_blog_dto_createblogdto" + "target": "backend_src_blogs_dto_create_blog_dto_createblogdto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89031,9 +89209,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_blogs_dto_update_blog_dto", - "target": "backend_src_blogs_dto_update_blog_dto_updateblogdto" + "target": "backend_src_blogs_dto_update_blog_dto_updateblogdto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89042,9 +89220,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_blogs_entities_blog_entity", - "target": "backend_src_blogs_entities_blog_entity_blog" + "target": "backend_src_blogs_entities_blog_entity_blog", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89053,9 +89231,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_cms_cms_controller", - "target": "backend_src_cms_cms_controller_cmscontroller" + "target": "backend_src_cms_cms_controller_cmscontroller", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89064,9 +89242,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_cms_cms_module", - "target": "backend_src_cms_cms_module_cmsmodule" + "target": "backend_src_cms_cms_module_cmsmodule", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89075,9 +89253,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_cms_cms_service", - "target": "backend_src_cms_cms_service_cmsservice" + "target": "backend_src_cms_cms_service_cmsservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89086,9 +89264,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_cms_dto_cms_dto", - "target": "backend_src_cms_dto_cms_dto_createherobannerdto" + "target": "backend_src_cms_dto_cms_dto_createherobannerdto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89097,9 +89275,9 @@ "source_location": "L45", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_cms_dto_cms_dto", - "target": "backend_src_cms_dto_cms_dto_createvettestimonialdto" + "target": "backend_src_cms_dto_cms_dto_createvettestimonialdto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89108,9 +89286,9 @@ "source_location": "L80", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_cms_dto_cms_dto", - "target": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto" + "target": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89119,9 +89297,9 @@ "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" + "target": "backend_src_common_decorators_roles_decorator_roles_key", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89130,9 +89308,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_decorators_roles_decorator", - "target": "backend_src_common_decorators_roles_decorator_roles" + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89141,9 +89319,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_dto_pagination_dto", - "target": "backend_src_common_dto_pagination_dto_paginationdto" + "target": "backend_src_common_dto_pagination_dto_paginationdto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89152,9 +89330,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_dto_pagination_dto", - "target": "backend_src_common_dto_pagination_dto_sortorder" + "target": "backend_src_common_dto_pagination_dto_sortorder", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89163,9 +89341,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_filters_http_exception_filter", - "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter" + "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89174,9 +89352,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_filters_prisma_exception_filter", - "target": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter" + "target": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89185,9 +89363,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_guards_roles_guard", - "target": "backend_src_common_guards_roles_guard_requestwithuser" + "target": "backend_src_common_guards_roles_guard_requestwithuser", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89196,9 +89374,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_guards_roles_guard", - "target": "backend_src_common_guards_roles_guard_rolesguard" + "target": "backend_src_common_guards_roles_guard_rolesguard", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89207,9 +89385,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_interceptors_decimal_interceptor", - "target": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor" + "target": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89218,9 +89396,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_metrics_controller", - "target": "backend_src_common_metrics_controller_metricscontroller" + "target": "backend_src_common_metrics_controller_metricscontroller", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89229,9 +89407,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_schemas_error_response_schema", - "target": "backend_src_common_schemas_error_response_schema_apierrorresponse" + "target": "backend_src_common_schemas_error_response_schema_apierrorresponse", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89240,9 +89418,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_schemas_error_response_schema", - "target": "backend_src_common_schemas_error_response_schema_errordetailfield" + "target": "backend_src_common_schemas_error_response_schema_errordetailfield", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89251,9 +89429,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_schemas_paginated_response_schema", - "target": "backend_src_common_schemas_paginated_response_schema_paginatedresponse" + "target": "backend_src_common_schemas_paginated_response_schema_paginatedresponse", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89262,9 +89440,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_schemas_paginated_response_schema", - "target": "backend_src_common_schemas_paginated_response_schema_createpaginatedschema" + "target": "backend_src_common_schemas_paginated_response_schema_createpaginatedschema", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89273,9 +89451,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_schemas_paginated_response_schema", - "target": "backend_src_common_schemas_paginated_response_schema_paginationmeta" + "target": "backend_src_common_schemas_paginated_response_schema_paginationmeta", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89284,9 +89462,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_services_sms_service", - "target": "backend_src_common_services_sms_service_smsconfig" + "target": "backend_src_common_services_sms_service_smsconfig", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89295,9 +89473,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_services_sms_service", - "target": "backend_src_common_services_sms_service_melipayamakpattern" + "target": "backend_src_common_services_sms_service_melipayamakpattern", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89306,9 +89484,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_services_sms_service", - "target": "backend_src_common_services_sms_service_smslogquery" + "target": "backend_src_common_services_sms_service_smslogquery", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89317,9 +89495,9 @@ "source_location": "L44", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_services_sms_service", - "target": "backend_src_common_services_sms_service_melipayamakresponse" + "target": "backend_src_common_services_sms_service_melipayamakresponse", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89328,9 +89506,9 @@ "source_location": "L51", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_services_sms_service", - "target": "backend_src_common_services_sms_service_smsservice" + "target": "backend_src_common_services_sms_service_smsservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89339,9 +89517,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_services_sms_service", - "target": "backend_src_common_services_sms_service_sendpatternsmsoptions" + "target": "backend_src_common_services_sms_service_sendpatternsmsoptions", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89350,9 +89528,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_sms_module", - "target": "backend_src_common_sms_module_smsmodule" + "target": "backend_src_common_sms_module_smsmodule", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89361,9 +89539,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_common_utils_phone_utils", - "target": "backend_src_common_utils_phone_utils_normalizemobile" + "target": "backend_src_common_utils_phone_utils_normalizemobile", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89372,9 +89550,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_contact_contact_controller", - "target": "backend_src_contact_contact_controller_contactcontroller" + "target": "backend_src_contact_contact_controller_contactcontroller", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89383,9 +89561,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_contact_contact_module", - "target": "backend_src_contact_contact_module_contactmodule" + "target": "backend_src_contact_contact_module_contactmodule", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89394,9 +89572,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_contact_contact_service", - "target": "backend_src_contact_contact_service_updatecontactinfoitemdto" + "target": "backend_src_contact_contact_service_updatecontactinfoitemdto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89405,9 +89583,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_contact_contact_service", - "target": "backend_src_contact_contact_service_contactservice" + "target": "backend_src_contact_contact_service_contactservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89416,9 +89594,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_contact_contact_service", - "target": "backend_src_contact_contact_service_createcontactsubmissiondto" + "target": "backend_src_contact_contact_service_createcontactsubmissiondto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89427,9 +89605,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_doctors_doctors_controller", - "target": "backend_src_doctors_doctors_controller_doctorscontroller" + "target": "backend_src_doctors_doctors_controller_doctorscontroller", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89438,9 +89616,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_doctors_doctors_module", - "target": "backend_src_doctors_doctors_module_doctorsmodule" + "target": "backend_src_doctors_doctors_module_doctorsmodule", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89449,9 +89627,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_doctors_doctors_service", - "target": "backend_src_doctors_doctors_service_doctorsservice" + "target": "backend_src_doctors_doctors_service_doctorsservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89460,9 +89638,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_doctors_doctors_service", - "target": "backend_src_doctors_doctors_service_doctorquery" + "target": "backend_src_doctors_doctors_service_doctorquery", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89471,9 +89649,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_home_dto_create_home_dto", - "target": "backend_src_home_dto_create_home_dto_createhomedto" + "target": "backend_src_home_dto_create_home_dto_createhomedto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89482,9 +89660,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_home_dto_update_home_dto", - "target": "backend_src_home_dto_update_home_dto_updatehomedto" + "target": "backend_src_home_dto_update_home_dto_updatehomedto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89493,9 +89671,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_home_entities_home_entity", - "target": "backend_src_home_entities_home_entity_home" + "target": "backend_src_home_entities_home_entity_home", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89504,9 +89682,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_home_home_controller", - "target": "backend_src_home_home_controller_homecontroller" + "target": "backend_src_home_home_controller_homecontroller", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89515,9 +89693,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_home_home_module", - "target": "backend_src_home_home_module_homemodule" + "target": "backend_src_home_home_module_homemodule", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89526,9 +89704,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_home_home_service", - "target": "backend_src_home_home_service_homeservice" + "target": "backend_src_home_home_service_homeservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89537,9 +89715,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_controller", - "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller" + "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89548,9 +89726,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_module", - "target": "backend_src_ingredients_ingredients_module_ingredientsmodule" + "target": "backend_src_ingredients_ingredients_module_ingredientsmodule", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89559,9 +89737,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_ingredients_ingredients_service", - "target": "backend_src_ingredients_ingredients_service_ingredientsservice" + "target": "backend_src_ingredients_ingredients_service_ingredientsservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89570,9 +89748,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_main", - "target": "backend_src_main_bootstrap" + "target": "backend_src_main_bootstrap", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89581,9 +89759,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_dto_create_order_dto", - "target": "backend_src_orders_dto_create_order_dto_orderitemdto" + "target": "backend_src_orders_dto_create_order_dto_orderitemdto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89592,9 +89770,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_dto_create_order_dto", - "target": "backend_src_orders_dto_create_order_dto_createorderdto" + "target": "backend_src_orders_dto_create_order_dto_createorderdto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89603,9 +89781,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_controller", - "target": "backend_src_orders_orders_controller_validatecoupondto" + "target": "backend_src_orders_orders_controller_validatecoupondto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89614,9 +89792,9 @@ "source_location": "L54", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_controller", - "target": "backend_src_orders_orders_controller_orderscontroller" + "target": "backend_src_orders_orders_controller_orderscontroller", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89625,9 +89803,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_module", - "target": "backend_src_orders_orders_module_ordersmodule" + "target": "backend_src_orders_orders_module_ordersmodule", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89636,9 +89814,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_service", - "target": "backend_src_orders_orders_service_ordersservice" + "target": "backend_src_orders_orders_service_ordersservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89647,9 +89825,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_dto_admin_transaction_filter_dto", - "target": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto" + "target": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89658,9 +89836,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_dto_initiate_payment_dto", - "target": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto" + "target": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89669,9 +89847,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_dto_initiate_payment_dto", - "target": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto" + "target": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89680,9 +89858,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_dto_verify_payment_dto", - "target": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto" + "target": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89691,9 +89869,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_interfaces_payment_gateway_interface", - "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestoptions" + "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestoptions", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89702,9 +89880,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_interfaces_payment_gateway_interface", - "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentverifyresult" + "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentverifyresult", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89713,9 +89891,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_interfaces_payment_gateway_interface", - "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentinquiryresult" + "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentinquiryresult", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89724,9 +89902,9 @@ "source_location": "L35", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_interfaces_payment_gateway_interface", - "target": "backend_src_payment_interfaces_payment_gateway_interface_gatewayhealthresult" + "target": "backend_src_payment_interfaces_payment_gateway_interface_gatewayhealthresult", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89735,9 +89913,9 @@ "source_location": "L48", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_interfaces_payment_gateway_interface", - "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway" + "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89746,9 +89924,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_interfaces_payment_gateway_interface", - "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestresult" + "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestresult", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89757,9 +89935,9 @@ "source_location": "L38", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_payment_controller_paymentcontroller" + "target": "backend_src_payment_payment_controller_paymentcontroller", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89768,9 +89946,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_module", - "target": "backend_src_payment_payment_module_paymentmodule" + "target": "backend_src_payment_payment_module_paymentmodule", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89779,9 +89957,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_service", - "target": "backend_src_payment_payment_service_clientmetadata" + "target": "backend_src_payment_payment_service_clientmetadata", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89790,9 +89968,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_service", - "target": "backend_src_payment_payment_service_paymentservice" + "target": "backend_src_payment_payment_service_paymentservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89801,9 +89979,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_zibal_service", - "target": "backend_src_payment_zibal_service_zibalrequestresponse" + "target": "backend_src_payment_zibal_service_zibalrequestresponse", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89812,9 +89990,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_zibal_service", - "target": "backend_src_payment_zibal_service_zibalverifyresponse" + "target": "backend_src_payment_zibal_service_zibalverifyresponse", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89823,9 +90001,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_zibal_service", - "target": "backend_src_payment_zibal_service_zibalinquiryresponse" + "target": "backend_src_payment_zibal_service_zibalinquiryresponse", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89834,9 +90012,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_zibal_service", - "target": "backend_src_payment_zibal_service_zibalservice" + "target": "backend_src_payment_zibal_service_zibalservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89845,9 +90023,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_dto_create_health_log_dto", - "target": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto" + "target": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89856,9 +90034,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_dto_create_pet_dto", - "target": "backend_src_pets_dto_create_pet_dto_createpetdto" + "target": "backend_src_pets_dto_create_pet_dto_createpetdto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89867,9 +90045,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_dto_create_reminder_dto", - "target": "backend_src_pets_dto_create_reminder_dto_createreminderdto" + "target": "backend_src_pets_dto_create_reminder_dto_createreminderdto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89878,9 +90056,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_dto_update_pet_dto", - "target": "backend_src_pets_dto_update_pet_dto_updatepetdto" + "target": "backend_src_pets_dto_update_pet_dto_updatepetdto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89889,9 +90067,9 @@ "source_location": "L55", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_controller", - "target": "backend_src_pets_pets_controller_petscontroller" + "target": "backend_src_pets_pets_controller_petscontroller", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89900,9 +90078,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_module", - "target": "backend_src_pets_pets_module_petsmodule" + "target": "backend_src_pets_pets_module_petsmodule", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89911,9 +90089,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_service", - "target": "backend_src_pets_pets_service_healthloginput" + "target": "backend_src_pets_pets_service_healthloginput", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89922,9 +90100,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_service", - "target": "backend_src_pets_pets_service_petsservice" + "target": "backend_src_pets_pets_service_petsservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89933,9 +90111,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_service", - "target": "backend_src_pets_pets_service_reminderinput" + "target": "backend_src_pets_pets_service_reminderinput", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89944,9 +90122,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller", - "target": "backend_src_prescriptions_prescriptions_controller_userreqpayload" + "target": "backend_src_prescriptions_prescriptions_controller_userreqpayload", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89955,9 +90133,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_controller", - "target": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller" + "target": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89966,9 +90144,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_module", - "target": "backend_src_prescriptions_prescriptions_module_prescriptionsmodule" + "target": "backend_src_prescriptions_prescriptions_module_prescriptionsmodule", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89977,9 +90155,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_prescriptions_prescriptions_service", - "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice" + "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89988,9 +90166,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_prisma_prisma_module", - "target": "backend_src_prisma_prisma_module_prismamodule" + "target": "backend_src_prisma_prisma_module_prismamodule", + "confidence_score": 1.0 }, { "relation": "contains", @@ -89999,9 +90177,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_prisma_prisma_service", - "target": "backend_src_prisma_prisma_service_prismaservice" + "target": "backend_src_prisma_prisma_service_prismaservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90010,9 +90188,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_dto_get_products_dto", - "target": "backend_src_products_dto_get_products_dto_getproductsdto" + "target": "backend_src_products_dto_get_products_dto_getproductsdto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90021,9 +90199,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_controller", - "target": "backend_src_products_products_controller_productscontroller" + "target": "backend_src_products_products_controller_productscontroller", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90032,9 +90210,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_module", - "target": "backend_src_products_products_module_productsmodule" + "target": "backend_src_products_products_module_productsmodule", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90043,9 +90221,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_service", - "target": "backend_src_products_products_service_productsservice" + "target": "backend_src_products_products_service_productsservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90054,9 +90232,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_redis_redis_module", - "target": "backend_src_redis_redis_module_redismodule" + "target": "backend_src_redis_redis_module_redismodule", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90065,9 +90243,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_redis_redis_service", - "target": "backend_src_redis_redis_service_redisservice" + "target": "backend_src_redis_redis_service_redisservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90076,9 +90254,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_dto_create_review_dto", - "target": "backend_src_reviews_dto_create_review_dto_createreviewdto" + "target": "backend_src_reviews_dto_create_review_dto_createreviewdto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90087,9 +90265,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_dto_update_review_dto", - "target": "backend_src_reviews_dto_update_review_dto_updatereviewdto" + "target": "backend_src_reviews_dto_update_review_dto_updatereviewdto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90098,9 +90276,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller", - "target": "backend_src_reviews_reviews_controller_reviewscontroller" + "target": "backend_src_reviews_reviews_controller_reviewscontroller", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90109,9 +90287,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_module", - "target": "backend_src_reviews_reviews_module_reviewsmodule" + "target": "backend_src_reviews_reviews_module_reviewsmodule", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90120,9 +90298,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_service", - "target": "backend_src_reviews_reviews_service_reviewsservice" + "target": "backend_src_reviews_reviews_service_reviewsservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90131,9 +90309,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_seo_seo_controller", - "target": "backend_src_seo_seo_controller_seocontroller" + "target": "backend_src_seo_seo_controller_seocontroller", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90142,9 +90320,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_seo_seo_module", - "target": "backend_src_seo_seo_module_seomodule" + "target": "backend_src_seo_seo_module_seomodule", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90153,9 +90331,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_seo_seo_service", - "target": "backend_src_seo_seo_service_seoservice" + "target": "backend_src_seo_seo_service_seoservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90164,9 +90342,9 @@ "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" + "target": "backend_src_settings_default_ui_texts_default_ui_texts", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90175,9 +90353,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_dto_sms_log_query_dto", - "target": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto" + "target": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90186,9 +90364,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller", - "target": "backend_src_settings_settings_controller_settingscontroller" + "target": "backend_src_settings_settings_controller_settingscontroller", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90197,9 +90375,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_module", - "target": "backend_src_settings_settings_module_settingsmodule" + "target": "backend_src_settings_settings_module_settingsmodule", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90208,9 +90386,9 @@ "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" + "target": "backend_src_settings_settings_service_canonical_aliases", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90219,9 +90397,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service", - "target": "backend_src_settings_settings_service_scientifictermdata" + "target": "backend_src_settings_settings_service_scientifictermdata", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90230,9 +90408,9 @@ "source_location": "L86", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service", - "target": "backend_src_settings_settings_service_settingsservice" + "target": "backend_src_settings_settings_service_settingsservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90241,9 +90419,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_controller", - "target": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller" + "target": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90252,9 +90430,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_module", - "target": "backend_src_smart_advisor_smart_advisor_module_smartadvisormodule" + "target": "backend_src_smart_advisor_smart_advisor_module_smartadvisormodule", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90263,9 +90441,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_smart_advisor_smart_advisor_service", - "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice" + "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90274,9 +90452,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller", - "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller" + "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90285,9 +90463,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_module", - "target": "backend_src_testimonials_testimonials_module_testimonialsmodule" + "target": "backend_src_testimonials_testimonials_module_testimonialsmodule", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90296,9 +90474,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_service", - "target": "backend_src_testimonials_testimonials_service_testimonialsservice" + "target": "backend_src_testimonials_testimonials_service_testimonialsservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90307,9 +90485,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_dto_create_ticket_dto", - "target": "backend_src_tickets_dto_create_ticket_dto_replyticketdto" + "target": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90318,9 +90496,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_dto_create_ticket_dto", - "target": "backend_src_tickets_dto_create_ticket_dto_createticketdto" + "target": "backend_src_tickets_dto_create_ticket_dto_createticketdto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90329,9 +90507,9 @@ "source_location": "L53", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_dto_create_ticket_dto", - "target": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto" + "target": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90340,9 +90518,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_dto_ticket_query_dto", - "target": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto" + "target": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90351,9 +90529,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_tickets_tickets_controller_ticketscontroller" + "target": "backend_src_tickets_tickets_controller_ticketscontroller", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90362,9 +90540,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_module", - "target": "backend_src_tickets_tickets_module_ticketsmodule" + "target": "backend_src_tickets_tickets_module_ticketsmodule", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90373,9 +90551,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service", - "target": "backend_src_tickets_tickets_service_ticketsservice" + "target": "backend_src_tickets_tickets_service_ticketsservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90384,9 +90562,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_dto_address_dto", - "target": "backend_src_users_dto_address_dto_addressdto" + "target": "backend_src_users_dto_address_dto_addressdto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90395,9 +90573,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_dto_update_profile_dto", - "target": "backend_src_users_dto_update_profile_dto_updateprofiledto" + "target": "backend_src_users_dto_update_profile_dto_updateprofiledto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90406,9 +90584,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_controller", - "target": "backend_src_users_users_controller_userscontroller" + "target": "backend_src_users_users_controller_userscontroller", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90417,9 +90595,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_module", - "target": "backend_src_users_users_module_usersmodule" + "target": "backend_src_users_users_module_usersmodule", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90428,9 +90606,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_service", - "target": "backend_src_users_users_service_useraddressinput" + "target": "backend_src_users_users_service_useraddressinput", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90439,9 +90617,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_service", - "target": "backend_src_users_users_service_usersservice" + "target": "backend_src_users_users_service_usersservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90450,9 +90628,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_videos_dto_create_video_dto", - "target": "backend_src_videos_dto_create_video_dto_createvideodto" + "target": "backend_src_videos_dto_create_video_dto_createvideodto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90461,9 +90639,9 @@ "source_location": "L63", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_videos_dto_create_video_dto", - "target": "backend_src_videos_dto_create_video_dto_updatevideodto" + "target": "backend_src_videos_dto_create_video_dto_updatevideodto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90472,9 +90650,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_videos_dto_get_videos_query_dto", - "target": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto" + "target": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90483,9 +90661,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_videos_videos_controller", - "target": "backend_src_videos_videos_controller_videoscontroller" + "target": "backend_src_videos_videos_controller_videoscontroller", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90494,9 +90672,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_videos_videos_module", - "target": "backend_src_videos_videos_module_videosmodule" + "target": "backend_src_videos_videos_module_videosmodule", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90505,9 +90683,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_videos_videos_service", - "target": "backend_src_videos_videos_service_videosservice" + "target": "backend_src_videos_videos_service_videosservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90516,9 +90694,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_videos_videos_service", - "target": "backend_src_videos_videos_service_videoquery" + "target": "backend_src_videos_videos_service_videoquery", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90527,9 +90705,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wholesale_dto_wholesale_apply_dto", - "target": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto" + "target": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90538,9 +90716,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_controller", - "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller" + "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90549,9 +90727,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_module", - "target": "backend_src_wholesale_wholesale_module_wholesalemodule" + "target": "backend_src_wholesale_wholesale_module_wholesalemodule", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90560,9 +90738,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wholesale_wholesale_service", - "target": "backend_src_wholesale_wholesale_service_wholesaleservice" + "target": "backend_src_wholesale_wholesale_service_wholesaleservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90571,9 +90749,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wiki_dto_create_wiki_dto", - "target": "backend_src_wiki_dto_create_wiki_dto_createwikidto" + "target": "backend_src_wiki_dto_create_wiki_dto_createwikidto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90582,9 +90760,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wiki_dto_update_wiki_dto", - "target": "backend_src_wiki_dto_update_wiki_dto_updatewikidto" + "target": "backend_src_wiki_dto_update_wiki_dto_updatewikidto", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90593,9 +90771,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wiki_entities_wiki_entity", - "target": "backend_src_wiki_entities_wiki_entity_wiki" + "target": "backend_src_wiki_entities_wiki_entity_wiki", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90604,9 +90782,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wiki_wiki_controller", - "target": "backend_src_wiki_wiki_controller_wikicontroller" + "target": "backend_src_wiki_wiki_controller_wikicontroller", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90615,9 +90793,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wiki_wiki_module", - "target": "backend_src_wiki_wiki_module_wikimodule" + "target": "backend_src_wiki_wiki_module_wikimodule", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90626,9 +90804,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_wiki_wiki_service", - "target": "backend_src_wiki_wiki_service_wikiservice" + "target": "backend_src_wiki_wiki_service_wikiservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90637,9 +90815,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig", - "target": "backend_tsconfig_compileroptions" + "target": "backend_tsconfig_compileroptions", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90648,9 +90826,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig", - "target": "backend_tsconfig_include" + "target": "backend_tsconfig_include", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90659,9 +90837,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig", - "target": "backend_tsconfig_exclude" + "target": "backend_tsconfig_exclude", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90670,9 +90848,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig_build", - "target": "backend_tsconfig_build_extends" + "target": "backend_tsconfig_build_extends", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90681,9 +90859,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig_build", - "target": "backend_tsconfig_build_exclude" + "target": "backend_tsconfig_build_exclude", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90692,9 +90870,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_emitdecoratormetadata" + "target": "backend_tsconfig_compileroptions_emitdecoratormetadata", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90703,9 +90881,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_experimentaldecorators" + "target": "backend_tsconfig_compileroptions_experimentaldecorators", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90714,9 +90892,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_allowsyntheticdefaultimports" + "target": "backend_tsconfig_compileroptions_allowsyntheticdefaultimports", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90725,9 +90903,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_target" + "target": "backend_tsconfig_compileroptions_target", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90736,9 +90914,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_sourcemap" + "target": "backend_tsconfig_compileroptions_sourcemap", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90747,9 +90925,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_outdir" + "target": "backend_tsconfig_compileroptions_outdir", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90758,9 +90936,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_rootdir" + "target": "backend_tsconfig_compileroptions_rootdir", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90769,9 +90947,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_baseurl" + "target": "backend_tsconfig_compileroptions_baseurl", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90780,9 +90958,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_incremental" + "target": "backend_tsconfig_compileroptions_incremental", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90791,9 +90969,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_skiplibcheck" + "target": "backend_tsconfig_compileroptions_skiplibcheck", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90802,9 +90980,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_strictnullchecks" + "target": "backend_tsconfig_compileroptions_strictnullchecks", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90813,9 +90991,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_forceconsistentcasinginfilenames" + "target": "backend_tsconfig_compileroptions_forceconsistentcasinginfilenames", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90824,9 +91002,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_noimplicitany" + "target": "backend_tsconfig_compileroptions_noimplicitany", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90835,9 +91013,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_strictbindcallapply" + "target": "backend_tsconfig_compileroptions_strictbindcallapply", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90846,9 +91024,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_nofallthroughcasesinswitch" + "target": "backend_tsconfig_compileroptions_nofallthroughcasesinswitch", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90857,9 +91035,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_module" + "target": "backend_tsconfig_compileroptions_module", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90868,9 +91046,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_moduleresolution" + "target": "backend_tsconfig_compileroptions_moduleresolution", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90879,9 +91057,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_resolvepackagejsonexports" + "target": "backend_tsconfig_compileroptions_resolvepackagejsonexports", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90890,9 +91068,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_esmoduleinterop" + "target": "backend_tsconfig_compileroptions_esmoduleinterop", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90901,9 +91079,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_isolatedmodules" + "target": "backend_tsconfig_compileroptions_isolatedmodules", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90912,9 +91090,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_declaration" + "target": "backend_tsconfig_compileroptions_declaration", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90923,9 +91101,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_removecomments" + "target": "backend_tsconfig_compileroptions_removecomments", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90934,9 +91112,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "claude", - "target": "claude_graphify" + "target": "claude_graphify", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90945,9 +91123,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "claude_claude", - "target": "claude_claude_graphify" + "target": "claude_claude_graphify", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90956,9 +91134,9 @@ "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" + "target": "claude_skills_graphify_references_add_watch_graphify_reference_add_a_url_and_watch_a_folder", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90967,9 +91145,9 @@ "source_location": "L39", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "claude_skills_graphify_references_add_watch_for_watch", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90978,9 +91156,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "claude_skills_graphify_references_add_watch_for_graphify_add", + "confidence_score": 1.0 }, { "relation": "contains", @@ -90989,9 +91167,9 @@ "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" + "target": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91000,9 +91178,9 @@ "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" + "target": "claude_skills_graphify_references_exports_step_7_neo4j_export_only_if_neo4j_or_neo4j_push_flag", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91011,9 +91189,9 @@ "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" + "target": "claude_skills_graphify_references_exports_step_7a_falkordb_export_only_if_falkordb_or_falkordb_push_flag", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91022,9 +91200,9 @@ "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" + "target": "claude_skills_graphify_references_exports_step_7b_svg_export_only_if_svg_flag", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91033,9 +91211,9 @@ "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" + "target": "claude_skills_graphify_references_exports_step_6b_wiki_only_if_wiki_flag", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91044,9 +91222,9 @@ "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" + "target": "claude_skills_graphify_references_exports_step_7c_graphml_export_only_if_graphml_flag", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91055,9 +91233,9 @@ "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" + "target": "claude_skills_graphify_references_exports_step_7d_mcp_server_only_if_mcp_flag", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91066,9 +91244,9 @@ "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" + "target": "claude_skills_graphify_references_exports_step_8_token_reduction_benchmark_only_if_total_words_5000", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91077,9 +91255,9 @@ "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" + "target": "claude_skills_graphify_references_extraction_spec_graphify_reference_extraction_subagent_prompt", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91088,9 +91266,9 @@ "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" + "target": "claude_skills_graphify_references_github_and_merge_graphify_reference_github_clone_and_cross_repo_merge", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91099,9 +91277,9 @@ "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" + "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", @@ -91110,9 +91288,9 @@ "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" + "target": "claude_skills_graphify_references_hooks_graphify_reference_commit_hook_and_native_claude_md_integration", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91121,9 +91299,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "claude_skills_graphify_references_hooks_for_native_claude_md_integration", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91132,9 +91310,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "claude_skills_graphify_references_hooks_for_git_commit_hook", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91143,9 +91321,9 @@ "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" + "target": "claude_skills_graphify_references_query_graphify_reference_query_path_explain", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91154,9 +91332,9 @@ "source_location": "L186", "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_for_graphify_path" + "target": "claude_skills_graphify_references_query_for_graphify_path", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91165,9 +91343,9 @@ "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" + "target": "claude_skills_graphify_references_query_step_0_constrained_query_expansion_required_before_traversal", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91176,9 +91354,9 @@ "source_location": "L254", "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_for_graphify_explain" + "target": "claude_skills_graphify_references_query_for_graphify_explain", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91187,9 +91365,9 @@ "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" + "target": "claude_skills_graphify_references_query_step_1_traversal", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91198,9 +91376,9 @@ "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" + "target": "claude_skills_graphify_references_transcribe_graphify_reference_transcribe_video_and_audio", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91209,9 +91387,9 @@ "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" + "target": "claude_skills_graphify_references_transcribe_step_2_5_transcribe_video_audio_files_only_if_video_files_detected", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91220,9 +91398,9 @@ "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" + "target": "claude_skills_graphify_references_update_graphify_reference_incremental_update_and_cluster_only", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91231,9 +91409,9 @@ "source_location": "L202", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "claude_skills_graphify_references_update_graphify_reference_incremental_update_and_cluster_only", - "target": "claude_skills_graphify_references_update_for_cluster_only" + "target": "claude_skills_graphify_references_update_for_cluster_only", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91242,9 +91420,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "claude_skills_graphify_references_update_graphify_reference_incremental_update_and_cluster_only", - "target": "claude_skills_graphify_references_update_for_update_incremental_re_extraction" + "target": "claude_skills_graphify_references_update_for_update_incremental_re_extraction", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91253,9 +91431,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "claude_skills_graphify_skill", - "target": "claude_skills_graphify_skill_graphify" + "target": "claude_skills_graphify_skill_graphify", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91264,9 +91442,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "claude_skills_graphify_skill_graphify", - "target": "claude_skills_graphify_skill_usage" + "target": "claude_skills_graphify_skill_usage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91275,9 +91453,9 @@ "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" + "target": "claude_skills_graphify_skill_what_graphify_is_for", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91286,9 +91464,9 @@ "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" + "target": "claude_skills_graphify_skill_what_you_must_do_when_invoked", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91297,9 +91475,9 @@ "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" + "target": "claude_skills_graphify_skill_interpreter_guard_for_subcommands", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91308,9 +91486,9 @@ "source_location": "L701", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "claude_skills_graphify_skill_graphify", - "target": "claude_skills_graphify_skill_for_update_and_cluster_only" + "target": "claude_skills_graphify_skill_for_update_and_cluster_only", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91319,9 +91497,9 @@ "source_location": "L707", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "claude_skills_graphify_skill_graphify", - "target": "claude_skills_graphify_skill_for_graphify_query" + "target": "claude_skills_graphify_skill_for_graphify_query", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91330,9 +91508,9 @@ "source_location": "L719", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "claude_skills_graphify_skill_graphify", - "target": "claude_skills_graphify_skill_for_graphify_add_and_watch" + "target": "claude_skills_graphify_skill_for_graphify_add_and_watch", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91341,9 +91519,9 @@ "source_location": "L725", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "claude_skills_graphify_skill_graphify", - "target": "claude_skills_graphify_skill_for_the_commit_hook_and_native_claude_md_integration" + "target": "claude_skills_graphify_skill_for_the_commit_hook_and_native_claude_md_integration", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91352,9 +91530,9 @@ "source_location": "L731", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "claude_skills_graphify_skill_graphify", - "target": "claude_skills_graphify_skill_troubleshooting" + "target": "claude_skills_graphify_skill_troubleshooting", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91363,9 +91541,9 @@ "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" + "target": "claude_skills_graphify_skill_honesty_rules", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91374,9 +91552,9 @@ "source_location": "L192", "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_part_a_structural_extraction_for_code_files" + "target": "claude_skills_graphify_skill_part_a_structural_extraction_for_code_files", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91385,9 +91563,9 @@ "source_location": "L218", "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_part_b_semantic_extraction_parallel_subagents" + "target": "claude_skills_graphify_skill_part_b_semantic_extraction_parallel_subagents", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91396,9 +91574,9 @@ "source_location": "L381", "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_part_c_merge_ast_semantic_into_final_extraction" + "target": "claude_skills_graphify_skill_part_c_merge_ast_semantic_into_final_extraction", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91407,9 +91585,9 @@ "source_location": "L733", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "claude_skills_graphify_skill_troubleshooting", - "target": "claude_skills_graphify_skill_powershell_5_1_vertical_scrolling_stops_working" + "target": "claude_skills_graphify_skill_powershell_5_1_vertical_scrolling_stops_working", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91418,9 +91596,9 @@ "source_location": "L129", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "claude_skills_graphify_skill_what_you_must_do_when_invoked", - "target": "claude_skills_graphify_skill_step_2_detect_files" + "target": "claude_skills_graphify_skill_step_2_detect_files", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91429,9 +91607,9 @@ "source_location": "L169", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "claude_skills_graphify_skill_step_2_5_video_and_audio_only_if_video_files_detected", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91440,9 +91618,9 @@ "source_location": "L173", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "claude_skills_graphify_skill_what_you_must_do_when_invoked", - "target": "claude_skills_graphify_skill_step_3_extract_entities_and_relationships" + "target": "claude_skills_graphify_skill_step_3_extract_entities_and_relationships", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91451,9 +91629,9 @@ "source_location": "L415", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "claude_skills_graphify_skill_what_you_must_do_when_invoked", - "target": "claude_skills_graphify_skill_step_4_build_graph_cluster_analyze_generate_outputs" + "target": "claude_skills_graphify_skill_step_4_build_graph_cluster_analyze_generate_outputs", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91462,9 +91640,9 @@ "source_location": "L478", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "claude_skills_graphify_skill_step_4_5_graph_health_check_read_only_integrity_gate", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91473,9 +91651,9 @@ "source_location": "L504", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "claude_skills_graphify_skill_what_you_must_do_when_invoked", - "target": "claude_skills_graphify_skill_step_5_label_communities" + "target": "claude_skills_graphify_skill_step_5_label_communities", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91484,9 +91662,9 @@ "source_location": "L553", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "claude_skills_graphify_skill_what_you_must_do_when_invoked", - "target": "claude_skills_graphify_skill_step_6_generate_obsidian_vault_opt_in_html" + "target": "claude_skills_graphify_skill_step_6_generate_obsidian_vault_opt_in_html", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91495,9 +91673,9 @@ "source_location": "L573", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "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", @@ -91506,9 +91684,9 @@ "source_location": "L579", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "claude_skills_graphify_skill_step_9_save_manifest_update_cost_tracker_clean_up_and_report", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91517,9 +91695,9 @@ "source_location": "L61", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "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", @@ -91528,9 +91706,9 @@ "source_location": "L65", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "claude_skills_graphify_skill_what_you_must_do_when_invoked", - "target": "claude_skills_graphify_skill_step_1_ensure_graphify_is_installed" + "target": "claude_skills_graphify_skill_step_1_ensure_graphify_is_installed", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91539,9 +91717,9 @@ "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" + "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", @@ -91550,9 +91728,9 @@ "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" + "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", @@ -91561,9 +91739,9 @@ "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" + "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", @@ -91572,9 +91750,9 @@ "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" + "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", @@ -91583,9 +91761,9 @@ "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" + "target": "docs_04_setup_and_deployment_\u06f1_\u0645\u062d\u06cc\u0637_\u062a\u0648\u0633\u0639\u0647_development_mode", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91594,9 +91772,9 @@ "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" + "target": "docs_04_setup_and_deployment_\u06f3_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_nginx_reverse_proxy", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91605,9 +91783,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u0628\u06a9_\u0627\u0646\u062f", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91616,9 +91794,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "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", @@ -91627,9 +91805,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "docs_04_setup_and_deployment_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91638,9 +91816,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "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", @@ -91649,9 +91827,9 @@ "source_location": "L48", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "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", @@ -91660,9 +91838,9 @@ "source_location": "L64", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "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", @@ -91671,9 +91849,9 @@ "source_location": "L78", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "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", @@ -91682,9 +91860,9 @@ "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" + "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", @@ -91693,9 +91871,9 @@ "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" + "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", @@ -91704,9 +91882,9 @@ "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" + "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", @@ -91715,9 +91893,9 @@ "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" + "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", @@ -91726,9 +91904,9 @@ "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" + "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", @@ -91737,9 +91915,9 @@ "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" + "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", @@ -91748,9 +91926,9 @@ "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" + "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", @@ -91759,9 +91937,9 @@ "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" + "target": "docs_06_testing_\u06f3_\u062a\u0633\u062a_\u0647\u0627\u06cc_ui_\u062f\u0631_frontend_component_testing", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91770,9 +91948,9 @@ "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" + "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", @@ -91781,9 +91959,9 @@ "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" + "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", @@ -91792,9 +91970,9 @@ "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" + "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", @@ -91803,9 +91981,9 @@ "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" + "target": "docs_audit_00_repository_map_repository_map", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91814,9 +91992,9 @@ "source_location": "L17", "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_1_active_customer_storefront_react_19_vite_application" + "target": "docs_audit_00_repository_map_1_active_customer_storefront_react_19_vite_application", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91825,9 +92003,9 @@ "source_location": "L23", "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_2_active_backend_service_nestjs_application" + "target": "docs_audit_00_repository_map_2_active_backend_service_nestjs_application", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91836,9 +92014,9 @@ "source_location": "L29", "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_3_excluded_placeholder_non_auditable_directories" + "target": "docs_audit_00_repository_map_3_excluded_placeholder_non_auditable_directories", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91847,9 +92025,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_00_repository_map_repository_map", - "target": "docs_audit_00_repository_map_active_applications_non_auditable_scopes" + "target": "docs_audit_00_repository_map_active_applications_non_auditable_scopes", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91858,9 +92036,9 @@ "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" + "target": "docs_audit_00_repository_map_repository_structure_overview", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91869,9 +92047,9 @@ "source_location": "L35", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_00_repository_map_repository_map", - "target": "docs_audit_00_repository_map_mandatory_global_audit_exclusions" + "target": "docs_audit_00_repository_map_mandatory_global_audit_exclusions", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91880,9 +92058,9 @@ "source_location": "L50", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_00_repository_map_repository_map", - "target": "docs_audit_00_repository_map_important_configuration_infrastructure_files" + "target": "docs_audit_00_repository_map_important_configuration_infrastructure_files", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91891,9 +92069,9 @@ "source_location": "L61", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_00_repository_map_repository_map", - "target": "docs_audit_00_repository_map_documentation_governance" + "target": "docs_audit_00_repository_map_documentation_governance", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91902,9 +92080,9 @@ "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" + "target": "docs_audit_01_system_discovery_system_discovery", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91913,9 +92091,9 @@ "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" + "target": "docs_audit_01_system_discovery_excluded_non_auditable_artifacts", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91924,9 +92102,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_01_system_discovery_current_architecture", - "target": "docs_audit_01_system_discovery_active_core_applications" + "target": "docs_audit_01_system_discovery_active_core_applications", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91935,9 +92113,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_01_system_discovery_system_discovery", - "target": "docs_audit_01_system_discovery_major_business_domains_discovered" + "target": "docs_audit_01_system_discovery_major_business_domains_discovered", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91946,9 +92124,9 @@ "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" + "target": "docs_audit_01_system_discovery_technical_architecture_summary", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91957,9 +92135,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_01_system_discovery_system_discovery", - "target": "docs_audit_01_system_discovery_current_architecture" + "target": "docs_audit_01_system_discovery_current_architecture", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91968,9 +92146,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_01_system_discovery_system_discovery", - "target": "docs_audit_01_system_discovery_evidence_based_status_matrix" + "target": "docs_audit_01_system_discovery_evidence_based_status_matrix", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91979,9 +92157,9 @@ "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" + "target": "docs_audit_02_audit_plan_audit_plan_subagent_roles", + "confidence_score": 1.0 }, { "relation": "contains", @@ -91990,9 +92168,9 @@ "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" + "target": "docs_audit_02_audit_plan_mandatory_global_audit_exclusions", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92001,9 +92179,9 @@ "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" + "target": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92012,9 +92190,9 @@ "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" + "target": "docs_audit_02_audit_plan_subagent_execution_mode", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92023,9 +92201,9 @@ "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" + "target": "docs_audit_02_audit_plan_strategy_for_deduplication_consolidation", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92034,9 +92212,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", - "target": "docs_audit_02_audit_plan_1_lead_architect_orchestrator" + "target": "docs_audit_02_audit_plan_1_lead_architect_orchestrator", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92045,9 +92223,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", - "target": "docs_audit_02_audit_plan_2_react_vite_storefront_auditor" + "target": "docs_audit_02_audit_plan_2_react_vite_storefront_auditor", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92056,9 +92234,9 @@ "source_location": "L38", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", - "target": "docs_audit_02_audit_plan_3_nestjs_backend_auditor" + "target": "docs_audit_02_audit_plan_3_nestjs_backend_auditor", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92067,9 +92245,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", - "target": "docs_audit_02_audit_plan_4_admin_features_auditor" + "target": "docs_audit_02_audit_plan_4_admin_features_auditor", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92078,9 +92256,9 @@ "source_location": "L48", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", - "target": "docs_audit_02_audit_plan_5_database_data_integrity_auditor" + "target": "docs_audit_02_audit_plan_5_database_data_integrity_auditor", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92089,9 +92267,9 @@ "source_location": "L53", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", - "target": "docs_audit_02_audit_plan_6_security_auditor" + "target": "docs_audit_02_audit_plan_6_security_auditor", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92100,9 +92278,9 @@ "source_location": "L58", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", - "target": "docs_audit_02_audit_plan_7_typescript_code_quality_auditor" + "target": "docs_audit_02_audit_plan_7_typescript_code_quality_auditor", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92111,9 +92289,9 @@ "source_location": "L63", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", - "target": "docs_audit_02_audit_plan_8_testing_reliability_auditor" + "target": "docs_audit_02_audit_plan_8_testing_reliability_auditor", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92122,9 +92300,9 @@ "source_location": "L68", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", - "target": "docs_audit_02_audit_plan_9_devops_ci_cd_auditor" + "target": "docs_audit_02_audit_plan_9_devops_ci_cd_auditor", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92133,9 +92311,9 @@ "source_location": "L73", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", - "target": "docs_audit_02_audit_plan_10_documentation_engineer" + "target": "docs_audit_02_audit_plan_10_documentation_engineer", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92144,9 +92322,9 @@ "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" + "target": "docs_audit_03_baseline_command_plan_baseline_command_plan_reconciled_command_history", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92155,9 +92333,9 @@ "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" + "target": "docs_audit_03_baseline_command_plan_package_scripts_safety_analysis", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92166,9 +92344,9 @@ "source_location": "L3", "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_attempted_command_execution_log" + "target": "docs_audit_03_baseline_command_plan_attempted_command_execution_log", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92177,9 +92355,9 @@ "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" + "target": "docs_audit_03_baseline_command_plan_permitted_safe_checks_for_phase_2", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92188,9 +92366,9 @@ "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" + "target": "docs_audit_03_baseline_command_plan_root_package_json_scripts", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92199,9 +92377,9 @@ "source_location": "L29", "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_backend_backend_package_json_scripts" + "target": "docs_audit_03_baseline_command_plan_backend_backend_package_json_scripts", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92210,9 +92388,9 @@ "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" + "target": "docs_audit_04_open_questions_open_questions", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92221,9 +92399,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_04_open_questions_open_questions", - "target": "docs_audit_04_open_questions_3_deployment_ci_cd_pipeline_specifications" + "target": "docs_audit_04_open_questions_3_deployment_ci_cd_pipeline_specifications", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92232,9 +92410,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_04_open_questions_open_questions", - "target": "docs_audit_04_open_questions_4_sms_otp_service_provider" + "target": "docs_audit_04_open_questions_4_sms_otp_service_provider", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92243,9 +92421,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_04_open_questions_open_questions", - "target": "docs_audit_04_open_questions_1_storefront_migration_roadmap_frontend_application" + "target": "docs_audit_04_open_questions_1_storefront_migration_roadmap_frontend_application", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92254,9 +92432,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_04_open_questions_open_questions", - "target": "docs_audit_04_open_questions_2_payment_gateway_integration_provider" + "target": "docs_audit_04_open_questions_2_payment_gateway_integration_provider", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92265,9 +92443,9 @@ "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" + "target": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92276,9 +92454,9 @@ "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" + "target": "docs_audit_06_storefront_audit_title", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92287,9 +92465,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_domain" + "target": "docs_audit_06_storefront_audit_domain", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92298,9 +92476,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_category" + "target": "docs_audit_06_storefront_audit_category", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92309,9 +92487,9 @@ "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" + "target": "docs_audit_06_storefront_audit_severity", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92320,9 +92498,9 @@ "source_location": "L38", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_confidence" + "target": "docs_audit_06_storefront_audit_confidence", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92331,9 +92509,9 @@ "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" + "target": "docs_audit_06_storefront_audit_status", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92342,9 +92520,9 @@ "source_location": "L44", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_affected_application" + "target": "docs_audit_06_storefront_audit_affected_application", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92353,9 +92531,9 @@ "source_location": "L47", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_affected_files" + "target": "docs_audit_06_storefront_audit_affected_files", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92364,9 +92542,9 @@ "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" + "target": "docs_audit_06_storefront_audit_relevant_symbols_or_lines", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92375,9 +92553,9 @@ "source_location": "L54", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_evidence" + "target": "docs_audit_06_storefront_audit_evidence", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92386,9 +92564,9 @@ "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" + "target": "docs_audit_06_storefront_audit_problem", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92397,9 +92575,9 @@ "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" + "target": "docs_audit_06_storefront_audit_root_cause", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92408,9 +92586,9 @@ "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" + "target": "docs_audit_06_storefront_audit_why_it_matters", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92419,9 +92597,9 @@ "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" + "target": "docs_audit_06_storefront_audit_user_or_business_impact", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92430,9 +92608,9 @@ "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" + "target": "docs_audit_06_storefront_audit_technical_impact", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92441,9 +92619,9 @@ "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" + "target": "docs_audit_06_storefront_audit_security_or_data_integrity_impact", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92452,9 +92630,9 @@ "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" + "target": "docs_audit_06_storefront_audit_recommended_direction", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92463,9 +92641,9 @@ "source_location": "L78", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_alternative_direction" + "target": "docs_audit_06_storefront_audit_alternative_direction", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92474,9 +92652,9 @@ "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" + "target": "docs_audit_06_storefront_audit_implementation_complexity", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92485,9 +92663,9 @@ "source_location": "L84", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_dependencies" + "target": "docs_audit_06_storefront_audit_dependencies", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92496,9 +92674,9 @@ "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" + "target": "docs_audit_06_storefront_audit_risks", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92507,9 +92685,9 @@ "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" + "target": "docs_audit_06_storefront_audit_verification_requirements", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92518,9 +92696,9 @@ "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" + "target": "docs_audit_06_storefront_audit_testing_requirements", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92529,9 +92707,9 @@ "source_location": "L96", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_acceptance_criteria" + "target": "docs_audit_06_storefront_audit_acceptance_criteria", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92540,9 +92718,9 @@ "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" + "target": "docs_audit_06_storefront_audit_notes_and_limitations", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92551,9 +92729,9 @@ "source_location": "L104", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report", - "target": "docs_audit_06_storefront_audit_finding_summary" + "target": "docs_audit_06_storefront_audit_finding_summary", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92562,9 +92740,9 @@ "source_location": "L116", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report", - "target": "docs_audit_06_storefront_audit_completion_statement" + "target": "docs_audit_06_storefront_audit_completion_statement", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92573,9 +92751,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report", - "target": "docs_audit_06_storefront_audit_architecture_overview_confirmed_strengths" + "target": "docs_audit_06_storefront_audit_architecture_overview_confirmed_strengths", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92584,9 +92762,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report", - "target": "docs_audit_06_storefront_audit_findings" + "target": "docs_audit_06_storefront_audit_findings", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92595,9 +92773,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report", - "target": "docs_audit_06_storefront_audit_fe_001" + "target": "docs_audit_06_storefront_audit_fe_001", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92606,9 +92784,9 @@ "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" + "target": "docs_audit_07_backend_audit_nestjs_backend_audit_report", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92617,9 +92795,9 @@ "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" + "target": "docs_audit_07_backend_audit_dependencies", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92628,9 +92806,9 @@ "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" + "target": "docs_audit_07_backend_audit_risks", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92639,9 +92817,9 @@ "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" + "target": "docs_audit_07_backend_audit_verification_requirements", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92650,9 +92828,9 @@ "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" + "target": "docs_audit_07_backend_audit_testing_requirements", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92661,9 +92839,9 @@ "source_location": "L113", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_acceptance_criteria" + "target": "docs_audit_07_backend_audit_acceptance_criteria", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92672,9 +92850,9 @@ "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" + "target": "docs_audit_07_backend_audit_notes_and_limitations", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92683,9 +92861,9 @@ "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" + "target": "docs_audit_07_backend_audit_title", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92694,9 +92872,9 @@ "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" + "target": "docs_audit_07_backend_audit_domain", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92705,9 +92883,9 @@ "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" + "target": "docs_audit_07_backend_audit_category", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92716,9 +92894,9 @@ "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" + "target": "docs_audit_07_backend_audit_severity", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92727,9 +92905,9 @@ "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" + "target": "docs_audit_07_backend_audit_confidence", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92738,9 +92916,9 @@ "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" + "target": "docs_audit_07_backend_audit_status", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92749,9 +92927,9 @@ "source_location": "L53", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_affected_application" + "target": "docs_audit_07_backend_audit_affected_application", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92760,9 +92938,9 @@ "source_location": "L56", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_affected_files" + "target": "docs_audit_07_backend_audit_affected_files", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92771,9 +92949,9 @@ "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" + "target": "docs_audit_07_backend_audit_relevant_symbols_or_lines", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92782,9 +92960,9 @@ "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" + "target": "docs_audit_07_backend_audit_evidence", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92793,9 +92971,9 @@ "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" + "target": "docs_audit_07_backend_audit_problem", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92804,9 +92982,9 @@ "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" + "target": "docs_audit_07_backend_audit_root_cause", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92815,9 +92993,9 @@ "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" + "target": "docs_audit_07_backend_audit_why_it_matters", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92826,9 +93004,9 @@ "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" + "target": "docs_audit_07_backend_audit_user_or_business_impact", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92837,9 +93015,9 @@ "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" + "target": "docs_audit_07_backend_audit_technical_impact", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92848,9 +93026,9 @@ "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" + "target": "docs_audit_07_backend_audit_security_or_data_integrity_impact", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92859,9 +93037,9 @@ "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" + "target": "docs_audit_07_backend_audit_recommended_direction", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92870,9 +93048,9 @@ "source_location": "L95", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_alternative_direction" + "target": "docs_audit_07_backend_audit_alternative_direction", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92881,9 +93059,9 @@ "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" + "target": "docs_audit_07_backend_audit_implementation_complexity", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92892,9 +93070,9 @@ "source_location": "L121", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_nestjs_backend_audit_report", - "target": "docs_audit_07_backend_audit_finding_summary" + "target": "docs_audit_07_backend_audit_finding_summary", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92903,9 +93081,9 @@ "source_location": "L133", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_nestjs_backend_audit_report", - "target": "docs_audit_07_backend_audit_completion_statement" + "target": "docs_audit_07_backend_audit_completion_statement", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92914,9 +93092,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_nestjs_backend_audit_report", - "target": "docs_audit_07_backend_audit_domain_overview_confirmed_strengths" + "target": "docs_audit_07_backend_audit_domain_overview_confirmed_strengths", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92925,9 +93103,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_nestjs_backend_audit_report", - "target": "docs_audit_07_backend_audit_evaluation_of_6_existing_typescript_compiler_diagnostics" + "target": "docs_audit_07_backend_audit_evaluation_of_6_existing_typescript_compiler_diagnostics", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92936,9 +93114,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_nestjs_backend_audit_report", - "target": "docs_audit_07_backend_audit_findings" + "target": "docs_audit_07_backend_audit_findings", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92947,9 +93125,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_07_backend_audit_nestjs_backend_audit_report", - "target": "docs_audit_07_backend_audit_be_001" + "target": "docs_audit_07_backend_audit_be_001", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92958,9 +93136,9 @@ "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" + "target": "docs_audit_08_admin_features_audit_admin_features_audit_report", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92969,9 +93147,9 @@ "source_location": "L101", "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_acceptance_criteria" + "target": "docs_audit_08_admin_features_audit_acceptance_criteria", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92980,9 +93158,9 @@ "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" + "target": "docs_audit_08_admin_features_audit_notes_and_limitations", + "confidence_score": 1.0 }, { "relation": "contains", @@ -92991,9 +93169,9 @@ "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" + "target": "docs_audit_08_admin_features_audit_title", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93002,9 +93180,9 @@ "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" + "target": "docs_audit_08_admin_features_audit_domain", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93013,9 +93191,9 @@ "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" + "target": "docs_audit_08_admin_features_audit_category", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93024,9 +93202,9 @@ "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" + "target": "docs_audit_08_admin_features_audit_severity", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93035,9 +93213,9 @@ "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" + "target": "docs_audit_08_admin_features_audit_confidence", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93046,9 +93224,9 @@ "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" + "target": "docs_audit_08_admin_features_audit_status", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93057,9 +93235,9 @@ "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" + "target": "docs_audit_08_admin_features_audit_affected_application", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93068,9 +93246,9 @@ "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" + "target": "docs_audit_08_admin_features_audit_affected_files", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93079,9 +93257,9 @@ "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" + "target": "docs_audit_08_admin_features_audit_relevant_symbols_or_lines", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93090,9 +93268,9 @@ "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" + "target": "docs_audit_08_admin_features_audit_evidence", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93101,9 +93279,9 @@ "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" + "target": "docs_audit_08_admin_features_audit_problem", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93112,9 +93290,9 @@ "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" + "target": "docs_audit_08_admin_features_audit_root_cause", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93123,9 +93301,9 @@ "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" + "target": "docs_audit_08_admin_features_audit_why_it_matters", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93134,9 +93312,9 @@ "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" + "target": "docs_audit_08_admin_features_audit_user_or_business_impact", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93145,9 +93323,9 @@ "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" + "target": "docs_audit_08_admin_features_audit_technical_impact", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93156,9 +93334,9 @@ "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" + "target": "docs_audit_08_admin_features_audit_security_or_data_integrity_impact", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93167,9 +93345,9 @@ "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" + "target": "docs_audit_08_admin_features_audit_recommended_direction", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93178,9 +93356,9 @@ "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" + "target": "docs_audit_08_admin_features_audit_alternative_direction", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93189,9 +93367,9 @@ "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" + "target": "docs_audit_08_admin_features_audit_implementation_complexity", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93200,9 +93378,9 @@ "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" + "target": "docs_audit_08_admin_features_audit_dependencies", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93211,9 +93389,9 @@ "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" + "target": "docs_audit_08_admin_features_audit_risks", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93222,9 +93400,9 @@ "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" + "target": "docs_audit_08_admin_features_audit_verification_requirements", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93233,9 +93411,9 @@ "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" + "target": "docs_audit_08_admin_features_audit_testing_requirements", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93244,9 +93422,9 @@ "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" + "target": "docs_audit_08_admin_features_audit_finding_summary", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93255,9 +93433,9 @@ "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" + "target": "docs_audit_08_admin_features_audit_completion_statement", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93266,9 +93444,9 @@ "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" + "target": "docs_audit_08_admin_features_audit_domain_overview_confirmed_strengths", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93277,9 +93455,9 @@ "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" + "target": "docs_audit_08_admin_features_audit_findings", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93288,9 +93466,9 @@ "source_location": "L23", "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_adm_001" + "target": "docs_audit_08_admin_features_audit_adm_001", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93299,9 +93477,9 @@ "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" + "target": "docs_audit_09_database_audit_database_and_data_integrity_audit_report", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93310,9 +93488,9 @@ "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" + "target": "docs_audit_09_database_audit_finding_summary", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93321,9 +93499,9 @@ "source_location": "L123", "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_completion_statement" + "target": "docs_audit_09_database_audit_completion_statement", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93332,9 +93510,9 @@ "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" + "target": "docs_audit_09_database_audit_domain_overview_confirmed_strengths", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93343,9 +93521,9 @@ "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" + "target": "docs_audit_09_database_audit_findings", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93354,9 +93532,9 @@ "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" + "target": "docs_audit_09_database_audit_db_001", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93365,9 +93543,9 @@ "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" + "target": "docs_audit_09_database_audit_testing_requirements", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93376,9 +93554,9 @@ "source_location": "L103", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_acceptance_criteria" + "target": "docs_audit_09_database_audit_acceptance_criteria", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93387,9 +93565,9 @@ "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" + "target": "docs_audit_09_database_audit_notes_and_limitations", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93398,9 +93576,9 @@ "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" + "target": "docs_audit_09_database_audit_title", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93409,9 +93587,9 @@ "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" + "target": "docs_audit_09_database_audit_domain", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93420,9 +93598,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_category" + "target": "docs_audit_09_database_audit_category", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93431,9 +93609,9 @@ "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" + "target": "docs_audit_09_database_audit_severity", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93442,9 +93620,9 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_confidence" + "target": "docs_audit_09_database_audit_confidence", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93453,9 +93631,9 @@ "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" + "target": "docs_audit_09_database_audit_status", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93464,9 +93642,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_affected_application" + "target": "docs_audit_09_database_audit_affected_application", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93475,9 +93653,9 @@ "source_location": "L46", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_affected_files" + "target": "docs_audit_09_database_audit_affected_files", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93486,9 +93664,9 @@ "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" + "target": "docs_audit_09_database_audit_relevant_symbols_or_lines", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93497,9 +93675,9 @@ "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" + "target": "docs_audit_09_database_audit_evidence", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93508,9 +93686,9 @@ "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" + "target": "docs_audit_09_database_audit_problem", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93519,9 +93697,9 @@ "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" + "target": "docs_audit_09_database_audit_root_cause", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93530,9 +93708,9 @@ "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" + "target": "docs_audit_09_database_audit_why_it_matters", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93541,9 +93719,9 @@ "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" + "target": "docs_audit_09_database_audit_user_or_business_impact", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93552,9 +93730,9 @@ "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" + "target": "docs_audit_09_database_audit_technical_impact", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93563,9 +93741,9 @@ "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" + "target": "docs_audit_09_database_audit_security_or_data_integrity_impact", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93574,9 +93752,9 @@ "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" + "target": "docs_audit_09_database_audit_recommended_direction", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93585,9 +93763,9 @@ "source_location": "L85", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_alternative_direction" + "target": "docs_audit_09_database_audit_alternative_direction", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93596,9 +93774,9 @@ "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" + "target": "docs_audit_09_database_audit_implementation_complexity", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93607,9 +93785,9 @@ "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" + "target": "docs_audit_09_database_audit_dependencies", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93618,9 +93796,9 @@ "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" + "target": "docs_audit_09_database_audit_risks", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93629,9 +93807,9 @@ "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" + "target": "docs_audit_09_database_audit_verification_requirements", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93640,9 +93818,9 @@ "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" + "target": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93651,9 +93829,9 @@ "source_location": "L101", "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_notes_and_limitations" + "target": "docs_audit_11_code_quality_audit_notes_and_limitations", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93662,9 +93840,9 @@ "source_location": "L24", "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_title" + "target": "docs_audit_11_code_quality_audit_title", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93673,9 +93851,9 @@ "source_location": "L27", "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_domain" + "target": "docs_audit_11_code_quality_audit_domain", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93684,9 +93862,9 @@ "source_location": "L30", "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_category" + "target": "docs_audit_11_code_quality_audit_category", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93695,9 +93873,9 @@ "source_location": "L33", "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_severity" + "target": "docs_audit_11_code_quality_audit_severity", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93706,9 +93884,9 @@ "source_location": "L36", "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_confidence" + "target": "docs_audit_11_code_quality_audit_confidence", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93717,9 +93895,9 @@ "source_location": "L39", "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_status" + "target": "docs_audit_11_code_quality_audit_status", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93728,9 +93906,9 @@ "source_location": "L42", "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_affected_application" + "target": "docs_audit_11_code_quality_audit_affected_application", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93739,9 +93917,9 @@ "source_location": "L45", "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_affected_files" + "target": "docs_audit_11_code_quality_audit_affected_files", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93750,9 +93928,9 @@ "source_location": "L48", "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_relevant_symbols_or_lines" + "target": "docs_audit_11_code_quality_audit_relevant_symbols_or_lines", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93761,9 +93939,9 @@ "source_location": "L51", "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_evidence" + "target": "docs_audit_11_code_quality_audit_evidence", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93772,9 +93950,9 @@ "source_location": "L59", "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_problem" + "target": "docs_audit_11_code_quality_audit_problem", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93783,9 +93961,9 @@ "source_location": "L62", "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_root_cause" + "target": "docs_audit_11_code_quality_audit_root_cause", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93794,9 +93972,9 @@ "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" + "target": "docs_audit_11_code_quality_audit_why_it_matters", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93805,9 +93983,9 @@ "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" + "target": "docs_audit_11_code_quality_audit_user_or_business_impact", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93816,9 +93994,9 @@ "source_location": "L71", "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_technical_impact" + "target": "docs_audit_11_code_quality_audit_technical_impact", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93827,9 +94005,9 @@ "source_location": "L74", "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_security_or_data_integrity_impact" + "target": "docs_audit_11_code_quality_audit_security_or_data_integrity_impact", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93838,9 +94016,9 @@ "source_location": "L77", "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_recommended_direction" + "target": "docs_audit_11_code_quality_audit_recommended_direction", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93849,9 +94027,9 @@ "source_location": "L80", "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_alternative_direction" + "target": "docs_audit_11_code_quality_audit_alternative_direction", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93860,9 +94038,9 @@ "source_location": "L83", "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_implementation_complexity" + "target": "docs_audit_11_code_quality_audit_implementation_complexity", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93871,9 +94049,9 @@ "source_location": "L86", "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_dependencies" + "target": "docs_audit_11_code_quality_audit_dependencies", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93882,9 +94060,9 @@ "source_location": "L89", "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_risks" + "target": "docs_audit_11_code_quality_audit_risks", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93893,9 +94071,9 @@ "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" + "target": "docs_audit_11_code_quality_audit_verification_requirements", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93904,9 +94082,9 @@ "source_location": "L95", "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_testing_requirements" + "target": "docs_audit_11_code_quality_audit_testing_requirements", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93915,9 +94093,9 @@ "source_location": "L98", "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_acceptance_criteria" + "target": "docs_audit_11_code_quality_audit_acceptance_criteria", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93926,9 +94104,9 @@ "source_location": "L106", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report", - "target": "docs_audit_11_code_quality_audit_finding_summary" + "target": "docs_audit_11_code_quality_audit_finding_summary", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93937,9 +94115,9 @@ "source_location": "L118", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report", - "target": "docs_audit_11_code_quality_audit_completion_statement" + "target": "docs_audit_11_code_quality_audit_completion_statement", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93948,9 +94126,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report", - "target": "docs_audit_11_code_quality_audit_domain_overview_confirmed_strengths" + "target": "docs_audit_11_code_quality_audit_domain_overview_confirmed_strengths", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93959,9 +94137,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report", - "target": "docs_audit_11_code_quality_audit_findings" + "target": "docs_audit_11_code_quality_audit_findings", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93970,9 +94148,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report", - "target": "docs_audit_11_code_quality_audit_ts_001" + "target": "docs_audit_11_code_quality_audit_ts_001", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93981,9 +94159,9 @@ "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" + "target": "docs_audit_12_testing_audit_testing_and_reliability_audit_report", + "confidence_score": 1.0 }, { "relation": "contains", @@ -93992,9 +94170,9 @@ "source_location": "L102", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_acceptance_criteria" + "target": "docs_audit_12_testing_audit_acceptance_criteria", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94003,9 +94181,9 @@ "source_location": "L105", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_notes_and_limitations" + "target": "docs_audit_12_testing_audit_notes_and_limitations", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94014,9 +94192,9 @@ "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" + "target": "docs_audit_12_testing_audit_title", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94025,9 +94203,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_domain" + "target": "docs_audit_12_testing_audit_domain", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94036,9 +94214,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_category" + "target": "docs_audit_12_testing_audit_category", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94047,9 +94225,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_severity" + "target": "docs_audit_12_testing_audit_severity", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94058,9 +94236,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_confidence" + "target": "docs_audit_12_testing_audit_confidence", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94069,9 +94247,9 @@ "source_location": "L39", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_status" + "target": "docs_audit_12_testing_audit_status", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94080,9 +94258,9 @@ "source_location": "L42", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_affected_application" + "target": "docs_audit_12_testing_audit_affected_application", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94091,9 +94269,9 @@ "source_location": "L45", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_affected_files" + "target": "docs_audit_12_testing_audit_affected_files", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94102,9 +94280,9 @@ "source_location": "L50", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_relevant_symbols_or_lines" + "target": "docs_audit_12_testing_audit_relevant_symbols_or_lines", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94113,9 +94291,9 @@ "source_location": "L55", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_evidence" + "target": "docs_audit_12_testing_audit_evidence", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94124,9 +94302,9 @@ "source_location": "L63", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_problem" + "target": "docs_audit_12_testing_audit_problem", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94135,9 +94313,9 @@ "source_location": "L66", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_root_cause" + "target": "docs_audit_12_testing_audit_root_cause", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94146,9 +94324,9 @@ "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" + "target": "docs_audit_12_testing_audit_why_it_matters", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94157,9 +94335,9 @@ "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" + "target": "docs_audit_12_testing_audit_user_or_business_impact", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94168,9 +94346,9 @@ "source_location": "L75", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_technical_impact" + "target": "docs_audit_12_testing_audit_technical_impact", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94179,9 +94357,9 @@ "source_location": "L78", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_security_or_data_integrity_impact" + "target": "docs_audit_12_testing_audit_security_or_data_integrity_impact", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94190,9 +94368,9 @@ "source_location": "L81", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_recommended_direction" + "target": "docs_audit_12_testing_audit_recommended_direction", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94201,9 +94379,9 @@ "source_location": "L84", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_alternative_direction" + "target": "docs_audit_12_testing_audit_alternative_direction", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94212,9 +94390,9 @@ "source_location": "L87", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_implementation_complexity" + "target": "docs_audit_12_testing_audit_implementation_complexity", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94223,9 +94401,9 @@ "source_location": "L90", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_dependencies" + "target": "docs_audit_12_testing_audit_dependencies", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94234,9 +94412,9 @@ "source_location": "L93", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_risks" + "target": "docs_audit_12_testing_audit_risks", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94245,9 +94423,9 @@ "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" + "target": "docs_audit_12_testing_audit_verification_requirements", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94256,9 +94434,9 @@ "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" + "target": "docs_audit_12_testing_audit_testing_requirements", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94267,9 +94445,9 @@ "source_location": "L110", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_testing_and_reliability_audit_report", - "target": "docs_audit_12_testing_audit_finding_summary" + "target": "docs_audit_12_testing_audit_finding_summary", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94278,9 +94456,9 @@ "source_location": "L122", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_testing_and_reliability_audit_report", - "target": "docs_audit_12_testing_audit_completion_statement" + "target": "docs_audit_12_testing_audit_completion_statement", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94289,9 +94467,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_testing_and_reliability_audit_report", - "target": "docs_audit_12_testing_audit_domain_overview_confirmed_strengths" + "target": "docs_audit_12_testing_audit_domain_overview_confirmed_strengths", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94300,9 +94478,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_testing_and_reliability_audit_report", - "target": "docs_audit_12_testing_audit_findings" + "target": "docs_audit_12_testing_audit_findings", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94311,9 +94489,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_12_testing_audit_testing_and_reliability_audit_report", - "target": "docs_audit_12_testing_audit_test_001" + "target": "docs_audit_12_testing_audit_test_001", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94322,9 +94500,9 @@ "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" + "target": "docs_audit_13_devops_audit_devops_and_ci_cd_audit_report", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94333,9 +94511,9 @@ "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" + "target": "docs_audit_13_devops_audit_title", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94344,9 +94522,9 @@ "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" + "target": "docs_audit_13_devops_audit_domain", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94355,9 +94533,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_category" + "target": "docs_audit_13_devops_audit_category", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94366,9 +94544,9 @@ "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" + "target": "docs_audit_13_devops_audit_severity", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94377,9 +94555,9 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_confidence" + "target": "docs_audit_13_devops_audit_confidence", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94388,9 +94566,9 @@ "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" + "target": "docs_audit_13_devops_audit_status", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94399,9 +94577,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_affected_application" + "target": "docs_audit_13_devops_audit_affected_application", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94410,9 +94588,9 @@ "source_location": "L46", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_affected_files" + "target": "docs_audit_13_devops_audit_affected_files", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94421,9 +94599,9 @@ "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" + "target": "docs_audit_13_devops_audit_relevant_symbols_or_lines", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94432,9 +94610,9 @@ "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" + "target": "docs_audit_13_devops_audit_evidence", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94443,9 +94621,9 @@ "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" + "target": "docs_audit_13_devops_audit_problem", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94454,9 +94632,9 @@ "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" + "target": "docs_audit_13_devops_audit_root_cause", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94465,9 +94643,9 @@ "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" + "target": "docs_audit_13_devops_audit_why_it_matters", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94476,9 +94654,9 @@ "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" + "target": "docs_audit_13_devops_audit_user_or_business_impact", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94487,9 +94665,9 @@ "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" + "target": "docs_audit_13_devops_audit_technical_impact", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94498,9 +94676,9 @@ "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" + "target": "docs_audit_13_devops_audit_security_or_data_integrity_impact", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94509,9 +94687,9 @@ "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" + "target": "docs_audit_13_devops_audit_recommended_direction", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94520,9 +94698,9 @@ "source_location": "L76", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_alternative_direction" + "target": "docs_audit_13_devops_audit_alternative_direction", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94531,9 +94709,9 @@ "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" + "target": "docs_audit_13_devops_audit_implementation_complexity", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94542,9 +94720,9 @@ "source_location": "L82", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_dependencies" + "target": "docs_audit_13_devops_audit_dependencies", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94553,9 +94731,9 @@ "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" + "target": "docs_audit_13_devops_audit_risks", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94564,9 +94742,9 @@ "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" + "target": "docs_audit_13_devops_audit_verification_requirements", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94575,9 +94753,9 @@ "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" + "target": "docs_audit_13_devops_audit_testing_requirements", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94586,9 +94764,9 @@ "source_location": "L94", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_acceptance_criteria" + "target": "docs_audit_13_devops_audit_acceptance_criteria", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94597,9 +94775,9 @@ "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" + "target": "docs_audit_13_devops_audit_notes_and_limitations", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94608,9 +94786,9 @@ "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" + "target": "docs_audit_13_devops_audit_finding_summary", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94619,9 +94797,9 @@ "source_location": "L114", "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_completion_statement" + "target": "docs_audit_13_devops_audit_completion_statement", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94630,9 +94808,9 @@ "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" + "target": "docs_audit_13_devops_audit_domain_overview_confirmed_strengths", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94641,9 +94819,9 @@ "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" + "target": "docs_audit_13_devops_audit_findings", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94652,9 +94830,9 @@ "source_location": "L23", "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_devops_001" + "target": "docs_audit_13_devops_audit_devops_001", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94663,9 +94841,9 @@ "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" + "target": "docs_audit_14_documentation_audit_documentation_audit_report", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94674,9 +94852,9 @@ "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" + "target": "docs_audit_14_documentation_audit_title", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94685,9 +94863,9 @@ "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" + "target": "docs_audit_14_documentation_audit_domain", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94696,9 +94874,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_category" + "target": "docs_audit_14_documentation_audit_category", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94707,9 +94885,9 @@ "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" + "target": "docs_audit_14_documentation_audit_severity", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94718,9 +94896,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_confidence" + "target": "docs_audit_14_documentation_audit_confidence", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94729,9 +94907,9 @@ "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" + "target": "docs_audit_14_documentation_audit_status", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94740,9 +94918,9 @@ "source_location": "L42", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_affected_application" + "target": "docs_audit_14_documentation_audit_affected_application", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94751,9 +94929,9 @@ "source_location": "L45", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_affected_files" + "target": "docs_audit_14_documentation_audit_affected_files", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94762,9 +94940,9 @@ "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" + "target": "docs_audit_14_documentation_audit_relevant_symbols_or_lines", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94773,9 +94951,9 @@ "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" + "target": "docs_audit_14_documentation_audit_evidence", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94784,9 +94962,9 @@ "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" + "target": "docs_audit_14_documentation_audit_problem", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94795,9 +94973,9 @@ "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" + "target": "docs_audit_14_documentation_audit_root_cause", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94806,9 +94984,9 @@ "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" + "target": "docs_audit_14_documentation_audit_why_it_matters", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94817,9 +94995,9 @@ "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" + "target": "docs_audit_14_documentation_audit_user_or_business_impact", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94828,9 +95006,9 @@ "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" + "target": "docs_audit_14_documentation_audit_technical_impact", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94839,9 +95017,9 @@ "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" + "target": "docs_audit_14_documentation_audit_security_or_data_integrity_impact", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94850,9 +95028,9 @@ "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" + "target": "docs_audit_14_documentation_audit_recommended_direction", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94861,9 +95039,9 @@ "source_location": "L77", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_alternative_direction" + "target": "docs_audit_14_documentation_audit_alternative_direction", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94872,9 +95050,9 @@ "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" + "target": "docs_audit_14_documentation_audit_implementation_complexity", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94883,9 +95061,9 @@ "source_location": "L83", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_dependencies" + "target": "docs_audit_14_documentation_audit_dependencies", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94894,9 +95072,9 @@ "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" + "target": "docs_audit_14_documentation_audit_risks", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94905,9 +95083,9 @@ "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" + "target": "docs_audit_14_documentation_audit_verification_requirements", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94916,9 +95094,9 @@ "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" + "target": "docs_audit_14_documentation_audit_testing_requirements", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94927,9 +95105,9 @@ "source_location": "L95", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_acceptance_criteria" + "target": "docs_audit_14_documentation_audit_acceptance_criteria", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94938,9 +95116,9 @@ "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" + "target": "docs_audit_14_documentation_audit_notes_and_limitations", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94949,9 +95127,9 @@ "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" + "target": "docs_audit_14_documentation_audit_finding_summary", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94960,9 +95138,9 @@ "source_location": "L115", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_documentation_audit_report", - "target": "docs_audit_14_documentation_audit_completion_statement" + "target": "docs_audit_14_documentation_audit_completion_statement", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94971,9 +95149,9 @@ "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" + "target": "docs_audit_14_documentation_audit_domain_overview_confirmed_strengths", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94982,9 +95160,9 @@ "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" + "target": "docs_audit_14_documentation_audit_findings", + "confidence_score": 1.0 }, { "relation": "contains", @@ -94993,9 +95171,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_14_documentation_audit_documentation_audit_report", - "target": "docs_audit_14_documentation_audit_doc_001" + "target": "docs_audit_14_documentation_audit_doc_001", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95004,9 +95182,9 @@ "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" + "target": "docs_audit_16_deep_audit_summary_deep_audit_summary_report", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95015,9 +95193,9 @@ "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" + "target": "docs_audit_16_deep_audit_summary_by_severity", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95026,9 +95204,9 @@ "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" + "target": "docs_audit_16_deep_audit_summary_by_confidence", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95037,9 +95215,9 @@ "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" + "target": "docs_audit_16_deep_audit_summary_by_domain", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95048,9 +95226,9 @@ "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" + "target": "docs_audit_16_deep_audit_summary_inspected_scopes", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95059,9 +95237,9 @@ "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" + "target": "docs_audit_16_deep_audit_summary_executed_commands_results", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95070,9 +95248,9 @@ "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" + "target": "docs_audit_16_deep_audit_summary_blocked_commands_reasons", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95081,9 +95259,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_16_deep_audit_summary_deep_audit_summary_report", - "target": "docs_audit_16_deep_audit_summary_2_findings_metrics" + "target": "docs_audit_16_deep_audit_summary_2_findings_metrics", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95092,9 +95270,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_16_deep_audit_summary_deep_audit_summary_report", - "target": "docs_audit_16_deep_audit_summary_1_audit_overview" + "target": "docs_audit_16_deep_audit_summary_1_audit_overview", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95103,9 +95281,9 @@ "source_location": "L41", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_16_deep_audit_summary_deep_audit_summary_report", - "target": "docs_audit_16_deep_audit_summary_3_inspected_scope_command_log" + "target": "docs_audit_16_deep_audit_summary_3_inspected_scope_command_log", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95114,9 +95292,9 @@ "source_location": "L62", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_16_deep_audit_summary_deep_audit_summary_report", - "target": "docs_audit_16_deep_audit_summary_4_key_business_integration_questions" + "target": "docs_audit_16_deep_audit_summary_4_key_business_integration_questions", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95125,9 +95303,9 @@ "source_location": "L69", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_16_deep_audit_summary_deep_audit_summary_report", - "target": "docs_audit_16_deep_audit_summary_5_audit_limitations_integrity_confirmation" + "target": "docs_audit_16_deep_audit_summary_5_audit_limitations_integrity_confirmation", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95136,9 +95314,9 @@ "source_location": "L75", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_16_deep_audit_summary_deep_audit_summary_report", - "target": "docs_audit_16_deep_audit_summary_6_exact_next_recommended_phase" + "target": "docs_audit_16_deep_audit_summary_6_exact_next_recommended_phase", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95147,9 +95325,9 @@ "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" + "target": "docs_audit_18_compiler_diagnostic_dispositions_compiler_diagnostic_dispositions", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95158,9 +95336,9 @@ "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" + "target": "docs_audit_18_compiler_diagnostic_dispositions_reconciled_compiler_diagnostic_table", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95169,9 +95347,9 @@ "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" + "target": "docs_audit_19_finding_verification_report_raw_finding_verification_disposition_report", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95180,9 +95358,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "docs_audit_19_finding_verification_report_2_newly_discovered_split_findings_canonical_ids", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95191,9 +95369,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "docs_audit_19_finding_verification_report_1_executive_summary_verification_reconciliation_table", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95202,9 +95380,9 @@ "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" + "target": "docs_audit_21_phase2_quality_gate_summary_phase_2_final_quality_gate_summary_report", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95213,9 +95391,9 @@ "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" + "target": "docs_audit_21_phase2_quality_gate_summary_by_severity", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95224,9 +95402,9 @@ "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" + "target": "docs_audit_21_phase2_quality_gate_summary_by_confidence", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95235,9 +95413,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "docs_audit_21_phase2_quality_gate_summary_2_final_verified_finding_breakdown", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95246,9 +95424,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "docs_audit_21_phase2_quality_gate_summary_1_executive_summary", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95257,9 +95435,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "docs_audit_21_phase2_quality_gate_summary_3_source_coverage_diagnostic_metrics", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95268,9 +95446,9 @@ "source_location": "L40", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "docs_audit_21_phase2_quality_gate_summary_4_integrity_check_quality_gate_status", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95279,9 +95457,9 @@ "source_location": "L47", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "docs_audit_21_phase2_quality_gate_summary_5_exact_next_recommended_phase", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95290,9 +95468,9 @@ "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" + "target": "docs_audit_24_omitted_file_inspection_report_omitted_file_inspection_report", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95301,9 +95479,9 @@ "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" + "target": "docs_audit_24_omitted_file_inspection_report_overview_of_omitted_file_inspections", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95312,9 +95490,9 @@ "source_location": "L32", "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_conclusion" + "target": "docs_audit_24_omitted_file_inspection_report_conclusion", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95323,9 +95501,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "docs_audit_24_omitted_file_inspection_report_key_domain_findings_from_omitted_file_audit", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95334,9 +95512,9 @@ "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" + "target": "docs_audit_26_phase2_integrity_repair_report_phase_2_6_integrity_repair_audit_quality_gate_report", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95345,9 +95523,9 @@ "source_location": "L12", "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_1_1_authoritative_source_file_inventory_rebuilt" + "target": "docs_audit_26_phase2_integrity_repair_report_1_1_authoritative_source_file_inventory_rebuilt", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95356,9 +95534,9 @@ "source_location": "L18", "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_1_2_raw_finding_dispositions_reconciled" + "target": "docs_audit_26_phase2_integrity_repair_report_1_2_raw_finding_dispositions_reconciled", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95367,9 +95545,9 @@ "source_location": "L27", "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_1_3_finding_identifier_normalization" + "target": "docs_audit_26_phase2_integrity_repair_report_1_3_finding_identifier_normalization", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95378,9 +95556,9 @@ "source_location": "L34", "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_1_4_rejected_finding_cleanup" + "target": "docs_audit_26_phase2_integrity_repair_report_1_4_rejected_finding_cleanup", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95389,9 +95567,9 @@ "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" + "target": "docs_audit_26_phase2_integrity_repair_report_by_severity", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95400,9 +95578,9 @@ "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" + "target": "docs_audit_26_phase2_integrity_repair_report_by_confidence", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95411,9 +95589,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "docs_audit_26_phase2_integrity_repair_report_1_summary_of_integrity_repairs_performed", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95422,9 +95600,9 @@ "source_location": "L39", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "docs_audit_26_phase2_integrity_repair_report_2_final_verified_finding_metrics", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95433,9 +95611,9 @@ "source_location": "L57", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "docs_audit_26_phase2_integrity_repair_report_3_reference_and_compiler_integrity_results", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95444,9 +95622,9 @@ "source_location": "L64", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "docs_audit_26_phase2_integrity_repair_report_4_quality_gate_conclusion", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95455,9 +95633,9 @@ "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" + "target": "docs_audit_31_module_audit_closure_module_audit_closure_report", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95466,9 +95644,9 @@ "source_location": "L149", "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_conclusion" + "target": "docs_audit_31_module_audit_closure_conclusion", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95477,9 +95655,9 @@ "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" + "target": "docs_audit_31_module_audit_closure_required_review_group_closures", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95488,9 +95666,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_1_storefront_shell_routing" + "target": "docs_audit_31_module_audit_closure_1_storefront_shell_routing", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95499,9 +95677,9 @@ "source_location": "L104", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_12_prisma_schema_migrations_seed" + "target": "docs_audit_31_module_audit_closure_12_prisma_schema_migrations_seed", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95510,9 +95688,9 @@ "source_location": "L114", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_13_redis_temporary_auth_state" + "target": "docs_audit_31_module_audit_closure_13_redis_temporary_auth_state", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95521,9 +95699,9 @@ "source_location": "L122", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_14_unit_e2e_tests" + "target": "docs_audit_31_module_audit_closure_14_unit_e2e_tests", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95532,9 +95710,9 @@ "source_location": "L131", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_15_docker_nginx_prometheus_deployment_config" + "target": "docs_audit_31_module_audit_closure_15_docker_nginx_prometheus_deployment_config", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95543,9 +95721,9 @@ "source_location": "L139", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_16_documentation_openapi_artifacts" + "target": "docs_audit_31_module_audit_closure_16_documentation_openapi_artifacts", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95554,9 +95732,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_2_authentication_ui_stores_api_clients" + "target": "docs_audit_31_module_audit_closure_2_authentication_ui_stores_api_clients", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95565,9 +95743,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "docs_audit_31_module_audit_closure_3_cart_checkout_order_wallet_payment_ui", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95576,9 +95754,9 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "docs_audit_31_module_audit_closure_4_product_pet_scientific_term_settings_ui", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95587,9 +95765,9 @@ "source_location": "L46", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_5_nestjs_bootstrap_shared_infrastructure" + "target": "docs_audit_31_module_audit_closure_5_nestjs_bootstrap_shared_infrastructure", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95598,9 +95776,9 @@ "source_location": "L55", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_6_authentication_authorization_backend" + "target": "docs_audit_31_module_audit_closure_6_authentication_authorization_backend", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95609,9 +95787,9 @@ "source_location": "L63", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_7_users_addresses_backend" + "target": "docs_audit_31_module_audit_closure_7_users_addresses_backend", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95620,9 +95798,9 @@ "source_location": "L71", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_8_pets_backend" + "target": "docs_audit_31_module_audit_closure_8_pets_backend", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95631,9 +95809,9 @@ "source_location": "L79", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_9_products_backend" + "target": "docs_audit_31_module_audit_closure_9_products_backend", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95642,9 +95820,9 @@ "source_location": "L88", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_10_orders_backend" + "target": "docs_audit_31_module_audit_closure_10_orders_backend", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95653,9 +95831,9 @@ "source_location": "L96", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_11_settings_administrative_backend" + "target": "docs_audit_31_module_audit_closure_11_settings_administrative_backend", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95664,9 +95842,9 @@ "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" + "target": "docs_audit_33_final_phase2_audit_closure_final_phase_2_audit_closure_report", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95675,9 +95853,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "docs_audit_33_final_phase2_audit_closure_2_reconciled_findings_canonical_identifier_normalization", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95686,9 +95864,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "docs_audit_33_final_phase2_audit_closure_3_validation_integrity_verification", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95697,9 +95875,9 @@ "source_location": "L42", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "docs_audit_33_final_phase2_audit_closure_4_final_quality_gate_conclusion", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95708,9 +95886,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "docs_audit_33_final_phase2_audit_closure_1_executive_summary_honest_review_tier_metrics", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95719,9 +95897,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_build_manifest", - "target": "docs_audit_build_manifest_lines" + "target": "docs_audit_build_manifest_lines", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95730,9 +95908,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_build_manifest", - "target": "docs_audit_build_manifest_entries" + "target": "docs_audit_build_manifest_entries", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95741,9 +95919,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_generate_classification", - "target": "docs_audit_generate_classification_lines" + "target": "docs_audit_generate_classification_lines", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95752,9 +95930,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_generate_classification", - "target": "docs_audit_generate_classification_classified" + "target": "docs_audit_generate_classification_classified", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95763,9 +95941,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_generate_evidence", - "target": "docs_audit_generate_evidence_classification" + "target": "docs_audit_generate_evidence_classification", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95774,9 +95952,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_generate_evidence", - "target": "docs_audit_generate_evidence_evidenceentries" + "target": "docs_audit_generate_evidence_evidenceentries", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95785,9 +95963,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_generate_ledger", - "target": "docs_audit_generate_ledger_evidence" + "target": "docs_audit_generate_ledger_evidence", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95796,9 +95974,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_generate_ledger", - "target": "docs_audit_generate_ledger_ledgerentries" + "target": "docs_audit_generate_ledger_ledgerentries", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95807,9 +95985,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_generate_manifest", - "target": "docs_audit_generate_manifest_evidence" + "target": "docs_audit_generate_manifest_evidence", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95818,9 +95996,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_generate_manifest", - "target": "docs_audit_generate_manifest_manifestentries" + "target": "docs_audit_generate_manifest_manifestentries", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95829,9 +96007,9 @@ "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" + "target": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95840,9 +96018,9 @@ "source_location": "L102", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "docs_audit_phase3_1_backlog_review_10_dependency_wave_adjustments", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95851,9 +96029,9 @@ "source_location": "L114", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "docs_audit_phase3_1_backlog_review_11_acceptance_criteria_refinements", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95862,9 +96040,9 @@ "source_location": "L124", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "docs_audit_phase3_1_backlog_review_12_business_and_product_decision_classification", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95873,9 +96051,9 @@ "source_location": "L134", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "docs_audit_phase3_1_backlog_review_13_final_recommended_backlog_summary", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95884,9 +96062,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "docs_audit_phase3_1_backlog_review_1_executive_assessment", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95895,9 +96073,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "docs_audit_phase3_1_backlog_review_2_findings_that_require_no_change", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95906,9 +96084,9 @@ "source_location": "L41", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "docs_audit_phase3_1_backlog_review_3_findings_requiring_task_refinements", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95917,9 +96095,9 @@ "source_location": "L50", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "docs_audit_phase3_1_backlog_review_4_tasks_requiring_splitting", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95928,9 +96106,9 @@ "source_location": "L56", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "docs_audit_phase3_1_backlog_review_5_tasks_requiring_merging", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95939,9 +96117,9 @@ "source_location": "L62", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "docs_audit_phase3_1_backlog_review_6_unsupported_assumptions_identified", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95950,9 +96128,9 @@ "source_location": "L71", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "docs_audit_phase3_1_backlog_review_7_scope_creep_identified_and_removed", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95961,9 +96139,9 @@ "source_location": "L78", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "docs_audit_phase3_1_backlog_review_8_security_deep_dive_review", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95972,9 +96150,9 @@ "source_location": "L92", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "docs_audit_phase3_1_backlog_review_9_architecture_review", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95983,9 +96161,9 @@ "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" + "target": "docs_audit_phase3_1_change_log_phase_3_1_master_task_backlog_change_log", + "confidence_score": 1.0 }, { "relation": "contains", @@ -95994,9 +96172,9 @@ "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" + "target": "docs_audit_phase3_1_change_log_task_modifications_log", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96005,9 +96183,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_phase3_1_change_log_task_modifications_log", - "target": "docs_audit_phase3_1_change_log_1_task_auth_001" + "target": "docs_audit_phase3_1_change_log_1_task_auth_001", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96016,9 +96194,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_phase3_1_change_log_task_modifications_log", - "target": "docs_audit_phase3_1_change_log_2_task_fin_001" + "target": "docs_audit_phase3_1_change_log_2_task_fin_001", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96027,9 +96205,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_phase3_1_change_log_task_modifications_log", - "target": "docs_audit_phase3_1_change_log_3_decision_002" + "target": "docs_audit_phase3_1_change_log_3_decision_002", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96038,9 +96216,9 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_phase3_1_change_log_task_modifications_log", - "target": "docs_audit_phase3_1_change_log_4_task_verify_001" + "target": "docs_audit_phase3_1_change_log_4_task_verify_001", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96049,9 +96227,9 @@ "source_location": "L46", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_phase3_1_change_log_task_modifications_log", - "target": "docs_audit_phase3_1_change_log_5_task_sec_001_task_sec_002" + "target": "docs_audit_phase3_1_change_log_5_task_sec_001_task_sec_002", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96060,9 +96238,9 @@ "source_location": "L55", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_phase3_1_change_log_task_modifications_log", - "target": "docs_audit_phase3_1_change_log_6_task_build_001_execution_waves" + "target": "docs_audit_phase3_1_change_log_6_task_build_001_execution_waves", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96071,9 +96249,9 @@ "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" + "target": "docs_audit_phase3_2_change_log_phase_3_2_implementation_readiness_change_log", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96082,9 +96260,9 @@ "source_location": "L10", "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_1_task_sec_001" + "target": "docs_audit_phase3_2_change_log_1_task_sec_001", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96093,9 +96271,9 @@ "source_location": "L109", "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_10_task_verify_001" + "target": "docs_audit_phase3_2_change_log_10_task_verify_001", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96104,9 +96282,9 @@ "source_location": "L21", "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_2_task_sec_002" + "target": "docs_audit_phase3_2_change_log_2_task_sec_002", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96115,9 +96293,9 @@ "source_location": "L32", "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_3_task_sec_003" + "target": "docs_audit_phase3_2_change_log_3_task_sec_003", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96126,9 +96304,9 @@ "source_location": "L43", "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_4_task_fin_001" + "target": "docs_audit_phase3_2_change_log_4_task_fin_001", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96137,9 +96315,9 @@ "source_location": "L54", "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_5_task_build_001" + "target": "docs_audit_phase3_2_change_log_5_task_build_001", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96148,9 +96326,9 @@ "source_location": "L65", "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_6_task_auth_001" + "target": "docs_audit_phase3_2_change_log_6_task_auth_001", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96159,9 +96337,9 @@ "source_location": "L76", "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_7_task_fe_001" + "target": "docs_audit_phase3_2_change_log_7_task_fe_001", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96170,9 +96348,9 @@ "source_location": "L87", "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_8_task_devops_001" + "target": "docs_audit_phase3_2_change_log_8_task_devops_001", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96181,9 +96359,9 @@ "source_location": "L98", "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_9_task_doc_001" + "target": "docs_audit_phase3_2_change_log_9_task_doc_001", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96192,9 +96370,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_phase3_2_change_log_phase_3_2_implementation_readiness_change_log", - "target": "docs_audit_phase3_2_change_log_comprehensive_change_log" + "target": "docs_audit_phase3_2_change_log_comprehensive_change_log", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96203,9 +96381,9 @@ "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" + "target": "docs_audit_phase3_2_implementation_readiness_phase_3_2_3_3_implementation_readiness_architectural_finalization_report", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96214,9 +96392,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "docs_audit_phase3_2_implementation_readiness_1_executive_summary_architecture_decisions", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96225,9 +96403,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "docs_audit_phase3_2_implementation_readiness_2_updated_task_specifications_overview", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96236,9 +96414,9 @@ "source_location": "L47", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "docs_audit_phase3_2_implementation_readiness_3_final_readiness_statement", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96247,9 +96425,9 @@ "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" + "target": "docs_audit_phase3_traceability_matrix_phase_3_audit_traceability_matrix", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96258,9 +96436,9 @@ "source_location": "L11", "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_complete_finding_to_task_traceability_matrix" + "target": "docs_audit_phase3_traceability_matrix_complete_finding_to_task_traceability_matrix", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96269,9 +96447,9 @@ "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" + "target": "docs_audit_phase3_traceability_matrix_special_task_traceability_non_finding_tasks", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96280,9 +96458,9 @@ "source_location": "L40", "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_finding_disposition_accounting_verification" + "target": "docs_audit_phase3_traceability_matrix_finding_disposition_accounting_verification", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96291,9 +96469,9 @@ "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" + "target": "docs_audit_rebuild_honest_ledger_mandatoryscope", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96302,9 +96480,9 @@ "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" + "target": "docs_audit_rebuild_honest_ledger_evidencelist", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96313,9 +96491,9 @@ "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" + "target": "docs_audit_rebuild_honest_ledger_mandatorymap", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96324,9 +96502,9 @@ "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" + "target": "docs_audit_rebuild_honest_ledger_ledger", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96335,9 +96513,9 @@ "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" + "target": "docs_audit_sync_honest_manifest_ledger", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96346,9 +96524,9 @@ "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" + "target": "docs_audit_sync_honest_manifest_manifest", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96357,9 +96535,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_sync_manifest", - "target": "docs_audit_sync_manifest_ledger" + "target": "docs_audit_sync_manifest_ledger", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96368,9 +96546,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_sync_manifest", - "target": "docs_audit_sync_manifest_manifestentries" + "target": "docs_audit_sync_manifest_manifestentries", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96379,9 +96557,9 @@ "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" + "target": "docs_audit_validate_evidence_grade_validationoutput", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96390,9 +96568,9 @@ "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" + "target": "docs_audit_validate_evidence_grade_errors", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96401,9 +96579,9 @@ "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" + "target": "docs_audit_validate_evidence_grade_warnings", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96412,9 +96590,9 @@ "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" + "target": "docs_audit_validate_evidence_grade_activefiles", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96423,9 +96601,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_validate_integrity", - "target": "docs_audit_validate_integrity_dispsum" + "target": "docs_audit_validate_integrity_dispsum", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96434,9 +96612,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_validate_integrity", - "target": "docs_audit_validate_integrity_invalidnewids" + "target": "docs_audit_validate_integrity_invalidnewids", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96445,9 +96623,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_validate_integrity", - "target": "docs_audit_validate_integrity_manifest" + "target": "docs_audit_validate_integrity_manifest", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96456,9 +96634,9 @@ "source_location": "L38", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_validate_integrity", - "target": "docs_audit_validate_integrity_uninspected" + "target": "docs_audit_validate_integrity_uninspected", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96467,9 +96645,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_validate_integrity", - "target": "docs_audit_validate_integrity_trackedfiles" + "target": "docs_audit_validate_integrity_trackedfiles", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96478,9 +96656,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_validate_integrity", - "target": "docs_audit_validate_integrity_report" + "target": "docs_audit_validate_integrity_report", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96489,9 +96667,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_validate_integrity", - "target": "docs_audit_validate_integrity_verifiedindex" + "target": "docs_audit_validate_integrity_verifiedindex", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96500,9 +96678,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_validate_integrity", - "target": "docs_audit_validate_integrity_errors" + "target": "docs_audit_validate_integrity_errors", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96511,9 +96689,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_audit_validate_integrity", - "target": "docs_audit_validate_integrity_warnings" + "target": "docs_audit_validate_integrity_warnings", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96522,9 +96700,9 @@ "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" + "target": "docs_readme_\u0641\u0647\u0631\u0633\u062a_\u0645\u0637\u0627\u0644\u0628_table_of_contents", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96533,9 +96711,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_package", - "target": "frontend_admin_panel_package_dependencies" + "target": "frontend_admin_panel_package_dependencies", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96544,9 +96722,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_package", - "target": "frontend_admin_panel_package_name" + "target": "frontend_admin_panel_package_name", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96555,9 +96733,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_package", - "target": "frontend_admin_panel_package_devdependencies" + "target": "frontend_admin_panel_package_devdependencies", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96566,9 +96744,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_package", - "target": "frontend_admin_panel_package_private" + "target": "frontend_admin_panel_package_private", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96577,9 +96755,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_package", - "target": "frontend_admin_panel_package_version" + "target": "frontend_admin_panel_package_version", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96588,9 +96766,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_package", - "target": "frontend_admin_panel_package_type" + "target": "frontend_admin_panel_package_type", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96599,9 +96777,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_package", - "target": "frontend_admin_panel_package_scripts" + "target": "frontend_admin_panel_package_scripts", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96610,9 +96788,9 @@ "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" + "target": "frontend_admin_panel_package_dependencies_tanstack_react_query", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96621,9 +96799,9 @@ "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" + "target": "frontend_admin_panel_package_dependencies_axios", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96632,9 +96810,9 @@ "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" + "target": "frontend_admin_panel_package_dependencies_lucide_react", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96643,9 +96821,9 @@ "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" + "target": "frontend_admin_panel_package_dependencies_react", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96654,9 +96832,9 @@ "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" + "target": "frontend_admin_panel_package_dependencies_react_dom", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96665,9 +96843,9 @@ "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" + "target": "frontend_admin_panel_package_dependencies_react_hot_toast", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96676,9 +96854,9 @@ "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" + "target": "frontend_admin_panel_package_dependencies_react_router_dom", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96687,9 +96865,9 @@ "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" + "target": "frontend_admin_panel_package_dependencies_recharts", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96698,9 +96876,9 @@ "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" + "target": "frontend_admin_panel_package_dependencies_vite", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96709,9 +96887,9 @@ "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" + "target": "frontend_admin_panel_package_dependencies_zustand", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96720,9 +96898,9 @@ "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" + "target": "frontend_admin_panel_package_devdependencies_eslint_js", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96731,9 +96909,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_package_devdependencies", - "target": "frontend_admin_panel_package_devdependencies_tailwindcss_postcss" + "target": "frontend_admin_panel_package_devdependencies_tailwindcss_postcss", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96742,9 +96920,9 @@ "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" + "target": "frontend_admin_panel_package_devdependencies_types_node", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96753,9 +96931,9 @@ "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" + "target": "frontend_admin_panel_package_devdependencies_types_react", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96764,9 +96942,9 @@ "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" + "target": "frontend_admin_panel_package_devdependencies_types_react_dom", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96775,9 +96953,9 @@ "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" + "target": "frontend_admin_panel_package_devdependencies_vitejs_plugin_react", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96786,9 +96964,9 @@ "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" + "target": "frontend_admin_panel_package_devdependencies_autoprefixer", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96797,9 +96975,9 @@ "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" + "target": "frontend_admin_panel_package_devdependencies_eslint", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96808,9 +96986,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_package_devdependencies", - "target": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_hooks" + "target": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_hooks", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96819,9 +96997,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_package_devdependencies", - "target": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_refresh" + "target": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_refresh", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96830,9 +97008,9 @@ "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" + "target": "frontend_admin_panel_package_devdependencies_globals", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96841,9 +97019,9 @@ "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" + "target": "frontend_admin_panel_package_devdependencies_postcss", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96852,9 +97030,9 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_package_devdependencies", - "target": "frontend_admin_panel_package_devdependencies_tailwindcss" + "target": "frontend_admin_panel_package_devdependencies_tailwindcss", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96863,9 +97041,9 @@ "source_location": "L38", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_package_devdependencies", - "target": "frontend_admin_panel_package_devdependencies_typescript" + "target": "frontend_admin_panel_package_devdependencies_typescript", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96874,9 +97052,9 @@ "source_location": "L39", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_package_devdependencies", - "target": "frontend_admin_panel_package_devdependencies_typescript_eslint" + "target": "frontend_admin_panel_package_devdependencies_typescript_eslint", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96885,9 +97063,9 @@ "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" + "target": "frontend_admin_panel_package_scripts_preview", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96896,9 +97074,9 @@ "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" + "target": "frontend_admin_panel_package_scripts_dev", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96907,9 +97085,9 @@ "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" + "target": "frontend_admin_panel_package_scripts_build", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96918,9 +97096,9 @@ "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" + "target": "frontend_admin_panel_package_scripts_lint", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96929,9 +97107,9 @@ "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" + "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96940,9 +97118,9 @@ "source_location": "L119", "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_arch_linux" + "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_arch_linux", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96951,9 +97129,9 @@ "source_location": "L103", "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_install" + "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_install", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96962,9 +97140,9 @@ "source_location": "L127", "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_contributors" + "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_contributors", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96973,9 +97151,9 @@ "source_location": "L131", "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_license" + "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_license", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96984,9 +97162,9 @@ "source_location": "L14", "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_known_problems_for_variable_version" + "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_known_problems_for_variable_version", + "confidence_score": 1.0 }, { "relation": "contains", @@ -96995,9 +97173,9 @@ "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" + "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_to_do_variable", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97006,9 +97184,9 @@ "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" + "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", @@ -97017,9 +97195,9 @@ "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" + "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", @@ -97028,9 +97206,9 @@ "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" + "target": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_shabnam_font", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97039,9 +97217,9 @@ "source_location": "L110", "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_arch_linux" + "target": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_arch_linux", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97050,9 +97228,9 @@ "source_location": "L80", "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_bower" + "target": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_bower", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97061,9 +97239,9 @@ "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" + "target": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_npm", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97072,9 +97250,9 @@ "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" + "target": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_yarn", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97083,9 +97261,9 @@ "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" + "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", @@ -97094,9 +97272,9 @@ "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" + "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", @@ -97105,9 +97283,9 @@ "source_location": "L76", "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_install" + "target": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_install", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97116,9 +97294,9 @@ "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" + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97127,9 +97305,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_002" + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_002", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97138,9 +97316,9 @@ "source_location": "L158", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_old_vazir_changelog", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97149,9 +97327,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_001" + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_001", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97160,9 +97338,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_003" + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_003", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97171,9 +97349,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_000" + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_000", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97182,9 +97360,9 @@ "source_location": "L57", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_102" + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_102", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97193,9 +97371,9 @@ "source_location": "L69", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_101" + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_101", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97204,9 +97382,9 @@ "source_location": "L77", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_1" + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_1", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97215,9 +97393,9 @@ "source_location": "L85", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_0_0", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97226,9 +97404,9 @@ "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" + "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", @@ -97237,9 +97415,9 @@ "source_location": "L11", "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_download" + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_download", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97248,9 +97426,9 @@ "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" + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_npm_https_www_npmjs_com_package_vazirmatn", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97259,9 +97437,9 @@ "source_location": "L27", "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_cdn" + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_cdn", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97270,9 +97448,9 @@ "source_location": "L41", "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_arch_linux_aur_https_aur_archlinux_org_packages_vazirmatn_fonts" + "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", @@ -97281,9 +97459,9 @@ "source_location": "L46", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_build", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97292,9 +97470,9 @@ "source_location": "L50", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_thank_you", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97303,9 +97481,9 @@ "source_location": "L57", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_license", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97314,9 +97492,9 @@ "source_location": "L60", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_authors", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97325,9 +97503,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "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" + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_install", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97336,9 +97514,9 @@ "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" + "target": "frontend_admin_panel_readme_react_typescript_vite", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97347,9 +97525,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_readme_react_typescript_vite", - "target": "frontend_admin_panel_readme_react_compiler" + "target": "frontend_admin_panel_readme_react_compiler", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97358,9 +97536,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_readme_react_typescript_vite", - "target": "frontend_admin_panel_readme_expanding_the_eslint_configuration" + "target": "frontend_admin_panel_readme_expanding_the_eslint_configuration", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97369,9 +97547,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_app", - "target": "frontend_admin_panel_src_app_app" + "target": "frontend_admin_panel_src_app_app", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97380,9 +97558,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_app", - "target": "frontend_admin_panel_src_app_suspensefallback" + "target": "frontend_admin_panel_src_app_suspensefallback", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97391,9 +97569,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_layout", - "target": "frontend_admin_panel_src_components_layout_layout" + "target": "frontend_admin_panel_src_components_layout_layout", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97402,9 +97580,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_protectedroute", - "target": "frontend_admin_panel_src_components_protectedroute_protectedroute" + "target": "frontend_admin_panel_src_components_protectedroute_protectedroute", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97413,9 +97591,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_sidebar", - "target": "frontend_admin_panel_src_components_sidebar_submenuitem" + "target": "frontend_admin_panel_src_components_sidebar_submenuitem", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97424,9 +97602,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_sidebar", - "target": "frontend_admin_panel_src_components_sidebar_menugroup" + "target": "frontend_admin_panel_src_components_sidebar_menugroup", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97435,9 +97613,9 @@ "source_location": "L50", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_sidebar", - "target": "frontend_admin_panel_src_components_sidebar_sidebarprops" + "target": "frontend_admin_panel_src_components_sidebar_sidebarprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97446,9 +97624,9 @@ "source_location": "L55", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_sidebar", - "target": "frontend_admin_panel_src_components_sidebar_sidebar" + "target": "frontend_admin_panel_src_components_sidebar_sidebar", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97457,9 +97635,9 @@ "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" + "target": "frontend_admin_panel_src_components_topbar_searchable_pages", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97468,9 +97646,9 @@ "source_location": "L45", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_topbar", - "target": "frontend_admin_panel_src_components_topbar_topbar" + "target": "frontend_admin_panel_src_components_topbar_topbar", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97479,9 +97657,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_topbar", - "target": "frontend_admin_panel_src_components_topbar_topbarprops" + "target": "frontend_admin_panel_src_components_topbar_topbarprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97490,9 +97668,9 @@ "source_location": "L13", "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" + "target": "frontend_admin_panel_src_components_ui_badge_variantstyles", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97501,9 +97679,9 @@ "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_badge" + "target": "frontend_admin_panel_src_components_ui_badge_badge", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97512,9 +97690,9 @@ "source_location": "L3", "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_badgevariant" + "target": "frontend_admin_panel_src_components_ui_badge_badgevariant", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97523,9 +97701,9 @@ "source_location": "L5", "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_badgeprops" + "target": "frontend_admin_panel_src_components_ui_badge_badgeprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97534,9 +97712,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_ui_confirmmodal", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal" + "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97545,9 +97723,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_ui_confirmmodal", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodalprops" + "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodalprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97556,9 +97734,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_ui_formfield", - "target": "frontend_admin_panel_src_components_ui_formfield_formfield" + "target": "frontend_admin_panel_src_components_ui_formfield_formfield", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97567,9 +97745,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_ui_formfield", - "target": "frontend_admin_panel_src_components_ui_formfield_formfieldprops" + "target": "frontend_admin_panel_src_components_ui_formfield_formfieldprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97578,9 +97756,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_ui_imagepreviewmodal", - "target": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodal" + "target": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodal", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97589,9 +97767,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_ui_imagepreviewmodal", - "target": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodalprops" + "target": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodalprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97600,9 +97778,9 @@ "source_location": "L3", "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_inputprops" + "target": "frontend_admin_panel_src_components_ui_input_inputprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97611,9 +97789,9 @@ "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" + "target": "frontend_admin_panel_src_components_ui_input_input", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97622,9 +97800,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_ui_mediaselector", - "target": "frontend_admin_panel_src_components_ui_mediaselector_media" + "target": "frontend_admin_panel_src_components_ui_mediaselector_media", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97633,9 +97811,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_ui_mediaselector", - "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselectorprops" + "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselectorprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97644,9 +97822,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_ui_mediaselector", - "target": "frontend_admin_panel_src_components_ui_mediaselector_getfiletype" + "target": "frontend_admin_panel_src_components_ui_mediaselector_getfiletype", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97655,9 +97833,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_ui_mediaselector", - "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector" + "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97666,9 +97844,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_ui_pagination", - "target": "frontend_admin_panel_src_components_ui_pagination_pagination" + "target": "frontend_admin_panel_src_components_ui_pagination_pagination", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97677,9 +97855,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_ui_pagination", - "target": "frontend_admin_panel_src_components_ui_pagination_paginationprops" + "target": "frontend_admin_panel_src_components_ui_pagination_paginationprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97688,9 +97866,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_ui_priceinput", - "target": "frontend_admin_panel_src_components_ui_priceinput_toenglishdigits" + "target": "frontend_admin_panel_src_components_ui_priceinput_toenglishdigits", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97699,9 +97877,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_ui_priceinput", - "target": "frontend_admin_panel_src_components_ui_priceinput_formatpricewithcommas" + "target": "frontend_admin_panel_src_components_ui_priceinput_formatpricewithcommas", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97710,9 +97888,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_ui_priceinput", - "target": "frontend_admin_panel_src_components_ui_priceinput_priceinputprops" + "target": "frontend_admin_panel_src_components_ui_priceinput_priceinputprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97721,9 +97899,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_ui_priceinput", - "target": "frontend_admin_panel_src_components_ui_priceinput_priceinput" + "target": "frontend_admin_panel_src_components_ui_priceinput_priceinput", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97732,9 +97910,9 @@ "source_location": "L10", "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_selectprops" + "target": "frontend_admin_panel_src_components_ui_select_selectprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97743,9 +97921,9 @@ "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" + "target": "frontend_admin_panel_src_components_ui_select_select", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97754,9 +97932,9 @@ "source_location": "L4", "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_selectoption" + "target": "frontend_admin_panel_src_components_ui_select_selectoption", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97765,9 +97943,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_ui_skeleton", - "target": "frontend_admin_panel_src_components_ui_skeleton_skeleton" + "target": "frontend_admin_panel_src_components_ui_skeleton_skeleton", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97776,9 +97954,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_ui_spinner", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner" + "target": "frontend_admin_panel_src_components_ui_spinner_spinner", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97787,9 +97965,9 @@ "source_location": "L3", "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_textareaprops" + "target": "frontend_admin_panel_src_components_ui_textarea_textareaprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97798,9 +97976,9 @@ "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" + "target": "frontend_admin_panel_src_components_ui_textarea_textarea", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97809,9 +97987,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_ui_toggleswitch", - "target": "frontend_admin_panel_src_components_ui_toggleswitch_toggleswitch" + "target": "frontend_admin_panel_src_components_ui_toggleswitch_toggleswitch", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97820,9 +97998,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_components_ui_toggleswitch", - "target": "frontend_admin_panel_src_components_ui_toggleswitch_toggleswitchprops" + "target": "frontend_admin_panel_src_components_ui_toggleswitch_toggleswitchprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97831,9 +98009,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_b2bmanager", - "target": "frontend_admin_panel_src_pages_b2bmanager_b2bmanager" + "target": "frontend_admin_panel_src_pages_b2bmanager_b2bmanager", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97842,9 +98020,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_bannersmanager", - "target": "frontend_admin_panel_src_pages_bannersmanager_bannersmanager" + "target": "frontend_admin_panel_src_pages_bannersmanager_bannersmanager", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97853,9 +98031,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_pages_blogs_blogpost" + "target": "frontend_admin_panel_src_pages_blogs_blogpost", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97864,9 +98042,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_pages_blogs_blogs" + "target": "frontend_admin_panel_src_pages_blogs_blogs", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97875,9 +98053,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_categories", - "target": "frontend_admin_panel_src_pages_categories_category" + "target": "frontend_admin_panel_src_pages_categories_category", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97886,9 +98064,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_categories", - "target": "frontend_admin_panel_src_pages_categories_categories" + "target": "frontend_admin_panel_src_pages_categories_categories", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97897,9 +98075,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_cms", - "target": "frontend_admin_panel_src_pages_cms_vettestimonial" + "target": "frontend_admin_panel_src_pages_cms_vettestimonial", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97908,9 +98086,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_cms", - "target": "frontend_admin_panel_src_pages_cms_cms" + "target": "frontend_admin_panel_src_pages_cms_cms", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97919,9 +98097,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_cms", - "target": "frontend_admin_panel_src_pages_cms_herobanner" + "target": "frontend_admin_panel_src_pages_cms_herobanner", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97930,9 +98108,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_contactsubmissions", - "target": "frontend_admin_panel_src_pages_contactsubmissions_contactinfoitem" + "target": "frontend_admin_panel_src_pages_contactsubmissions_contactinfoitem", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97941,9 +98119,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_contactsubmissions", - "target": "frontend_admin_panel_src_pages_contactsubmissions_contactsubmissions" + "target": "frontend_admin_panel_src_pages_contactsubmissions_contactsubmissions", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97952,9 +98130,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_contactsubmissions", - "target": "frontend_admin_panel_src_pages_contactsubmissions_contactsubmission" + "target": "frontend_admin_panel_src_pages_contactsubmissions_contactsubmission", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97963,9 +98141,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_pages_coupons_coupontarget" + "target": "frontend_admin_panel_src_pages_coupons_coupontarget", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97974,9 +98152,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_pages_coupons_coupon" + "target": "frontend_admin_panel_src_pages_coupons_coupon", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97985,9 +98163,9 @@ "source_location": "L250", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_pages_coupons_couponmodalprops" + "target": "frontend_admin_panel_src_pages_coupons_couponmodalprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -97996,9 +98174,9 @@ "source_location": "L259", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_pages_coupons_couponmodal" + "target": "frontend_admin_panel_src_pages_coupons_couponmodal", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98007,9 +98185,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_pages_coupons_couponformdata" + "target": "frontend_admin_panel_src_pages_coupons_couponformdata", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98018,9 +98196,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_pages_coupons_coupons" + "target": "frontend_admin_panel_src_pages_coupons_coupons", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98029,9 +98207,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_dashboard", - "target": "frontend_admin_panel_src_pages_dashboard_dashboarddata" + "target": "frontend_admin_panel_src_pages_dashboard_dashboarddata", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98040,9 +98218,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_dashboard", - "target": "frontend_admin_panel_src_pages_dashboard_dashboard" + "target": "frontend_admin_panel_src_pages_dashboard_dashboard", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98051,9 +98229,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_dashboard", - "target": "frontend_admin_panel_src_pages_dashboard_categorydist" + "target": "frontend_admin_panel_src_pages_dashboard_categorydist", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98062,9 +98240,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_doctorsmanager", - "target": "frontend_admin_panel_src_pages_doctorsmanager_doctorsmanager" + "target": "frontend_admin_panel_src_pages_doctorsmanager_doctorsmanager", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98073,9 +98251,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_doctorsmanager", - "target": "frontend_admin_panel_src_pages_doctorsmanager_doctor" + "target": "frontend_admin_panel_src_pages_doctorsmanager_doctor", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98084,9 +98262,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_financialsettingspage", - "target": "frontend_admin_panel_src_pages_financialsettingspage_financialsettingspage" + "target": "frontend_admin_panel_src_pages_financialsettingspage_financialsettingspage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98095,9 +98273,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_ingredientsmanager", - "target": "frontend_admin_panel_src_pages_ingredientsmanager_ingredientsmanager" + "target": "frontend_admin_panel_src_pages_ingredientsmanager_ingredientsmanager", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98106,9 +98284,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_login", - "target": "frontend_admin_panel_src_pages_login_login" + "target": "frontend_admin_panel_src_pages_login_login", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98117,9 +98295,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_pages_media_media" + "target": "frontend_admin_panel_src_pages_media_media", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98128,9 +98306,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_pages_media_getfiletype" + "target": "frontend_admin_panel_src_pages_media_getfiletype", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98139,9 +98317,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_pages_media_mediamanager" + "target": "frontend_admin_panel_src_pages_media_mediamanager", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98249,9 +98427,9 @@ "source_location": "L54", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_pets", - "target": "frontend_admin_panel_src_pages_pets_pets" + "target": "frontend_admin_panel_src_pages_pets_pets", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98260,9 +98438,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_pets", - "target": "frontend_admin_panel_src_pages_pets_pet" + "target": "frontend_admin_panel_src_pages_pets_pet", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98271,9 +98449,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_prescriptionsmanager", - "target": "frontend_admin_panel_src_pages_prescriptionsmanager_productitem" + "target": "frontend_admin_panel_src_pages_prescriptionsmanager_productitem", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98282,9 +98460,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_prescriptionsmanager", - "target": "frontend_admin_panel_src_pages_prescriptionsmanager_prescriptionsmanager" + "target": "frontend_admin_panel_src_pages_prescriptionsmanager_prescriptionsmanager", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98293,9 +98471,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_products", - "target": "frontend_admin_panel_src_pages_products_category" + "target": "frontend_admin_panel_src_pages_products_category", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98304,9 +98482,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_products", - "target": "frontend_admin_panel_src_pages_products_product" + "target": "frontend_admin_panel_src_pages_products_product", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98315,9 +98493,9 @@ "source_location": "L62", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_products", - "target": "frontend_admin_panel_src_pages_products_products" + "target": "frontend_admin_panel_src_pages_products_products", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98326,9 +98504,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_reports", - "target": "frontend_admin_panel_src_pages_reports_colors" + "target": "frontend_admin_panel_src_pages_reports_colors", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98337,9 +98515,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_reports", - "target": "frontend_admin_panel_src_pages_reports_customtooltipprops" + "target": "frontend_admin_panel_src_pages_reports_customtooltipprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98348,9 +98526,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_reports", - "target": "frontend_admin_panel_src_pages_reports_customtooltip" + "target": "frontend_admin_panel_src_pages_reports_customtooltip", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98359,9 +98537,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_reports", - "target": "frontend_admin_panel_src_pages_reports_categorydistitem" + "target": "frontend_admin_panel_src_pages_reports_categorydistitem", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98370,9 +98548,9 @@ "source_location": "L35", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_reports", - "target": "frontend_admin_panel_src_pages_reports_bestselleritem" + "target": "frontend_admin_panel_src_pages_reports_bestselleritem", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98381,9 +98559,9 @@ "source_location": "L40", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_reports", - "target": "frontend_admin_panel_src_pages_reports_topcouponitem" + "target": "frontend_admin_panel_src_pages_reports_topcouponitem", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98392,9 +98570,9 @@ "source_location": "L46", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_reports", - "target": "frontend_admin_panel_src_pages_reports_reportdata" + "target": "frontend_admin_panel_src_pages_reports_reportdata", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98403,9 +98581,9 @@ "source_location": "L61", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_reports", - "target": "frontend_admin_panel_src_pages_reports_reports" + "target": "frontend_admin_panel_src_pages_reports_reports", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98414,9 +98592,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_reviews", - "target": "frontend_admin_panel_src_pages_reviews_productreview" + "target": "frontend_admin_panel_src_pages_reviews_productreview", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98425,9 +98603,9 @@ "source_location": "L48", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_reviews", - "target": "frontend_admin_panel_src_pages_reviews_topersiandigits" + "target": "frontend_admin_panel_src_pages_reviews_topersiandigits", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98436,9 +98614,9 @@ "source_location": "L54", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_reviews", - "target": "frontend_admin_panel_src_pages_reviews_reviews" + "target": "frontend_admin_panel_src_pages_reviews_reviews", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98447,9 +98625,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_seosettingspage", - "target": "frontend_admin_panel_src_pages_seosettingspage_seosettingspage" + "target": "frontend_admin_panel_src_pages_seosettingspage_seosettingspage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98458,9 +98636,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_settings", - "target": "frontend_admin_panel_src_pages_settings_settings" + "target": "frontend_admin_panel_src_pages_settings_settings", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98469,64 +98647,64 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_smartadvisormanager", - "target": "frontend_admin_panel_src_pages_smartadvisormanager_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": "L42", + "source_location": "L43", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_smssettingspage", - "target": "frontend_admin_panel_src_pages_smssettingspage_smsconfigstate" + "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": "L54", + "source_location": "L55", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_smssettingspage", - "target": "frontend_admin_panel_src_pages_smssettingspage_patternitem" + "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": "L63", + "source_location": "L64", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_smssettingspage", - "target": "frontend_admin_panel_src_pages_smssettingspage_smslogitem" + "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": "L76", + "source_location": "L77", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_smssettingspage", - "target": "frontend_admin_panel_src_pages_smssettingspage_smslogstats" + "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": "L83", + "source_location": "L84", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_smssettingspage", - "target": "frontend_admin_panel_src_pages_smssettingspage_smssettingspage" + "target": "frontend_admin_panel_src_pages_smssettingspage_smssettingspage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98535,9 +98713,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_sslsettingspage", - "target": "frontend_admin_panel_src_pages_sslsettingspage_sslstatus" + "target": "frontend_admin_panel_src_pages_sslsettingspage_sslstatus", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98546,9 +98724,9 @@ "source_location": "L38", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_sslsettingspage", - "target": "frontend_admin_panel_src_pages_sslsettingspage_sslsettingspage" + "target": "frontend_admin_panel_src_pages_sslsettingspage_sslsettingspage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98557,9 +98735,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_systemsettingspage", - "target": "frontend_admin_panel_src_pages_systemsettingspage_systemsettingspage" + "target": "frontend_admin_panel_src_pages_systemsettingspage_systemsettingspage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98568,9 +98746,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_testimonialsmanager", - "target": "frontend_admin_panel_src_pages_testimonialsmanager_testimonialsmanager" + "target": "frontend_admin_panel_src_pages_testimonialsmanager_testimonialsmanager", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98579,9 +98757,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_tickets", - "target": "frontend_admin_panel_src_pages_tickets_ticketmessage" + "target": "frontend_admin_panel_src_pages_tickets_ticketmessage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98590,9 +98768,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_tickets", - "target": "frontend_admin_panel_src_pages_tickets_ticket" + "target": "frontend_admin_panel_src_pages_tickets_ticket", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98601,9 +98779,9 @@ "source_location": "L58", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_tickets", - "target": "frontend_admin_panel_src_pages_tickets_tickets" + "target": "frontend_admin_panel_src_pages_tickets_tickets", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98612,9 +98790,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_pages_transactions_transaction" + "target": "frontend_admin_panel_src_pages_transactions_transaction", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98623,9 +98801,9 @@ "source_location": "L69", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_pages_transactions_stats" + "target": "frontend_admin_panel_src_pages_transactions_stats", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98634,9 +98812,9 @@ "source_location": "L79", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_pages_transactions_gatewayhealth" + "target": "frontend_admin_panel_src_pages_transactions_gatewayhealth", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98645,9 +98823,9 @@ "source_location": "L89", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_pages_transactions_transactions" + "target": "frontend_admin_panel_src_pages_transactions_transactions", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98656,9 +98834,9 @@ "source_location": "L112", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_pages_uitexts_group_page_map" + "target": "frontend_admin_panel_src_pages_uitexts_group_page_map", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98667,9 +98845,9 @@ "source_location": "L122", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_pages_uitexts_uitexts" + "target": "frontend_admin_panel_src_pages_uitexts_uitexts", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98678,9 +98856,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_pages_uitexts_groups" + "target": "frontend_admin_panel_src_pages_uitexts_groups", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98689,9 +98867,9 @@ "source_location": "L80", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_pages_uitexts_key_labels_fa" + "target": "frontend_admin_panel_src_pages_uitexts_key_labels_fa", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98700,9 +98878,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_pages_uitexts_page_tabs" + "target": "frontend_admin_panel_src_pages_uitexts_page_tabs", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98711,9 +98889,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_pages_users_userrecord" + "target": "frontend_admin_panel_src_pages_users_userrecord", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98722,9 +98900,9 @@ "source_location": "L41", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_pages_users_users" + "target": "frontend_admin_panel_src_pages_users_users", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98733,9 +98911,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_videos", - "target": "frontend_admin_panel_src_pages_videos_doctoroption" + "target": "frontend_admin_panel_src_pages_videos_doctoroption", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98744,9 +98922,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_videos", - "target": "frontend_admin_panel_src_pages_videos_videos" + "target": "frontend_admin_panel_src_pages_videos_videos", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98755,9 +98933,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_videos", - "target": "frontend_admin_panel_src_pages_videos_video" + "target": "frontend_admin_panel_src_pages_videos_video", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98766,9 +98944,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_wholesaleapplications", - "target": "frontend_admin_panel_src_pages_wholesaleapplications_wholesaleapplications" + "target": "frontend_admin_panel_src_pages_wholesaleapplications_wholesaleapplications", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98777,9 +98955,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_wholesaleapplications", - "target": "frontend_admin_panel_src_pages_wholesaleapplications_wholesalerequest" + "target": "frontend_admin_panel_src_pages_wholesaleapplications_wholesalerequest", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98788,9 +98966,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_wiki", - "target": "frontend_admin_panel_src_pages_wiki_productitem" + "target": "frontend_admin_panel_src_pages_wiki_productitem", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98799,9 +98977,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_wiki", - "target": "frontend_admin_panel_src_pages_wiki_wiki" + "target": "frontend_admin_panel_src_pages_wiki_wiki", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98810,9 +98988,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_pages_wiki", - "target": "frontend_admin_panel_src_pages_wiki_wikiterm" + "target": "frontend_admin_panel_src_pages_wiki_wikiterm", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98821,9 +98999,9 @@ "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" + "target": "frontend_admin_panel_src_routes_adminroutes_dashboard", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98832,9 +99010,9 @@ "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" + "target": "frontend_admin_panel_src_routes_adminroutes_users", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98843,9 +99021,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_products" + "target": "frontend_admin_panel_src_routes_adminroutes_products", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98854,9 +99032,9 @@ "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" + "target": "frontend_admin_panel_src_routes_adminroutes_orders", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98865,9 +99043,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_coupons" + "target": "frontend_admin_panel_src_routes_adminroutes_coupons", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98876,9 +99054,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_settings" + "target": "frontend_admin_panel_src_routes_adminroutes_settings", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98887,9 +99065,9 @@ "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" + "target": "frontend_admin_panel_src_routes_adminroutes_reports", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98898,9 +99076,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_categories" + "target": "frontend_admin_panel_src_routes_adminroutes_categories", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98909,9 +99087,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_blogs" + "target": "frontend_admin_panel_src_routes_adminroutes_blogs", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98920,9 +99098,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_wiki" + "target": "frontend_admin_panel_src_routes_adminroutes_wiki", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98931,9 +99109,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_pets" + "target": "frontend_admin_panel_src_routes_adminroutes_pets", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98942,9 +99120,9 @@ "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" + "target": "frontend_admin_panel_src_routes_adminroutes_uitexts", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98953,9 +99131,9 @@ "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" + "target": "frontend_admin_panel_src_routes_adminroutes_media", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98964,9 +99142,9 @@ "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" + "target": "frontend_admin_panel_src_routes_adminroutes_cms", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98975,9 +99153,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_wholesaleapplications" + "target": "frontend_admin_panel_src_routes_adminroutes_wholesaleapplications", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98986,9 +99164,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_videos" + "target": "frontend_admin_panel_src_routes_adminroutes_videos", + "confidence_score": 1.0 }, { "relation": "contains", @@ -98997,9 +99175,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_contactsubmissions" + "target": "frontend_admin_panel_src_routes_adminroutes_contactsubmissions", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99008,9 +99186,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_bannersmanager" + "target": "frontend_admin_panel_src_routes_adminroutes_bannersmanager", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99019,9 +99197,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_smartadvisormanager" + "target": "frontend_admin_panel_src_routes_adminroutes_smartadvisormanager", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99030,9 +99208,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_testimonialsmanager" + "target": "frontend_admin_panel_src_routes_adminroutes_testimonialsmanager", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99041,9 +99219,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_ingredientsmanager" + "target": "frontend_admin_panel_src_routes_adminroutes_ingredientsmanager", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99052,9 +99230,9 @@ "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" + "target": "frontend_admin_panel_src_routes_adminroutes_prescriptionsmanager", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99063,9 +99241,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_b2bmanager" + "target": "frontend_admin_panel_src_routes_adminroutes_b2bmanager", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99074,9 +99252,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_seosettingspage" + "target": "frontend_admin_panel_src_routes_adminroutes_seosettingspage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99085,9 +99263,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_financialsettingspage" + "target": "frontend_admin_panel_src_routes_adminroutes_financialsettingspage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99096,9 +99274,9 @@ "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_systemsettingspage" + "target": "frontend_admin_panel_src_routes_adminroutes_systemsettingspage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99107,9 +99285,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_smssettingspage" + "target": "frontend_admin_panel_src_routes_adminroutes_smssettingspage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99118,9 +99296,9 @@ "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_sslsettingspage" + "target": "frontend_admin_panel_src_routes_adminroutes_sslsettingspage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99129,9 +99307,9 @@ "source_location": "L38", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_transactions" + "target": "frontend_admin_panel_src_routes_adminroutes_transactions", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99140,9 +99318,9 @@ "source_location": "L39", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_tickets" + "target": "frontend_admin_panel_src_routes_adminroutes_tickets", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99151,9 +99329,9 @@ "source_location": "L40", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_reviews" + "target": "frontend_admin_panel_src_routes_adminroutes_reviews", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99162,9 +99340,9 @@ "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_doctorsmanager" + "target": "frontend_admin_panel_src_routes_adminroutes_doctorsmanager", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99173,9 +99351,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_adminrouteconfig" + "target": "frontend_admin_panel_src_routes_adminroutes_adminrouteconfig", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99184,9 +99362,9 @@ "source_location": "L49", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_router" + "target": "frontend_admin_panel_src_routes_adminroutes_router", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99195,9 +99373,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_services_api", - "target": "frontend_admin_panel_src_services_api_apierrorpayload" + "target": "frontend_admin_panel_src_services_api_apierrorpayload", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99206,9 +99384,9 @@ "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" + "target": "frontend_admin_panel_src_services_api_api", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99217,9 +99395,9 @@ "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" + "target": "frontend_admin_panel_src_services_api_failedqueue", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99228,9 +99406,9 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_services_api", - "target": "frontend_admin_panel_src_services_api_processqueue" + "target": "frontend_admin_panel_src_services_api_processqueue", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99239,9 +99417,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_services_api", - "target": "frontend_admin_panel_src_services_api_base_domain" + "target": "frontend_admin_panel_src_services_api_base_domain", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99250,9 +99428,9 @@ "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" + "target": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99261,9 +99439,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_adminuser" + "target": "frontend_admin_panel_src_types_admin_adminuser", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99272,9 +99450,9 @@ "source_location": "L111", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_ingredient" + "target": "frontend_admin_panel_src_types_admin_ingredient", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99283,9 +99461,9 @@ "source_location": "L124", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_prescription" + "target": "frontend_admin_panel_src_types_admin_prescription", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99294,9 +99472,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_authstate" + "target": "frontend_admin_panel_src_types_admin_authstate", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99305,9 +99483,9 @@ "source_location": "L151", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_b2binquiry" + "target": "frontend_admin_panel_src_types_admin_b2binquiry", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99316,9 +99494,9 @@ "source_location": "L166", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_partneraccount" + "target": "frontend_admin_panel_src_types_admin_partneraccount", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99327,9 +99505,9 @@ "source_location": "L178", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_seosettings" + "target": "frontend_admin_panel_src_types_admin_seosettings", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99338,9 +99516,9 @@ "source_location": "L186", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_financialsettings" + "target": "frontend_admin_panel_src_types_admin_financialsettings", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99349,9 +99527,9 @@ "source_location": "L194", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_systemsettings" + "target": "frontend_admin_panel_src_types_admin_systemsettings", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99360,9 +99538,9 @@ "source_location": "L202", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_product" + "target": "frontend_admin_panel_src_types_admin_product", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99371,9 +99549,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_sendotppayload" + "target": "frontend_admin_panel_src_types_admin_sendotppayload", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99382,9 +99560,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_verifyotppayload" + "target": "frontend_admin_panel_src_types_admin_verifyotppayload", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99393,9 +99571,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_adminloginpayload" + "target": "frontend_admin_panel_src_types_admin_adminloginpayload", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99404,9 +99582,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_authresponsedata" + "target": "frontend_admin_panel_src_types_admin_authresponsedata", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99415,9 +99593,9 @@ "source_location": "L41", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_apiresponse" + "target": "frontend_admin_panel_src_types_admin_apiresponse", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99426,9 +99604,9 @@ "source_location": "L49", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_useraddress" + "target": "frontend_admin_panel_src_types_admin_useraddress", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99437,9 +99615,9 @@ "source_location": "L61", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_petsummary" + "target": "frontend_admin_panel_src_types_admin_petsummary", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99448,9 +99626,9 @@ "source_location": "L70", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_banner" + "target": "frontend_admin_panel_src_types_admin_banner", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99459,9 +99637,9 @@ "source_location": "L83", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_smartadvisorrule" + "target": "frontend_admin_panel_src_types_admin_smartadvisorrule", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99470,9 +99648,9 @@ "source_location": "L97", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_testimonial" + "target": "frontend_admin_panel_src_types_admin_testimonial", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99481,9 +99659,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig", - "target": "frontend_admin_panel_tsconfig_files" + "target": "frontend_admin_panel_tsconfig_files", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99492,9 +99670,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_admin_panel_tsconfig", - "target": "frontend_admin_panel_tsconfig_references" + "target": "frontend_admin_panel_tsconfig_references", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99503,9 +99681,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_app_compileroptions", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99514,9 +99692,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_app_include", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99525,9 +99703,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_app_compileroptions_moduleresolution", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99536,9 +99714,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_app_compileroptions_allowimportingtsextensions", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99547,9 +99725,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_app_compileroptions_verbatimmodulesyntax", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99558,9 +99736,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_app_compileroptions_moduledetection", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99569,9 +99747,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_app_compileroptions_noemit", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99580,9 +99758,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_app_compileroptions_jsx", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99591,9 +99769,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_app_compileroptions_nounusedlocals", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99602,9 +99780,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_app_compileroptions_nounusedparameters", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99613,9 +99791,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_app_compileroptions_erasablesyntaxonly", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99624,9 +99802,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_app_compileroptions_nofallthroughcasesinswitch", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99635,9 +99813,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_app_compileroptions_tsbuildinfofile", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99646,9 +99824,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_app_compileroptions_target", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99657,9 +99835,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_app_compileroptions_lib", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99668,9 +99846,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_app_compileroptions_module", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99679,9 +99857,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_app_compileroptions_types", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99690,9 +99868,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_app_compileroptions_skiplibcheck", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99701,9 +99879,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_node_compileroptions", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99712,9 +99890,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_node_include", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99723,9 +99901,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_node_compileroptions_moduleresolution", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99734,9 +99912,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_node_compileroptions_allowimportingtsextensions", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99745,9 +99923,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_node_compileroptions_verbatimmodulesyntax", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99756,9 +99934,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_node_compileroptions_moduledetection", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99767,9 +99945,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_node_compileroptions_noemit", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99778,9 +99956,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_node_compileroptions_nounusedlocals", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99789,9 +99967,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_node_compileroptions_nounusedparameters", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99800,9 +99978,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_node_compileroptions_erasablesyntaxonly", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99811,9 +99989,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_node_compileroptions_nofallthroughcasesinswitch", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99822,9 +100000,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_node_compileroptions_tsbuildinfofile", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99833,9 +100011,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_node_compileroptions_target", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99844,9 +100022,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_node_compileroptions_lib", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99855,9 +100033,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_node_compileroptions_module", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99866,9 +100044,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_node_compileroptions_types", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99877,9 +100055,9 @@ "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" + "target": "frontend_admin_panel_tsconfig_node_compileroptions_skiplibcheck", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99888,9 +100066,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_about_page", - "target": "frontend_application_app_about_page_aboutpage" + "target": "frontend_application_app_about_page_aboutpage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99899,9 +100077,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_about_page", - "target": "frontend_application_app_about_page_metadata" + "target": "frontend_application_app_about_page_metadata", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99910,9 +100088,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_blog_page", - "target": "frontend_application_app_blog_page_getblogs" + "target": "frontend_application_app_blog_page_getblogs", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99921,9 +100099,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_blog_page", - "target": "frontend_application_app_blog_page_metadata" + "target": "frontend_application_app_blog_page_metadata", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99932,9 +100110,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_blog_page", - "target": "frontend_application_app_blog_page_blog" + "target": "frontend_application_app_blog_page_blog", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99943,9 +100121,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_blog_slug_page", - "target": "frontend_application_app_blog_slug_page_revalidate" + "target": "frontend_application_app_blog_slug_page_revalidate", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99954,9 +100132,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_blog_slug_page", - "target": "frontend_application_app_blog_slug_page_generatemetadata" + "target": "frontend_application_app_blog_slug_page_generatemetadata", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99965,9 +100143,9 @@ "source_location": "L57", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_blog_slug_page", - "target": "frontend_application_app_blog_slug_page_blogpostpage" + "target": "frontend_application_app_blog_slug_page_blogpostpage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99976,9 +100154,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_blog_slug_page", - "target": "frontend_application_app_blog_slug_page_getblog" + "target": "frontend_application_app_blog_slug_page_getblog", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99987,9 +100165,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_catalog_catalogclient", - "target": "frontend_application_app_catalog_catalogclient_catalogclient" + "target": "frontend_application_app_catalog_catalogclient_catalogclient", + "confidence_score": 1.0 }, { "relation": "contains", @@ -99998,9 +100176,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_catalog_page", - "target": "frontend_application_app_catalog_page_catalogpage" + "target": "frontend_application_app_catalog_page_catalogpage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100009,9 +100187,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_catalog_page", - "target": "frontend_application_app_catalog_page_metadata" + "target": "frontend_application_app_catalog_page_metadata", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100020,9 +100198,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_checkout_page", - "target": "frontend_application_app_checkout_page_checkout" + "target": "frontend_application_app_checkout_page_checkout", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100031,9 +100209,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_checkout_success_id_page", - "target": "frontend_application_app_checkout_success_id_page_successpage" + "target": "frontend_application_app_checkout_success_id_page_successpage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100042,9 +100220,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_clientlayout", - "target": "frontend_application_app_clientlayout_clientlayout" + "target": "frontend_application_app_clientlayout_clientlayout", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100053,9 +100231,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_contact_page", - "target": "frontend_application_app_contact_page_contactpage" + "target": "frontend_application_app_contact_page_contactpage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100064,9 +100242,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_contact_page", - "target": "frontend_application_app_contact_page_metadata" + "target": "frontend_application_app_contact_page_metadata", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100075,9 +100253,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_dashboard_page", - "target": "frontend_application_app_dashboard_page_dashboardpage" + "target": "frontend_application_app_dashboard_page_dashboardpage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100086,9 +100264,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_error", - "target": "frontend_application_app_error_errorboundary" + "target": "frontend_application_app_error_errorboundary", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100097,9 +100275,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_app_homeclient_homeclientprops" + "target": "frontend_application_app_homeclient_homeclientprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100108,9 +100286,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_homeclient", - "target": "frontend_application_app_homeclient_homeclient" + "target": "frontend_application_app_homeclient_homeclient", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100119,9 +100297,9 @@ "source_location": "L112", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_layout", - "target": "frontend_application_app_layout_rootlayout" + "target": "frontend_application_app_layout_rootlayout", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100130,9 +100308,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_layout", - "target": "frontend_application_app_layout_generatemetadata" + "target": "frontend_application_app_layout_generatemetadata", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100141,9 +100319,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_loading", - "target": "frontend_application_app_loading_globalloading" + "target": "frontend_application_app_loading_globalloading", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100152,9 +100330,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_not_found", - "target": "frontend_application_app_not_found_notfound" + "target": "frontend_application_app_not_found_notfound", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100163,9 +100341,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_page", - "target": "frontend_application_app_page_gethomedata" + "target": "frontend_application_app_page_gethomedata", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100174,9 +100352,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_page", - "target": "frontend_application_app_page_metadata" + "target": "frontend_application_app_page_metadata", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100185,9 +100363,9 @@ "source_location": "L55", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_page", - "target": "frontend_application_app_page_home" + "target": "frontend_application_app_page_home", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100196,9 +100374,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_payment_verify_page", - "target": "frontend_application_app_payment_verify_page_verifycontent" + "target": "frontend_application_app_payment_verify_page_verifycontent", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100207,9 +100385,9 @@ "source_location": "L319", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_payment_verify_page", - "target": "frontend_application_app_payment_verify_page_paymentverifypage" + "target": "frontend_application_app_payment_verify_page_paymentverifypage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100218,9 +100396,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_privacy_page", - "target": "frontend_application_app_privacy_page_privacypage" + "target": "frontend_application_app_privacy_page_privacypage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100229,9 +100407,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_privacy_page", - "target": "frontend_application_app_privacy_page_metadata" + "target": "frontend_application_app_privacy_page_metadata", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100240,9 +100418,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_profile_page", - "target": "frontend_application_app_profile_page_profilepage" + "target": "frontend_application_app_profile_page_profilepage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100251,9 +100429,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_robots", - "target": "frontend_application_app_robots_robots" + "target": "frontend_application_app_robots_robots", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100262,9 +100440,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_search_page", - "target": "frontend_application_app_search_page_metadata" + "target": "frontend_application_app_search_page_metadata", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100273,9 +100451,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_search_page", - "target": "frontend_application_app_search_page_searchpage" + "target": "frontend_application_app_search_page_searchpage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100284,9 +100462,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_shop_page", - "target": "frontend_application_app_shop_page_shop" + "target": "frontend_application_app_shop_page_shop", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100295,9 +100473,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_shop_page", - "target": "frontend_application_app_shop_page_metadata" + "target": "frontend_application_app_shop_page_metadata", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100306,9 +100484,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_shop_slug_page", - "target": "frontend_application_app_shop_slug_page_shopproductpage" + "target": "frontend_application_app_shop_slug_page_shopproductpage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100317,9 +100495,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_shop_slug_page", - "target": "frontend_application_app_shop_slug_page_generatemetadata" + "target": "frontend_application_app_shop_slug_page_generatemetadata", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100328,9 +100506,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_sitemap", - "target": "frontend_application_app_sitemap_sitemap" + "target": "frontend_application_app_sitemap_sitemap", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100339,9 +100517,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_track_page", - "target": "frontend_application_app_track_page_trackpage" + "target": "frontend_application_app_track_page_trackpage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100350,9 +100528,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_trust_seals_page", - "target": "frontend_application_app_trust_seals_page_trustsealspage" + "target": "frontend_application_app_trust_seals_page_trustsealspage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100361,9 +100539,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_trust_seals_page", - "target": "frontend_application_app_trust_seals_page_metadata" + "target": "frontend_application_app_trust_seals_page_metadata", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100372,9 +100550,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_videos_page", - "target": "frontend_application_app_videos_page_videos" + "target": "frontend_application_app_videos_page_videos", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100383,9 +100561,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_wiki_page", - "target": "frontend_application_app_wiki_page_wikipage" + "target": "frontend_application_app_wiki_page_wikipage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100394,9 +100572,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_wiki_page", - "target": "frontend_application_app_wiki_page_metadata" + "target": "frontend_application_app_wiki_page_metadata", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100405,9 +100583,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_wiki_slug_page", - "target": "frontend_application_app_wiki_slug_page_generatemetadata" + "target": "frontend_application_app_wiki_slug_page_generatemetadata", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100416,9 +100594,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_wiki_slug_page", - "target": "frontend_application_app_wiki_slug_page_wikitermpage" + "target": "frontend_application_app_wiki_slug_page_wikitermpage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100427,9 +100605,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_app_wiki_slug_page", - "target": "frontend_application_app_wiki_slug_page_getwikiterm" + "target": "frontend_application_app_wiki_slug_page_getwikiterm", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100438,9 +100616,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_addressmodal", - "target": "frontend_application_components_addressmodal_addressmodalprops" + "target": "frontend_application_components_addressmodal_addressmodalprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100449,9 +100627,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_addressmodal", - "target": "frontend_application_components_addressmodal_addressmodal" + "target": "frontend_application_components_addressmodal_addressmodal", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100460,9 +100638,9 @@ "source_location": "L227", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_components_archivepage_archivepage" + "target": "frontend_application_components_archivepage_archivepage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100471,9 +100649,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_components_archivepage_icon_map" + "target": "frontend_application_components_archivepage_icon_map", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100482,9 +100660,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_components_archivepage_category_map" + "target": "frontend_application_components_archivepage_category_map", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100493,9 +100671,9 @@ "source_location": "L74", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_archivepage", - "target": "frontend_application_components_archivepage_archiveproductcard" + "target": "frontend_application_components_archivepage_archiveproductcard", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100504,9 +100682,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_authmodal", - "target": "frontend_application_components_authmodal_authmodalprops" + "target": "frontend_application_components_authmodal_authmodalprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100515,9 +100693,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_authmodal", - "target": "frontend_application_components_authmodal_extractotpfromtext" + "target": "frontend_application_components_authmodal_extractotpfromtext", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100526,9 +100704,9 @@ "source_location": "L38", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_authmodal", - "target": "frontend_application_components_authmodal_authmodal" + "target": "frontend_application_components_authmodal_authmodal", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100537,9 +100715,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_b2bportal", - "target": "frontend_application_components_b2bportal_b2bportal" + "target": "frontend_application_components_b2bportal_b2bportal", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100548,9 +100726,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_backbutton", - "target": "frontend_application_components_backbutton_backbutton" + "target": "frontend_application_components_backbutton_backbutton", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100559,9 +100737,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_backbutton", - "target": "frontend_application_components_backbutton_backbuttonprops" + "target": "frontend_application_components_backbutton_backbuttonprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100570,9 +100748,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_bannerplacement", - "target": "frontend_application_components_bannerplacement_bannerplacement" + "target": "frontend_application_components_bannerplacement_bannerplacement", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100581,9 +100759,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_bannerplacement", - "target": "frontend_application_components_bannerplacement_bannerplacementprops" + "target": "frontend_application_components_bannerplacement_bannerplacementprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100592,9 +100770,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_blogpage", - "target": "frontend_application_components_blogpage_blogpage" + "target": "frontend_application_components_blogpage_blogpage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100603,9 +100781,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_blogpage", - "target": "frontend_application_components_blogpage_blogpost" + "target": "frontend_application_components_blogpage_blogpost", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100614,9 +100792,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_brandlogo", - "target": "frontend_application_components_brandlogo_brandlogo" + "target": "frontend_application_components_brandlogo_brandlogo", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100625,9 +100803,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_brandlogo", - "target": "frontend_application_components_brandlogo_brandlogoprops" + "target": "frontend_application_components_brandlogo_brandlogoprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100636,9 +100814,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_components_cartdrawer_cartdrawer" + "target": "frontend_application_components_cartdrawer_cartdrawer", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100647,9 +100825,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_catalog_catalogpagespread", - "target": "frontend_application_components_catalog_catalogpagespread_categorymeta" + "target": "frontend_application_components_catalog_catalogpagespread_categorymeta", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100658,9 +100836,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_catalog_catalogpagespread", - "target": "frontend_application_components_catalog_catalogpagespread_catalogpagespreadprops" + "target": "frontend_application_components_catalog_catalogpagespread_catalogpagespreadprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100669,9 +100847,9 @@ "source_location": "L49", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_catalog_catalogpagespread", - "target": "frontend_application_components_catalog_catalogpagespread_getformbadge" + "target": "frontend_application_components_catalog_catalogpagespread_getformbadge", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100680,9 +100858,9 @@ "source_location": "L61", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_catalog_catalogpagespread", - "target": "frontend_application_components_catalog_catalogpagespread_getspeciesbadge" + "target": "frontend_application_components_catalog_catalogpagespread_getspeciesbadge", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100691,9 +100869,9 @@ "source_location": "L67", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_catalog_catalogpagespread", - "target": "frontend_application_components_catalog_catalogpagespread_catalogpagespread" + "target": "frontend_application_components_catalog_catalogpagespread_catalogpagespread", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100702,9 +100880,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_catalog_flipbookcatalog", - "target": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalogprops" + "target": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalogprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100713,9 +100891,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_catalog_flipbookcatalog", - "target": "frontend_application_components_catalog_flipbookcatalog_normalizesearchtext" + "target": "frontend_application_components_catalog_flipbookcatalog_normalizesearchtext", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100724,9 +100902,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_catalog_flipbookcatalog", - "target": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalog" + "target": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalog", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100735,9 +100913,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_catalog_productdetailmodal", - "target": "frontend_application_components_catalog_productdetailmodal_productdetailmodal" + "target": "frontend_application_components_catalog_productdetailmodal_productdetailmodal", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100746,9 +100924,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_catalog_productdetailmodal", - "target": "frontend_application_components_catalog_productdetailmodal_productdetailmodalprops" + "target": "frontend_application_components_catalog_productdetailmodal_productdetailmodalprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100757,9 +100935,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_components_checkoutpage_checkoutpage" + "target": "frontend_application_components_checkoutpage_checkoutpage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100768,9 +100946,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_contactformclient", - "target": "frontend_application_components_contactformclient_contactformclient" + "target": "frontend_application_components_contactformclient_contactformclient", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100779,9 +100957,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_contactformclient", - "target": "frontend_application_components_contactformclient_contactinfoitem" + "target": "frontend_application_components_contactformclient_contactinfoitem", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100790,9 +100968,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_deleteconfirmmodal", - "target": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodal" + "target": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodal", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100801,9 +100979,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_deleteconfirmmodal", - "target": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodalprops" + "target": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodalprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100812,9 +100990,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_enamadbadge", - "target": "frontend_application_components_enamadbadge_enamadbadge" + "target": "frontend_application_components_enamadbadge_enamadbadge", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100823,9 +101001,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_errorboundary", - "target": "frontend_application_components_errorboundary_state" + "target": "frontend_application_components_errorboundary_state", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100834,9 +101012,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_errorboundary", - "target": "frontend_application_components_errorboundary_errorboundary" + "target": "frontend_application_components_errorboundary_errorboundary", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100845,9 +101023,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_errorboundary", - "target": "frontend_application_components_errorboundary_props" + "target": "frontend_application_components_errorboundary_props", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100856,9 +101034,9 @@ "source_location": "L38", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_errorpages", - "target": "frontend_application_components_errorpages_servererrorpage" + "target": "frontend_application_components_errorpages_servererrorpage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100867,9 +101045,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_errorpages", - "target": "frontend_application_components_errorpages_notfoundpage" + "target": "frontend_application_components_errorpages_notfoundpage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100878,9 +101056,9 @@ "source_location": "L139", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_components_featuredproducts_featuredproducts" + "target": "frontend_application_components_featuredproducts_featuredproducts", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100889,9 +101067,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_components_featuredproducts_productcard" + "target": "frontend_application_components_featuredproducts_productcard", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100900,9 +101078,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_footer", - "target": "frontend_application_components_footer_footer" + "target": "frontend_application_components_footer_footer", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100911,9 +101089,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_components_header_menu_icons" + "target": "frontend_application_components_header_menu_icons", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100922,9 +101100,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_header", - "target": "frontend_application_components_header_header" + "target": "frontend_application_components_header_header", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100933,9 +101111,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_headerbutton", - "target": "frontend_application_components_headerbutton_headerbutton" + "target": "frontend_application_components_headerbutton_headerbutton", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100944,9 +101122,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_headerbutton", - "target": "frontend_application_components_headerbutton_headerbuttonprops" + "target": "frontend_application_components_headerbutton_headerbuttonprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100955,9 +101133,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_hero", - "target": "frontend_application_components_hero_statcounter" + "target": "frontend_application_components_hero_statcounter", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100966,9 +101144,9 @@ "source_location": "L40", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_hero", - "target": "frontend_application_components_hero_hero" + "target": "frontend_application_components_hero_hero", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100977,9 +101155,9 @@ "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" + "target": "frontend_application_components_ingredientwiki_ingredient_match_keywords", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100988,9 +101166,9 @@ "source_location": "L50", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_ingredientwiki", - "target": "frontend_application_components_ingredientwiki_formatingredientdisplayname" + "target": "frontend_application_components_ingredientwiki_formatingredientdisplayname", + "confidence_score": 1.0 }, { "relation": "contains", @@ -100999,9 +101177,9 @@ "source_location": "L63", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_ingredientwiki", - "target": "frontend_application_components_ingredientwiki_ingredientwiki" + "target": "frontend_application_components_ingredientwiki_ingredientwiki", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101010,9 +101188,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_loginmodal", - "target": "frontend_application_components_loginmodal_loginmodalprops" + "target": "frontend_application_components_loginmodal_loginmodalprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101021,9 +101199,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_loginmodal", - "target": "frontend_application_components_loginmodal_loginmodal" + "target": "frontend_application_components_loginmodal_loginmodal", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101032,9 +101210,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_maintenancepage", - "target": "frontend_application_components_maintenancepage_maintenancepage" + "target": "frontend_application_components_maintenancepage_maintenancepage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101043,9 +101221,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_networkbanner", - "target": "frontend_application_components_networkbanner_networkbanner" + "target": "frontend_application_components_networkbanner_networkbanner", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101054,9 +101232,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_orderdetailsmodal", - "target": "frontend_application_components_orderdetailsmodal_orderdetailsmodalprops" + "target": "frontend_application_components_orderdetailsmodal_orderdetailsmodalprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101065,9 +101243,9 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_orderdetailsmodal", - "target": "frontend_application_components_orderdetailsmodal_orderdetailsmodal" + "target": "frontend_application_components_orderdetailsmodal_orderdetailsmodal", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101076,9 +101254,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_ordersuccess", - "target": "frontend_application_components_ordersuccess_ordersuccess" + "target": "frontend_application_components_ordersuccess_ordersuccess", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101087,9 +101265,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_ordertracking", - "target": "frontend_application_components_ordertracking_ordertracking" + "target": "frontend_application_components_ordertracking_ordertracking", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101098,9 +101276,9 @@ "source_location": "L40", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_petprofile", - "target": "frontend_application_components_petprofile_petprofile" + "target": "frontend_application_components_petprofile_petprofile", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101109,9 +101287,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_podcastinlineplayer", - "target": "frontend_application_components_podcastinlineplayer_podcastinlineplayerprops" + "target": "frontend_application_components_podcastinlineplayer_podcastinlineplayerprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101120,9 +101298,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_podcastinlineplayer", - "target": "frontend_application_components_podcastinlineplayer_playback_rates" + "target": "frontend_application_components_podcastinlineplayer_playback_rates", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101131,9 +101309,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_podcastinlineplayer", - "target": "frontend_application_components_podcastinlineplayer_podcastinlineplayer" + "target": "frontend_application_components_podcastinlineplayer_podcastinlineplayer", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101142,9 +101320,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_podcastplayermodal", - "target": "frontend_application_components_podcastplayermodal_podcastplayermodalprops" + "target": "frontend_application_components_podcastplayermodal_podcastplayermodalprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101153,9 +101331,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_podcastplayermodal", - "target": "frontend_application_components_podcastplayermodal_playback_rates" + "target": "frontend_application_components_podcastplayermodal_playback_rates", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101164,9 +101342,9 @@ "source_location": "L38", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_podcastplayermodal", - "target": "frontend_application_components_podcastplayermodal_podcastplayermodal" + "target": "frontend_application_components_podcastplayermodal_podcastplayermodal", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101175,9 +101353,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_prescriptionuploadmodal", - "target": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodal" + "target": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodal", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101186,9 +101364,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_prescriptionuploadmodal", - "target": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodalprops" + "target": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodalprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101197,9 +101375,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_components_productpage_icon_map" + "target": "frontend_application_components_productpage_icon_map", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101208,9 +101386,9 @@ "source_location": "L54", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_components_productpage_calculatorstate" + "target": "frontend_application_components_productpage_calculatorstate", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101219,9 +101397,9 @@ "source_location": "L61", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_components_productpage_usecalculatorstore" + "target": "frontend_application_components_productpage_usecalculatorstore", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101230,9 +101408,9 @@ "source_location": "L76", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productpage", - "target": "frontend_application_components_productpage_productpage" + "target": "frontend_application_components_productpage_productpage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101241,9 +101419,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productreviews", - "target": "frontend_application_components_productreviews_reviewitem" + "target": "frontend_application_components_productreviews_reviewitem", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101252,9 +101430,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productreviews", - "target": "frontend_application_components_productreviews_productreviewsprops" + "target": "frontend_application_components_productreviews_productreviewsprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101263,9 +101441,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_productreviews", - "target": "frontend_application_components_productreviews_productreviews" + "target": "frontend_application_components_productreviews_productreviews", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101274,9 +101452,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_safeimage", - "target": "frontend_application_components_safeimage_safeimage" + "target": "frontend_application_components_safeimage_safeimage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101285,9 +101463,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_safeimage", - "target": "frontend_application_components_safeimage_safeimageprops" + "target": "frontend_application_components_safeimage_safeimageprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101296,9 +101474,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_searchableselect", - "target": "frontend_application_components_searchableselect_searchableselect" + "target": "frontend_application_components_searchableselect_searchableselect", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101307,9 +101485,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_searchableselect", - "target": "frontend_application_components_searchableselect_searchableselectprops" + "target": "frontend_application_components_searchableselect_searchableselectprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101318,9 +101496,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_searchresultspage", - "target": "frontend_application_components_searchresultspage_searchresultspage" + "target": "frontend_application_components_searchresultspage_searchresultspage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101329,9 +101507,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_skeleton", - "target": "frontend_application_components_skeleton_productcardskeleton" + "target": "frontend_application_components_skeleton_productcardskeleton", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101340,9 +101518,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_skeleton", - "target": "frontend_application_components_skeleton_skeletonprops" + "target": "frontend_application_components_skeleton_skeletonprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101351,9 +101529,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_skeleton", - "target": "frontend_application_components_skeleton_petprofileskeleton" + "target": "frontend_application_components_skeleton_petprofileskeleton", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101362,9 +101540,9 @@ "source_location": "L70", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_skeleton", - "target": "frontend_application_components_skeleton_orderrowskeleton" + "target": "frontend_application_components_skeleton_orderrowskeleton", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101373,9 +101551,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_skeleton", - "target": "frontend_application_components_skeleton_skeleton" + "target": "frontend_application_components_skeleton_skeleton", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101384,9 +101562,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_components_smartadvisor_smartadvisorprops" + "target": "frontend_application_components_smartadvisor_smartadvisorprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101395,9 +101573,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_components_smartadvisor_current_symptoms" + "target": "frontend_application_components_smartadvisor_current_symptoms", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101406,9 +101584,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_components_smartadvisor_medical_histories" + "target": "frontend_application_components_smartadvisor_medical_histories", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101417,9 +101595,9 @@ "source_location": "L52", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_components_smartadvisor_smartadvisor" + "target": "frontend_application_components_smartadvisor_smartadvisor", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101428,9 +101606,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_testimonialssection", - "target": "frontend_application_components_testimonialssection_testimonialssection" + "target": "frontend_application_components_testimonialssection_testimonialssection", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101439,9 +101617,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_testimonialssection", - "target": "frontend_application_components_testimonialssection_testimonial" + "target": "frontend_application_components_testimonialssection_testimonial", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101450,9 +101628,9 @@ "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" + "target": "frontend_application_components_tests_cartdrawer_test_mockproduct", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101461,9 +101639,9 @@ "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" + "target": "frontend_application_components_tests_featuredproducts_test_mockproducts", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101472,9 +101650,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_tickerbanner", - "target": "frontend_application_components_tickerbanner_tickerbanner" + "target": "frontend_application_components_tickerbanner_tickerbanner", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101483,9 +101661,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_tooltip", - "target": "frontend_application_components_tooltip_tooltip" + "target": "frontend_application_components_tooltip_tooltip", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101494,9 +101672,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_tooltip", - "target": "frontend_application_components_tooltip_tooltipprops" + "target": "frontend_application_components_tooltip_tooltipprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101505,9 +101683,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_topupmodal", - "target": "frontend_application_components_topupmodal_topupmodalprops" + "target": "frontend_application_components_topupmodal_topupmodalprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101516,9 +101694,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_topupmodal", - "target": "frontend_application_components_topupmodal_preset_amounts" + "target": "frontend_application_components_topupmodal_preset_amounts", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101527,9 +101705,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_topupmodal", - "target": "frontend_application_components_topupmodal_topupmodal" + "target": "frontend_application_components_topupmodal_topupmodal", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101538,9 +101716,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_userdashboard_userdashboard" + "target": "frontend_application_components_userdashboard_userdashboard", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101549,9 +101727,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_vetgallery", - "target": "frontend_application_components_vetgallery_testimonialitem" + "target": "frontend_application_components_vetgallery_testimonialitem", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101560,9 +101738,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_vetgallery", - "target": "frontend_application_components_vetgallery_fallback_videos" + "target": "frontend_application_components_vetgallery_fallback_videos", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101571,9 +101749,9 @@ "source_location": "L58", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_vetgallery", - "target": "frontend_application_components_vetgallery_displayvideoitem" + "target": "frontend_application_components_vetgallery_displayvideoitem", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101582,9 +101760,9 @@ "source_location": "L71", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_vetgallery", - "target": "frontend_application_components_vetgallery_vetgallery" + "target": "frontend_application_components_vetgallery_vetgallery", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101593,9 +101771,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_videomodalplayer", - "target": "frontend_application_components_videomodalplayer_videomodalplayerprops" + "target": "frontend_application_components_videomodalplayer_videomodalplayerprops", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101604,9 +101782,9 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_videomodalplayer", - "target": "frontend_application_components_videomodalplayer_playback_rates" + "target": "frontend_application_components_videomodalplayer_playback_rates", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101615,9 +101793,9 @@ "source_location": "L39", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_videomodalplayer", - "target": "frontend_application_components_videomodalplayer_videomodalplayer" + "target": "frontend_application_components_videomodalplayer_videomodalplayer", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101626,9 +101804,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_components_videospage", - "target": "frontend_application_components_videospage_videospage" + "target": "frontend_application_components_videospage_videospage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101637,9 +101815,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_eslint_config", - "target": "frontend_application_eslint_config_eslintconfig" + "target": "frontend_application_eslint_config_eslintconfig", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101648,9 +101826,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_data_products", - "target": "frontend_application_lib_data_products_specialist" + "target": "frontend_application_lib_data_products_specialist", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101659,9 +101837,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_data_products", - "target": "frontend_application_lib_data_products_ingredientinfo" + "target": "frontend_application_lib_data_products_ingredientinfo", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101670,9 +101848,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_data_products", - "target": "frontend_application_lib_data_products_dosageresult" + "target": "frontend_application_lib_data_products_dosageresult", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101681,9 +101859,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_data_products", - "target": "frontend_application_lib_data_products_faq" + "target": "frontend_application_lib_data_products_faq", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101692,9 +101870,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_data_products", - "target": "frontend_application_lib_data_products_product" + "target": "frontend_application_lib_data_products_product", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101703,9 +101881,9 @@ "source_location": "L383", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_data_products", - "target": "frontend_application_lib_data_products_products" + "target": "frontend_application_lib_data_products_products", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101714,9 +101892,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_data_products", - "target": "frontend_application_lib_data_products_pettype" + "target": "frontend_application_lib_data_products_pettype", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101725,9 +101903,9 @@ "source_location": "L80", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_data_products", - "target": "frontend_application_lib_data_products_ingredients_wiki" + "target": "frontend_application_lib_data_products_ingredients_wiki", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101736,9 +101914,9 @@ "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" + "target": "frontend_application_lib_data_provinces_iran_provinces", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101747,9 +101925,9 @@ "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" + "target": "frontend_application_lib_data_provinces_province_cities", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101758,9 +101936,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_data_scientificterms", - "target": "frontend_application_lib_data_scientificterms_scientificterm" + "target": "frontend_application_lib_data_scientificterms_scientificterm", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101769,9 +101947,9 @@ "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" + "target": "frontend_application_lib_data_scientificterms_scientific_terms", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101780,9 +101958,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_hooks_usenetworkstatus", - "target": "frontend_application_lib_hooks_usenetworkstatus_usenetworkstatus" + "target": "frontend_application_lib_hooks_usenetworkstatus_usenetworkstatus", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101791,9 +101969,9 @@ "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" + "target": "frontend_application_lib_services_api_baseurl", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101802,9 +101980,9 @@ "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" + "target": "frontend_application_lib_services_api_base_domain", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101813,9 +101991,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_api", - "target": "frontend_application_lib_services_api_apierrorpayload" + "target": "frontend_application_lib_services_api_apierrorpayload", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101824,9 +102002,9 @@ "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" + "target": "frontend_application_lib_services_api_api", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101835,9 +102013,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_api", - "target": "frontend_application_lib_services_api_getbaseurl" + "target": "frontend_application_lib_services_api_getbaseurl", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101846,9 +102024,9 @@ "source_location": "L157", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_authservice", - "target": "frontend_application_lib_services_authservice_authservice" + "target": "frontend_application_lib_services_authservice_authservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101857,9 +102035,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_authservice", - "target": "frontend_application_lib_services_authservice_authresponse" + "target": "frontend_application_lib_services_authservice_authresponse", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101868,9 +102046,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_authservice", - "target": "frontend_application_lib_services_authservice_apierr" + "target": "frontend_application_lib_services_authservice_apierr", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101879,9 +102057,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_authservice", - "target": "frontend_application_lib_services_authservice_user" + "target": "frontend_application_lib_services_authservice_user", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101890,9 +102068,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_orderservice", - "target": "frontend_application_lib_services_orderservice_order" + "target": "frontend_application_lib_services_orderservice_order", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101901,9 +102079,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_orderservice", - "target": "frontend_application_lib_services_orderservice_apierr" + "target": "frontend_application_lib_services_orderservice_apierr", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101912,9 +102090,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_orderservice", - "target": "frontend_application_lib_services_orderservice_orderitem" + "target": "frontend_application_lib_services_orderservice_orderitem", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101923,9 +102101,9 @@ "source_location": "L96", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_orderservice", - "target": "frontend_application_lib_services_orderservice_orderservice" + "target": "frontend_application_lib_services_orderservice_orderservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101934,9 +102112,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice", - "target": "frontend_application_lib_services_productservice_backendproduct" + "target": "frontend_application_lib_services_productservice_backendproduct", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101945,9 +102123,9 @@ "source_location": "L338", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice", - "target": "frontend_application_lib_services_productservice_productservice" + "target": "frontend_application_lib_services_productservice_productservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101956,9 +102134,9 @@ "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" + "target": "frontend_application_lib_services_productservice_category_slug_to_name", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101967,9 +102145,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_ticketservice", - "target": "frontend_application_lib_services_ticketservice_ticket" + "target": "frontend_application_lib_services_ticketservice_ticket", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101978,9 +102156,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_ticketservice", - "target": "frontend_application_lib_services_ticketservice_ticketmessage" + "target": "frontend_application_lib_services_ticketservice_ticketmessage", + "confidence_score": 1.0 }, { "relation": "contains", @@ -101989,9 +102167,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_ticketservice", - "target": "frontend_application_lib_services_ticketservice_createticketpayload" + "target": "frontend_application_lib_services_ticketservice_createticketpayload", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102000,9 +102178,9 @@ "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" + "target": "frontend_application_lib_services_ticketservice_ticketservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102011,9 +102189,9 @@ "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" + "target": "frontend_application_lib_services_videoservice_videoservice", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102022,9 +102200,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_videoservice", - "target": "frontend_application_lib_services_videoservice_video" + "target": "frontend_application_lib_services_videoservice_video", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102033,9 +102211,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_cartstore", - "target": "frontend_application_lib_store_cartstore_order" + "target": "frontend_application_lib_store_cartstore_order", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102044,9 +102222,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_cartstore", - "target": "frontend_application_lib_store_cartstore_cartstore" + "target": "frontend_application_lib_store_cartstore_cartstore", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102055,9 +102233,9 @@ "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" + "target": "frontend_application_lib_store_cartstore_usecartstore", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102066,9 +102244,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_cartstore", - "target": "frontend_application_lib_store_cartstore_cartitem" + "target": "frontend_application_lib_store_cartstore_cartitem", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102077,9 +102255,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_settingsstore", - "target": "frontend_application_lib_store_settingsstore_settingsstore" + "target": "frontend_application_lib_store_settingsstore_settingsstore", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102088,9 +102266,9 @@ "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" + "target": "frontend_application_lib_store_settingsstore_usesettingsstore", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102099,9 +102277,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_settingsstore", - "target": "frontend_application_lib_store_settingsstore_scientificterm" + "target": "frontend_application_lib_store_settingsstore_scientificterm", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102110,9 +102288,9 @@ "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" + "target": "frontend_application_lib_store_tests_cartstore_test_mockproduct", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102121,9 +102299,9 @@ "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" + "target": "frontend_application_lib_store_uistore_useuistore", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102132,9 +102310,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_uistore", - "target": "frontend_application_lib_store_uistore_uistate" + "target": "frontend_application_lib_store_uistore_uistate", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102143,9 +102321,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_usepetstore", - "target": "frontend_application_lib_store_usepetstore_healthlog" + "target": "frontend_application_lib_store_usepetstore_healthlog", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102154,9 +102332,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_usepetstore", - "target": "frontend_application_lib_store_usepetstore_petconsumption" + "target": "frontend_application_lib_store_usepetstore_petconsumption", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102165,9 +102343,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_usepetstore", - "target": "frontend_application_lib_store_usepetstore_petprofile" + "target": "frontend_application_lib_store_usepetstore_petprofile", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102176,9 +102354,9 @@ "source_location": "L50", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_usepetstore", - "target": "frontend_application_lib_store_usepetstore_petstore" + "target": "frontend_application_lib_store_usepetstore_petstore", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102187,9 +102365,9 @@ "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" + "target": "frontend_application_lib_store_usepetstore_usepetstore", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102198,9 +102376,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_usepetstore", - "target": "frontend_application_lib_store_usepetstore_reminder" + "target": "frontend_application_lib_store_usepetstore_reminder", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102209,9 +102387,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_userstore", - "target": "frontend_application_lib_store_userstore_userrole" + "target": "frontend_application_lib_store_userstore_userrole", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102220,9 +102398,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_userstore", - "target": "frontend_application_lib_store_userstore_address" + "target": "frontend_application_lib_store_userstore_address", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102231,9 +102409,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_userstore", - "target": "frontend_application_lib_store_userstore_transaction" + "target": "frontend_application_lib_store_userstore_transaction", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102242,9 +102420,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_userstore", - "target": "frontend_application_lib_store_userstore_userprofile" + "target": "frontend_application_lib_store_userstore_userprofile", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102253,9 +102431,9 @@ "source_location": "L45", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_store_userstore", - "target": "frontend_application_lib_store_userstore_userstore" + "target": "frontend_application_lib_store_userstore_userstore", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102264,9 +102442,9 @@ "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" + "target": "frontend_application_lib_store_userstore_useuserstore", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102275,9 +102453,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_types", - "target": "frontend_application_lib_types_banner" + "target": "frontend_application_lib_types_banner", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102286,9 +102464,9 @@ "source_location": "L102", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_types", - "target": "frontend_application_lib_types_homeapiresponse" + "target": "frontend_application_lib_types_homeapiresponse", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102297,9 +102475,9 @@ "source_location": "L109", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_types", - "target": "frontend_application_lib_types_navigationtarget" + "target": "frontend_application_lib_types_navigationtarget", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102308,9 +102486,9 @@ "source_location": "L111", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_types", - "target": "frontend_application_lib_types_navigationhandler" + "target": "frontend_application_lib_types_navigationhandler", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102319,9 +102497,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_types", - "target": "frontend_application_lib_types_smartadvisorrule" + "target": "frontend_application_lib_types_smartadvisorrule", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102330,9 +102508,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_types", - "target": "frontend_application_lib_types_testimonial" + "target": "frontend_application_lib_types_testimonial", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102341,9 +102519,9 @@ "source_location": "L42", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_types", - "target": "frontend_application_lib_types_ingredient" + "target": "frontend_application_lib_types_ingredient", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102352,9 +102530,9 @@ "source_location": "L55", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_types", - "target": "frontend_application_lib_types_prescription" + "target": "frontend_application_lib_types_prescription", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102363,9 +102541,9 @@ "source_location": "L67", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_types", - "target": "frontend_application_lib_types_b2binquiry" + "target": "frontend_application_lib_types_b2binquiry", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102374,9 +102552,9 @@ "source_location": "L82", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_types", - "target": "frontend_application_lib_types_partneraccount" + "target": "frontend_application_lib_types_partneraccount", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102385,9 +102563,9 @@ "source_location": "L94", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_types", - "target": "frontend_application_lib_types_dosageconfig" + "target": "frontend_application_lib_types_dosageconfig", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102396,9 +102574,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_utils", - "target": "frontend_application_lib_utils_topersian" + "target": "frontend_application_lib_utils_topersian", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102407,9 +102585,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_utils", - "target": "frontend_application_lib_utils_cn" + "target": "frontend_application_lib_utils_cn", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102418,9 +102596,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_utils", - "target": "frontend_application_lib_utils_toenglishdigits" + "target": "frontend_application_lib_utils_toenglishdigits", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102429,9 +102607,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_next_config", - "target": "frontend_application_next_config_nextconfig" + "target": "frontend_application_next_config_nextconfig", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102440,9 +102618,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_next_config", - "target": "frontend_application_next_config_securityheaders" + "target": "frontend_application_next_config_securityheaders", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102451,9 +102629,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package", - "target": "frontend_application_package_dependencies" + "target": "frontend_application_package_dependencies", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102462,9 +102640,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package", - "target": "frontend_application_package_name" + "target": "frontend_application_package_name", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102473,9 +102651,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package", - "target": "frontend_application_package_devdependencies" + "target": "frontend_application_package_devdependencies", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102484,9 +102662,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package", - "target": "frontend_application_package_version" + "target": "frontend_application_package_version", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102495,9 +102673,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package", - "target": "frontend_application_package_private" + "target": "frontend_application_package_private", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102506,9 +102684,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package", - "target": "frontend_application_package_scripts" + "target": "frontend_application_package_scripts", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102517,9 +102695,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package_dependencies", - "target": "frontend_application_package_dependencies_axios" + "target": "frontend_application_package_dependencies_axios", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102528,9 +102706,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package_dependencies", - "target": "frontend_application_package_dependencies_lucide_react" + "target": "frontend_application_package_dependencies_lucide_react", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102539,9 +102717,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package_dependencies", - "target": "frontend_application_package_dependencies_motion" + "target": "frontend_application_package_dependencies_motion", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102550,9 +102728,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package_dependencies", - "target": "frontend_application_package_dependencies_next" + "target": "frontend_application_package_dependencies_next", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102561,9 +102739,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package_dependencies", - "target": "frontend_application_package_dependencies_react" + "target": "frontend_application_package_dependencies_react", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102572,9 +102750,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package_dependencies", - "target": "frontend_application_package_dependencies_react_dom" + "target": "frontend_application_package_dependencies_react_dom", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102583,9 +102761,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package_dependencies", - "target": "frontend_application_package_dependencies_sonner" + "target": "frontend_application_package_dependencies_sonner", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102594,9 +102772,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package_dependencies", - "target": "frontend_application_package_dependencies_zustand" + "target": "frontend_application_package_dependencies_zustand", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102605,9 +102783,9 @@ "source_location": "L22", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package_devdependencies", - "target": "frontend_application_package_devdependencies_tailwindcss_postcss" + "target": "frontend_application_package_devdependencies_tailwindcss_postcss", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102616,9 +102794,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package_devdependencies", - "target": "frontend_application_package_devdependencies_testing_library_jest_dom" + "target": "frontend_application_package_devdependencies_testing_library_jest_dom", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102627,9 +102805,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package_devdependencies", - "target": "frontend_application_package_devdependencies_testing_library_react" + "target": "frontend_application_package_devdependencies_testing_library_react", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102638,9 +102816,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package_devdependencies", - "target": "frontend_application_package_devdependencies_types_node" + "target": "frontend_application_package_devdependencies_types_node", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102649,9 +102827,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package_devdependencies", - "target": "frontend_application_package_devdependencies_types_react" + "target": "frontend_application_package_devdependencies_types_react", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102660,9 +102838,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package_devdependencies", - "target": "frontend_application_package_devdependencies_types_react_dom" + "target": "frontend_application_package_devdependencies_types_react_dom", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102671,9 +102849,9 @@ "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" + "target": "frontend_application_package_devdependencies_vitejs_plugin_react", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102682,9 +102860,9 @@ "source_location": "L29", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package_devdependencies", - "target": "frontend_application_package_devdependencies_eslint" + "target": "frontend_application_package_devdependencies_eslint", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102693,9 +102871,9 @@ "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" + "target": "frontend_application_package_devdependencies_eslint_config_next", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102704,9 +102882,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package_devdependencies", - "target": "frontend_application_package_devdependencies_jsdom" + "target": "frontend_application_package_devdependencies_jsdom", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102715,9 +102893,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package_devdependencies", - "target": "frontend_application_package_devdependencies_tailwindcss" + "target": "frontend_application_package_devdependencies_tailwindcss", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102726,9 +102904,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package_devdependencies", - "target": "frontend_application_package_devdependencies_typescript" + "target": "frontend_application_package_devdependencies_typescript", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102737,9 +102915,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package_devdependencies", - "target": "frontend_application_package_devdependencies_vitest" + "target": "frontend_application_package_devdependencies_vitest", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102748,9 +102926,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package_scripts", - "target": "frontend_application_package_scripts_dev" + "target": "frontend_application_package_scripts_dev", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102759,9 +102937,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package_scripts", - "target": "frontend_application_package_scripts_build" + "target": "frontend_application_package_scripts_build", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102770,9 +102948,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package_scripts", - "target": "frontend_application_package_scripts_start" + "target": "frontend_application_package_scripts_start", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102781,9 +102959,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_package_scripts", - "target": "frontend_application_package_scripts_lint" + "target": "frontend_application_package_scripts_lint", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102792,9 +102970,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_postcss_config", - "target": "frontend_application_postcss_config_config" + "target": "frontend_application_postcss_config_config", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102803,9 +102981,9 @@ "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" + "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102814,9 +102992,9 @@ "source_location": "L119", "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_arch_linux" + "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_arch_linux", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102825,9 +103003,9 @@ "source_location": "L103", "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_install" + "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_install", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102836,9 +103014,9 @@ "source_location": "L127", "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_contributors" + "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_contributors", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102847,9 +103025,9 @@ "source_location": "L131", "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_license" + "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_license", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102858,9 +103036,9 @@ "source_location": "L14", "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_known_problems_for_variable_version" + "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_known_problems_for_variable_version", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102869,9 +103047,9 @@ "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" + "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_to_do_variable", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102880,9 +103058,9 @@ "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" + "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", @@ -102891,9 +103069,9 @@ "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" + "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", @@ -102902,9 +103080,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_readme", - "target": "frontend_application_readme_learn_more" + "target": "frontend_application_readme_learn_more", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102913,9 +103091,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_readme", - "target": "frontend_application_readme_getting_started" + "target": "frontend_application_readme_getting_started", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102924,9 +103102,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_readme", - "target": "frontend_application_readme_deploy_on_vercel" + "target": "frontend_application_readme_deploy_on_vercel", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102935,9 +103113,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_tsconfig", - "target": "frontend_application_tsconfig_compileroptions" + "target": "frontend_application_tsconfig_compileroptions", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102946,9 +103124,9 @@ "source_location": "L25", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_tsconfig", - "target": "frontend_application_tsconfig_include" + "target": "frontend_application_tsconfig_include", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102957,9 +103135,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_tsconfig", - "target": "frontend_application_tsconfig_exclude" + "target": "frontend_application_tsconfig_exclude", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102968,9 +103146,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_module" + "target": "frontend_application_tsconfig_compileroptions_module", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102979,9 +103157,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_moduleresolution" + "target": "frontend_application_tsconfig_compileroptions_moduleresolution", + "confidence_score": 1.0 }, { "relation": "contains", @@ -102990,9 +103168,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_resolvejsonmodule" + "target": "frontend_application_tsconfig_compileroptions_resolvejsonmodule", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103001,9 +103179,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_isolatedmodules" + "target": "frontend_application_tsconfig_compileroptions_isolatedmodules", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103012,9 +103190,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_jsx" + "target": "frontend_application_tsconfig_compileroptions_jsx", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103023,9 +103201,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_incremental" + "target": "frontend_application_tsconfig_compileroptions_incremental", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103034,9 +103212,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_plugins" + "target": "frontend_application_tsconfig_compileroptions_plugins", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103045,9 +103223,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_paths" + "target": "frontend_application_tsconfig_compileroptions_paths", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103056,9 +103234,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_target" + "target": "frontend_application_tsconfig_compileroptions_target", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103067,9 +103245,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_lib" + "target": "frontend_application_tsconfig_compileroptions_lib", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103078,9 +103256,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_allowjs" + "target": "frontend_application_tsconfig_compileroptions_allowjs", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103089,9 +103267,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_skiplibcheck" + "target": "frontend_application_tsconfig_compileroptions_skiplibcheck", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103100,9 +103278,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_strict" + "target": "frontend_application_tsconfig_compileroptions_strict", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103111,9 +103289,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_noemit" + "target": "frontend_application_tsconfig_compileroptions_noemit", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103122,9 +103300,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_esmoduleinterop" + "target": "frontend_application_tsconfig_compileroptions_esmoduleinterop", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103133,9 +103311,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_vitest_setup", - "target": "frontend_application_vitest_setup_mockintersectionobserver" + "target": "frontend_application_vitest_setup_mockintersectionobserver", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103144,9 +103322,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "gitea_scripts_with_vpn", - "target": "gitea_scripts_with_vpn_sh__entry" + "target": "gitea_scripts_with_vpn_sh__entry", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103155,9 +103333,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "package", - "target": "package_devdependencies" + "target": "package_devdependencies", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103166,9 +103344,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "package", - "target": "package_name" + "target": "package_name", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103177,9 +103355,9 @@ "source_location": "L3", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "package", - "target": "package_version" + "target": "package_version", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103188,9 +103366,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "package", - "target": "package_private" + "target": "package_private", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103199,9 +103377,9 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "package", - "target": "package_scripts" + "target": "package_scripts", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103210,9 +103388,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "package_devdependencies", - "target": "package_devdependencies_concurrently" + "target": "package_devdependencies_concurrently", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103221,9 +103399,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "package_scripts", - "target": "package_scripts_dev" + "target": "package_scripts_dev", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103232,9 +103410,9 @@ "source_location": "L11", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "package_scripts", - "target": "package_scripts_build_backend" + "target": "package_scripts_build_backend", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103243,9 +103421,9 @@ "source_location": "L12", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "package_scripts", - "target": "package_scripts_build_frontend" + "target": "package_scripts_build_frontend", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103254,9 +103432,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "package_scripts", - "target": "package_scripts_build_admin" + "target": "package_scripts_build_admin", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103265,9 +103443,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "package_scripts", - "target": "package_scripts_build" + "target": "package_scripts_build", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103276,9 +103454,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "package_scripts", - "target": "package_scripts_start" + "target": "package_scripts_start", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103287,9 +103465,9 @@ "source_location": "L6", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "package_scripts", - "target": "package_scripts_install_all" + "target": "package_scripts_install_all", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103298,9 +103476,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "package_scripts", - "target": "package_scripts_dev_backend" + "target": "package_scripts_dev_backend", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103309,9 +103487,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "package_scripts", - "target": "package_scripts_dev_frontend" + "target": "package_scripts_dev_frontend", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103320,9 +103498,9 @@ "source_location": "L9", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "package_scripts", - "target": "package_scripts_dev_admin" + "target": "package_scripts_dev_admin", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103331,9 +103509,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "scripts_backup_db", - "target": "scripts_backup_db_sh__entry" + "target": "scripts_backup_db_sh__entry", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103342,9 +103520,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "scripts_deploy", - "target": "scripts_deploy_sh__entry" + "target": "scripts_deploy_sh__entry", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103353,9 +103531,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "scripts_open_browsers", - "target": "scripts_open_browsers_exec" + "target": "scripts_open_browsers_exec", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103364,9 +103542,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "scripts_open_browsers", - "target": "scripts_open_browsers_openurl" + "target": "scripts_open_browsers_openurl", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103375,9 +103553,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "scripts_open_browsers", - "target": "scripts_open_browsers_http" + "target": "scripts_open_browsers_http", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103386,9 +103564,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "scripts_open_browsers", - "target": "scripts_open_browsers_checkandopen" + "target": "scripts_open_browsers_checkandopen", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103397,9 +103575,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "scripts_open_browsers", - "target": "scripts_open_browsers_urls" + "target": "scripts_open_browsers_urls", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103408,9 +103586,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "scripts_start_dev", - "target": "scripts_start_dev_spawn" + "target": "scripts_start_dev_spawn", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103419,9 +103597,9 @@ "source_location": "L2", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "scripts_start_dev", - "target": "scripts_start_dev_http" + "target": "scripts_start_dev_http", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103430,9 +103608,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "scripts_start_dev", - "target": "scripts_start_dev_backend" + "target": "scripts_start_dev_backend", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103441,9 +103619,9 @@ "source_location": "L7", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "scripts_start_dev", - "target": "scripts_start_dev_waitforbackend" + "target": "scripts_start_dev_waitforbackend", + "confidence_score": 1.0 }, { "relation": "contains", @@ -103452,9 +103630,9 @@ "source_location": "L1", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "start", - "target": "start_sh__entry" + "target": "start_sh__entry", + "confidence_score": 1.0 }, { "relation": "defines", @@ -103463,9 +103641,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "gitea_scripts_with_vpn", - "target": "gitea_scripts_with_vpn_log" + "target": "gitea_scripts_with_vpn_log", + "confidence_score": 1.0 }, { "relation": "defines", @@ -103474,9 +103652,9 @@ "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" + "target": "gitea_scripts_with_vpn_vpn_is_up", + "confidence_score": 1.0 }, { "relation": "defines", @@ -103485,9 +103663,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "gitea_scripts_with_vpn", - "target": "gitea_scripts_with_vpn_start_vpn" + "target": "gitea_scripts_with_vpn_start_vpn", + "confidence_score": 1.0 }, { "relation": "defines", @@ -103496,9 +103674,9 @@ "source_location": "L51", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "gitea_scripts_with_vpn", - "target": "gitea_scripts_with_vpn_stop_vpn" + "target": "gitea_scripts_with_vpn_stop_vpn", + "confidence_score": 1.0 }, { "relation": "defines", @@ -103507,9 +103685,9 @@ "source_location": "L65", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "gitea_scripts_with_vpn", - "target": "gitea_scripts_with_vpn_cleanup" + "target": "gitea_scripts_with_vpn_cleanup", + "confidence_score": 1.0 }, { "relation": "defines", @@ -103518,9 +103696,9 @@ "source_location": "L4", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "scripts_deploy", - "target": "scripts_deploy_docker_buildkit" + "target": "scripts_deploy_docker_buildkit", + "confidence_score": 1.0 }, { "relation": "defines", @@ -103529,315 +103707,315 @@ "source_location": "L5", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "scripts_deploy", - "target": "scripts_deploy_compose_docker_cli_build" + "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", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_b2bmanager" + "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", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_bannersmanager" + "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", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_blogs" + "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", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_categories" + "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", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_cms" + "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", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_contactsubmissions" + "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", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_coupons" + "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", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_dashboard" + "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", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_doctorsmanager" + "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", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_financialsettingspage" + "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", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_ingredientsmanager" + "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", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_media" + "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", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_orders" + "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", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_pets" + "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", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_prescriptionsmanager" + "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", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_products" + "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", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_reports" + "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", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_reviews" + "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", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_seosettingspage" + "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", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_settings" + "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", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_smartadvisormanager" + "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", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_smssettingspage" + "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", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_sslsettingspage" + "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", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_systemsettingspage" + "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", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_testimonialsmanager" + "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", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_tickets" + "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", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_transactions" + "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", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_uitexts" + "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", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_users" + "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", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_videos" + "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", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_wholesaleapplications" + "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", - "confidence_score": 1.0, "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_wiki" + "target": "frontend_admin_panel_src_pages_wiki", + "confidence_score": 1.0 }, { "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" + "target": "frontend_application_lib_services_api", + "confidence_score": 1.0 }, { "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" + "target": "frontend_application_lib_services_api", + "confidence_score": 1.0 }, { "relation": "method", @@ -103846,9 +104024,9 @@ "source_location": "L100", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_adjustwallet" + "target": "backend_src_admin_admin_controller_admincontroller_adjustwallet", + "confidence_score": 1.0 }, { "relation": "method", @@ -103857,9 +104035,9 @@ "source_location": "L124", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_getproducts" + "target": "backend_src_admin_admin_controller_admincontroller_getproducts", + "confidence_score": 1.0 }, { "relation": "method", @@ -103868,9 +104046,9 @@ "source_location": "L131", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_createproduct" + "target": "backend_src_admin_admin_controller_admincontroller_createproduct", + "confidence_score": 1.0 }, { "relation": "method", @@ -103879,9 +104057,9 @@ "source_location": "L138", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_updateproduct" + "target": "backend_src_admin_admin_controller_admincontroller_updateproduct", + "confidence_score": 1.0 }, { "relation": "method", @@ -103890,9 +104068,9 @@ "source_location": "L148", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_deleteproduct" + "target": "backend_src_admin_admin_controller_admincontroller_deleteproduct", + "confidence_score": 1.0 }, { "relation": "method", @@ -103901,9 +104079,9 @@ "source_location": "L158", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_getorders" + "target": "backend_src_admin_admin_controller_admincontroller_getorders", + "confidence_score": 1.0 }, { "relation": "method", @@ -103912,9 +104090,9 @@ "source_location": "L165", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_updateorderstatus" + "target": "backend_src_admin_admin_controller_admincontroller_updateorderstatus", + "confidence_score": 1.0 }, { "relation": "method", @@ -103923,9 +104101,9 @@ "source_location": "L183", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_getcoupons" + "target": "backend_src_admin_admin_controller_admincontroller_getcoupons", + "confidence_score": 1.0 }, { "relation": "method", @@ -103934,9 +104112,9 @@ "source_location": "L190", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_createcoupon" + "target": "backend_src_admin_admin_controller_admincontroller_createcoupon", + "confidence_score": 1.0 }, { "relation": "method", @@ -103945,9 +104123,9 @@ "source_location": "L197", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_updatecoupon" + "target": "backend_src_admin_admin_controller_admincontroller_updatecoupon", + "confidence_score": 1.0 }, { "relation": "method", @@ -103956,9 +104134,9 @@ "source_location": "L204", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_togglecoupon" + "target": "backend_src_admin_admin_controller_admincontroller_togglecoupon", + "confidence_score": 1.0 }, { "relation": "method", @@ -103967,9 +104145,9 @@ "source_location": "L214", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_deletecoupon" + "target": "backend_src_admin_admin_controller_admincontroller_deletecoupon", + "confidence_score": 1.0 }, { "relation": "method", @@ -103978,9 +104156,9 @@ "source_location": "L221", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_getdoctors" + "target": "backend_src_admin_admin_controller_admincontroller_getdoctors", + "confidence_score": 1.0 }, { "relation": "method", @@ -103989,9 +104167,9 @@ "source_location": "L228", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_createdoctor" + "target": "backend_src_admin_admin_controller_admincontroller_createdoctor", + "confidence_score": 1.0 }, { "relation": "method", @@ -104000,9 +104178,9 @@ "source_location": "L244", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_updatedoctor" + "target": "backend_src_admin_admin_controller_admincontroller_updatedoctor", + "confidence_score": 1.0 }, { "relation": "method", @@ -104011,9 +104189,9 @@ "source_location": "L261", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_deletedoctor" + "target": "backend_src_admin_admin_controller_admincontroller_deletedoctor", + "confidence_score": 1.0 }, { "relation": "method", @@ -104022,9 +104200,9 @@ "source_location": "L268", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_getsettings" + "target": "backend_src_admin_admin_controller_admincontroller_getsettings", + "confidence_score": 1.0 }, { "relation": "method", @@ -104033,9 +104211,9 @@ "source_location": "L275", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_updatesettings" + "target": "backend_src_admin_admin_controller_admincontroller_updatesettings", + "confidence_score": 1.0 }, { "relation": "method", @@ -104044,9 +104222,9 @@ "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" + "target": "backend_src_admin_admin_controller_admincontroller_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -104055,9 +104233,9 @@ "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" + "target": "backend_src_admin_admin_controller_admincontroller_getdashboardstats", + "confidence_score": 1.0 }, { "relation": "method", @@ -104066,9 +104244,9 @@ "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" + "target": "backend_src_admin_admin_controller_admincontroller_getusers", + "confidence_score": 1.0 }, { "relation": "method", @@ -104077,9 +104255,9 @@ "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" + "target": "backend_src_admin_admin_controller_admincontroller_createuser", + "confidence_score": 1.0 }, { "relation": "method", @@ -104088,9 +104266,9 @@ "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" + "target": "backend_src_admin_admin_controller_admincontroller_getuserdetails", + "confidence_score": 1.0 }, { "relation": "method", @@ -104099,9 +104277,9 @@ "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" + "target": "backend_src_admin_admin_controller_admincontroller_updateuser", + "confidence_score": 1.0 }, { "relation": "method", @@ -104110,9 +104288,9 @@ "source_location": "L83", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_deleteuser" + "target": "backend_src_admin_admin_controller_admincontroller_deleteuser", + "confidence_score": 1.0 }, { "relation": "method", @@ -104121,9 +104299,9 @@ "source_location": "L93", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_updateuserrole" + "target": "backend_src_admin_admin_controller_admincontroller_updateuserrole", + "confidence_score": 1.0 }, { "relation": "method", @@ -104132,9 +104310,9 @@ "source_location": "L100", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_getusers" + "target": "backend_src_admin_admin_service_adminservice_getusers", + "confidence_score": 1.0 }, { "relation": "method", @@ -104143,9 +104321,9 @@ "source_location": "L150", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_getuserdetails" + "target": "backend_src_admin_admin_service_adminservice_getuserdetails", + "confidence_score": 1.0 }, { "relation": "method", @@ -104154,9 +104332,9 @@ "source_location": "L164", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_createuser" + "target": "backend_src_admin_admin_service_adminservice_createuser", + "confidence_score": 1.0 }, { "relation": "method", @@ -104165,9 +104343,9 @@ "source_location": "L201", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_updateuser" + "target": "backend_src_admin_admin_service_adminservice_updateuser", + "confidence_score": 1.0 }, { "relation": "method", @@ -104176,9 +104354,9 @@ "source_location": "L250", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_updateuserrole" + "target": "backend_src_admin_admin_service_adminservice_updateuserrole", + "confidence_score": 1.0 }, { "relation": "method", @@ -104187,9 +104365,9 @@ "source_location": "L257", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_deleteuser" + "target": "backend_src_admin_admin_service_adminservice_deleteuser", + "confidence_score": 1.0 }, { "relation": "method", @@ -104198,9 +104376,9 @@ "source_location": "L280", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_getproducts" + "target": "backend_src_admin_admin_service_adminservice_getproducts", + "confidence_score": 1.0 }, { "relation": "method", @@ -104209,9 +104387,9 @@ "source_location": "L356", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_createproduct" + "target": "backend_src_admin_admin_service_adminservice_createproduct", + "confidence_score": 1.0 }, { "relation": "method", @@ -104220,9 +104398,9 @@ "source_location": "L415", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_updateproduct" + "target": "backend_src_admin_admin_service_adminservice_updateproduct", + "confidence_score": 1.0 }, { "relation": "method", @@ -104231,9 +104409,9 @@ "source_location": "L483", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_deleteproduct" + "target": "backend_src_admin_admin_service_adminservice_deleteproduct", + "confidence_score": 1.0 }, { "relation": "method", @@ -104242,9 +104420,9 @@ "source_location": "L489", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_getorders" + "target": "backend_src_admin_admin_service_adminservice_getorders", + "confidence_score": 1.0 }, { "relation": "method", @@ -104253,9 +104431,9 @@ "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_adminservice_constructor" + "target": "backend_src_admin_admin_service_adminservice_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -104264,9 +104442,9 @@ "source_location": "L542", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_updateorderstatus" + "target": "backend_src_admin_admin_service_adminservice_updateorderstatus", + "confidence_score": 1.0 }, { "relation": "method", @@ -104275,9 +104453,9 @@ "source_location": "L56", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_getdashboardstats" + "target": "backend_src_admin_admin_service_adminservice_getdashboardstats", + "confidence_score": 1.0 }, { "relation": "method", @@ -104286,9 +104464,9 @@ "source_location": "L561", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_getcoupons" + "target": "backend_src_admin_admin_service_adminservice_getcoupons", + "confidence_score": 1.0 }, { "relation": "method", @@ -104297,9 +104475,9 @@ "source_location": "L592", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_createcoupon" + "target": "backend_src_admin_admin_service_adminservice_createcoupon", + "confidence_score": 1.0 }, { "relation": "method", @@ -104308,9 +104486,9 @@ "source_location": "L619", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_updatecoupon" + "target": "backend_src_admin_admin_service_adminservice_updatecoupon", + "confidence_score": 1.0 }, { "relation": "method", @@ -104319,9 +104497,9 @@ "source_location": "L649", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_togglecoupon" + "target": "backend_src_admin_admin_service_adminservice_togglecoupon", + "confidence_score": 1.0 }, { "relation": "method", @@ -104330,9 +104508,9 @@ "source_location": "L656", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_deletecoupon" + "target": "backend_src_admin_admin_service_adminservice_deletecoupon", + "confidence_score": 1.0 }, { "relation": "method", @@ -104341,9 +104519,9 @@ "source_location": "L662", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_getsettings" + "target": "backend_src_admin_admin_service_adminservice_getsettings", + "confidence_score": 1.0 }, { "relation": "method", @@ -104352,9 +104530,9 @@ "source_location": "L670", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_updatesettings" + "target": "backend_src_admin_admin_service_adminservice_updatesettings", + "confidence_score": 1.0 }, { "relation": "method", @@ -104363,9 +104541,9 @@ "source_location": "L707", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_getpets" + "target": "backend_src_admin_admin_service_adminservice_getpets", + "confidence_score": 1.0 }, { "relation": "method", @@ -104374,9 +104552,9 @@ "source_location": "L757", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_getdoctors" + "target": "backend_src_admin_admin_service_adminservice_getdoctors", + "confidence_score": 1.0 }, { "relation": "method", @@ -104385,9 +104563,9 @@ "source_location": "L763", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_createdoctor" + "target": "backend_src_admin_admin_service_adminservice_createdoctor", + "confidence_score": 1.0 }, { "relation": "method", @@ -104396,9 +104574,9 @@ "source_location": "L773", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_updatedoctor" + "target": "backend_src_admin_admin_service_adminservice_updatedoctor", + "confidence_score": 1.0 }, { "relation": "method", @@ -104407,9 +104585,9 @@ "source_location": "L786", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_deletedoctor" + "target": "backend_src_admin_admin_service_adminservice_deletedoctor", + "confidence_score": 1.0 }, { "relation": "method", @@ -104418,9 +104596,9 @@ "source_location": "L790", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_adjustuserwallet" + "target": "backend_src_admin_admin_service_adminservice_adjustuserwallet", + "confidence_score": 1.0 }, { "relation": "method", @@ -104429,9 +104607,9 @@ "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" + "target": "backend_src_admin_blogs_controller_blogscontroller_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -104440,9 +104618,9 @@ "source_location": "L37", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller_blogscontroller", - "target": "backend_src_admin_blogs_controller_blogscontroller_getblogs" + "target": "backend_src_admin_blogs_controller_blogscontroller_getblogs", + "confidence_score": 1.0 }, { "relation": "method", @@ -104451,9 +104629,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller_blogscontroller", - "target": "backend_src_admin_blogs_controller_blogscontroller_createblog" + "target": "backend_src_admin_blogs_controller_blogscontroller_createblog", + "confidence_score": 1.0 }, { "relation": "method", @@ -104462,9 +104640,9 @@ "source_location": "L53", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller_blogscontroller", - "target": "backend_src_admin_blogs_controller_blogscontroller_updateblog" + "target": "backend_src_admin_blogs_controller_blogscontroller_updateblog", + "confidence_score": 1.0 }, { "relation": "method", @@ -104473,9 +104651,9 @@ "source_location": "L63", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_blogs_controller_blogscontroller", - "target": "backend_src_admin_blogs_controller_blogscontroller_deleteblog" + "target": "backend_src_admin_blogs_controller_blogscontroller_deleteblog", + "confidence_score": 1.0 }, { "relation": "method", @@ -104484,9 +104662,9 @@ "source_location": "L13", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_blogs_service_blogsservice", - "target": "backend_src_admin_blogs_service_blogsservice_constructor" + "target": "backend_src_admin_blogs_service_blogsservice_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -104495,9 +104673,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_blogs_service_blogsservice", - "target": "backend_src_admin_blogs_service_blogsservice_getblogs" + "target": "backend_src_admin_blogs_service_blogsservice_getblogs", + "confidence_score": 1.0 }, { "relation": "method", @@ -104506,9 +104684,9 @@ "source_location": "L46", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_blogs_service_blogsservice", - "target": "backend_src_admin_blogs_service_blogsservice_createblog" + "target": "backend_src_admin_blogs_service_blogsservice_createblog", + "confidence_score": 1.0 }, { "relation": "method", @@ -104517,9 +104695,9 @@ "source_location": "L55", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_blogs_service_blogsservice", - "target": "backend_src_admin_blogs_service_blogsservice_updateblog" + "target": "backend_src_admin_blogs_service_blogsservice_updateblog", + "confidence_score": 1.0 }, { "relation": "method", @@ -104528,9 +104706,9 @@ "source_location": "L61", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_blogs_service_blogsservice", - "target": "backend_src_admin_blogs_service_blogsservice_deleteblog" + "target": "backend_src_admin_blogs_service_blogsservice_deleteblog", + "confidence_score": 1.0 }, { "relation": "method", @@ -104539,9 +104717,9 @@ "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" + "target": "backend_src_admin_categories_controller_categoriescontroller_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -104550,9 +104728,9 @@ "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" + "target": "backend_src_admin_categories_controller_categoriescontroller_getcategories", + "confidence_score": 1.0 }, { "relation": "method", @@ -104561,9 +104739,9 @@ "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" + "target": "backend_src_admin_categories_controller_categoriescontroller_getallcategoriesraw", + "confidence_score": 1.0 }, { "relation": "method", @@ -104572,9 +104750,9 @@ "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" + "target": "backend_src_admin_categories_controller_categoriescontroller_createcategory", + "confidence_score": 1.0 }, { "relation": "method", @@ -104583,9 +104761,9 @@ "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" + "target": "backend_src_admin_categories_controller_categoriescontroller_updatecategory", + "confidence_score": 1.0 }, { "relation": "method", @@ -104594,9 +104772,9 @@ "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" + "target": "backend_src_admin_categories_controller_categoriescontroller_deletecategory", + "confidence_score": 1.0 }, { "relation": "method", @@ -104605,9 +104783,9 @@ "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" + "target": "backend_src_admin_categories_service_categoriesservice_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -104616,9 +104794,9 @@ "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" + "target": "backend_src_admin_categories_service_categoriesservice_getcategories", + "confidence_score": 1.0 }, { "relation": "method", @@ -104627,9 +104805,9 @@ "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" + "target": "backend_src_admin_categories_service_categoriesservice_getallcategoriesraw", + "confidence_score": 1.0 }, { "relation": "method", @@ -104638,9 +104816,9 @@ "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" + "target": "backend_src_admin_categories_service_categoriesservice_createcategory", + "confidence_score": 1.0 }, { "relation": "method", @@ -104649,9 +104827,9 @@ "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" + "target": "backend_src_admin_categories_service_categoriesservice_updatecategory", + "confidence_score": 1.0 }, { "relation": "method", @@ -104660,9 +104838,9 @@ "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" + "target": "backend_src_admin_categories_service_categoriesservice_deletecategory", + "confidence_score": 1.0 }, { "relation": "method", @@ -104671,9 +104849,9 @@ "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" + "target": "backend_src_admin_media_controller_mediacontroller_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -104682,9 +104860,9 @@ "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" + "target": "backend_src_admin_media_controller_mediacontroller_getallmedia", + "confidence_score": 1.0 }, { "relation": "method", @@ -104693,9 +104871,9 @@ "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" + "target": "backend_src_admin_media_controller_mediacontroller_uploadfile", + "confidence_score": 1.0 }, { "relation": "method", @@ -104704,9 +104882,9 @@ "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" + "target": "backend_src_admin_media_controller_mediacontroller_deletemanymedia", + "confidence_score": 1.0 }, { "relation": "method", @@ -104715,9 +104893,9 @@ "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" + "target": "backend_src_admin_media_controller_mediacontroller_deletemedia", + "confidence_score": 1.0 }, { "relation": "method", @@ -104726,9 +104904,9 @@ "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" + "target": "backend_src_admin_media_controller_mediacontroller_updatemedia", + "confidence_score": 1.0 }, { "relation": "method", @@ -104737,9 +104915,9 @@ "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" + "target": "backend_src_admin_media_service_mediaservice_getallmedia", + "confidence_score": 1.0 }, { "relation": "method", @@ -104748,9 +104926,9 @@ "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" + "target": "backend_src_admin_media_service_mediaservice_uploadfile", + "confidence_score": 1.0 }, { "relation": "method", @@ -104759,9 +104937,9 @@ "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" + "target": "backend_src_admin_media_service_mediaservice_deletemedia", + "confidence_score": 1.0 }, { "relation": "method", @@ -104770,9 +104948,9 @@ "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" + "target": "backend_src_admin_media_service_mediaservice_deletemanymedia", + "confidence_score": 1.0 }, { "relation": "method", @@ -104781,9 +104959,9 @@ "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" + "target": "backend_src_admin_media_service_mediaservice_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -104792,9 +104970,9 @@ "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" + "target": "backend_src_admin_media_service_mediaservice_updatemedia", + "confidence_score": 1.0 }, { "relation": "method", @@ -104803,9 +104981,9 @@ "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" + "target": "backend_src_admin_pets_controller_petscontroller_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -104814,9 +104992,9 @@ "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" + "target": "backend_src_admin_pets_controller_petscontroller_getpets", + "confidence_score": 1.0 }, { "relation": "method", @@ -104825,9 +105003,9 @@ "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" + "target": "backend_src_admin_pets_controller_petscontroller_deletepet", + "confidence_score": 1.0 }, { "relation": "method", @@ -104836,9 +105014,9 @@ "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" + "target": "backend_src_admin_pets_service_petsservice_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -104847,9 +105025,9 @@ "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" + "target": "backend_src_admin_pets_service_petsservice_getpets", + "confidence_score": 1.0 }, { "relation": "method", @@ -104858,9 +105036,9 @@ "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" + "target": "backend_src_admin_pets_service_petsservice_deletepet", + "confidence_score": 1.0 }, { "relation": "method", @@ -104869,9 +105047,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_reports_controller_reportscontroller", - "target": "backend_src_admin_reports_controller_reportscontroller_constructor" + "target": "backend_src_admin_reports_controller_reportscontroller_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -104880,9 +105058,9 @@ "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_getreports" + "target": "backend_src_admin_reports_controller_reportscontroller_getreports", + "confidence_score": 1.0 }, { "relation": "method", @@ -104891,9 +105069,9 @@ "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" + "target": "backend_src_admin_reports_service_reportsservice_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -104902,9 +105080,9 @@ "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" + "target": "backend_src_admin_reports_service_reportsservice_getdashboardreports", + "confidence_score": 1.0 }, { "relation": "method", @@ -104913,9 +105091,9 @@ "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" + "target": "backend_src_admin_ssl_controller_sslcontroller_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -104924,9 +105102,9 @@ "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" + "target": "backend_src_admin_ssl_controller_sslcontroller_getstatus", + "confidence_score": 1.0 }, { "relation": "method", @@ -104935,9 +105113,9 @@ "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" + "target": "backend_src_admin_ssl_controller_sslcontroller_updatebytext", + "confidence_score": 1.0 }, { "relation": "method", @@ -104946,9 +105124,9 @@ "source_location": "L46", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller_sslcontroller", - "target": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles" + "target": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles", + "confidence_score": 1.0 }, { "relation": "method", @@ -104957,9 +105135,9 @@ "source_location": "L94", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_ssl_controller_sslcontroller", - "target": "backend_src_admin_ssl_controller_sslcontroller_testdomain" + "target": "backend_src_admin_ssl_controller_sslcontroller_testdomain", + "confidence_score": 1.0 }, { "relation": "method", @@ -104968,9 +105146,9 @@ "source_location": "L106", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_ssl_service_sslservice", - "target": "backend_src_admin_ssl_service_sslservice_updatecertificates" + "target": "backend_src_admin_ssl_service_sslservice_updatecertificates", + "confidence_score": 1.0 }, { "relation": "method", @@ -104979,9 +105157,9 @@ "source_location": "L162", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_ssl_service_sslservice", - "target": "backend_src_admin_ssl_service_sslservice_testonlinedomainssl" + "target": "backend_src_admin_ssl_service_sslservice_testonlinedomainssl", + "confidence_score": 1.0 }, { "relation": "method", @@ -104990,9 +105168,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_ssl_service_sslservice", - "target": "backend_src_admin_ssl_service_sslservice_constructor" + "target": "backend_src_admin_ssl_service_sslservice_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -105001,9 +105179,9 @@ "source_location": "L36", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_ssl_service_sslservice", - "target": "backend_src_admin_ssl_service_sslservice_getcertpath" + "target": "backend_src_admin_ssl_service_sslservice_getcertpath", + "confidence_score": 1.0 }, { "relation": "method", @@ -105012,9 +105190,9 @@ "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_getkeypath" + "target": "backend_src_admin_ssl_service_sslservice_getkeypath", + "confidence_score": 1.0 }, { "relation": "method", @@ -105023,9 +105201,9 @@ "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_toshamsi" + "target": "backend_src_admin_ssl_service_sslservice_toshamsi", + "confidence_score": 1.0 }, { "relation": "method", @@ -105034,9 +105212,9 @@ "source_location": "L58", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_admin_ssl_service_sslservice", - "target": "backend_src_admin_ssl_service_sslservice_getstatus" + "target": "backend_src_admin_ssl_service_sslservice_getstatus", + "confidence_score": 1.0 }, { "relation": "method", @@ -105045,9 +105223,9 @@ "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" + "target": "backend_src_admin_wiki_controller_wikicontroller_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -105056,9 +105234,9 @@ "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" + "target": "backend_src_admin_wiki_controller_wikicontroller_getterms", + "confidence_score": 1.0 }, { "relation": "method", @@ -105067,9 +105245,9 @@ "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" + "target": "backend_src_admin_wiki_controller_wikicontroller_createterm", + "confidence_score": 1.0 }, { "relation": "method", @@ -105078,9 +105256,9 @@ "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" + "target": "backend_src_admin_wiki_controller_wikicontroller_updateterm", + "confidence_score": 1.0 }, { "relation": "method", @@ -105089,9 +105267,9 @@ "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" + "target": "backend_src_admin_wiki_controller_wikicontroller_deleteterm", + "confidence_score": 1.0 }, { "relation": "method", @@ -105100,9 +105278,9 @@ "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" + "target": "backend_src_admin_wiki_service_wikiservice_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -105111,9 +105289,9 @@ "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" + "target": "backend_src_admin_wiki_service_wikiservice_getterms", + "confidence_score": 1.0 }, { "relation": "method", @@ -105122,9 +105300,9 @@ "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" + "target": "backend_src_admin_wiki_service_wikiservice_createterm", + "confidence_score": 1.0 }, { "relation": "method", @@ -105133,9 +105311,9 @@ "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" + "target": "backend_src_admin_wiki_service_wikiservice_updateterm", + "confidence_score": 1.0 }, { "relation": "method", @@ -105144,9 +105322,9 @@ "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" + "target": "backend_src_admin_wiki_service_wikiservice_deleteterm", + "confidence_score": 1.0 }, { "relation": "method", @@ -105155,9 +105333,9 @@ "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" + "target": "backend_src_app_controller_appcontroller_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -105166,9 +105344,9 @@ "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" + "target": "backend_src_app_controller_appcontroller_gethello", + "confidence_score": 1.0 }, { "relation": "method", @@ -105177,9 +105355,9 @@ "source_location": "L84", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module_appmodule", - "target": "backend_src_app_module_appmodule_constructor" + "target": "backend_src_app_module_appmodule_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -105188,9 +105366,9 @@ "source_location": "L86", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_app_module_appmodule", - "target": "backend_src_app_module_appmodule_configure" + "target": "backend_src_app_module_appmodule_configure", + "confidence_score": 1.0 }, { "relation": "method", @@ -105199,9 +105377,9 @@ "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" + "target": "backend_src_app_service_appservice_gethello", + "confidence_score": 1.0 }, { "relation": "method", @@ -105210,9 +105388,9 @@ "source_location": "L107", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller", - "target": "backend_src_auth_auth_controller_authcontroller_logout" + "target": "backend_src_auth_auth_controller_authcontroller_logout", + "confidence_score": 1.0 }, { "relation": "method", @@ -105221,9 +105399,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller", - "target": "backend_src_auth_auth_controller_authcontroller_constructor" + "target": "backend_src_auth_auth_controller_authcontroller_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -105232,9 +105410,9 @@ "source_location": "L49", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller", - "target": "backend_src_auth_auth_controller_authcontroller_sendotp" + "target": "backend_src_auth_auth_controller_authcontroller_sendotp", + "confidence_score": 1.0 }, { "relation": "method", @@ -105243,9 +105421,9 @@ "source_location": "L60", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller", - "target": "backend_src_auth_auth_controller_authcontroller_verifyotp" + "target": "backend_src_auth_auth_controller_authcontroller_verifyotp", + "confidence_score": 1.0 }, { "relation": "method", @@ -105254,9 +105432,9 @@ "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_register" + "target": "backend_src_auth_auth_controller_authcontroller_register", + "confidence_score": 1.0 }, { "relation": "method", @@ -105265,9 +105443,9 @@ "source_location": "L80", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller", - "target": "backend_src_auth_auth_controller_authcontroller_login" + "target": "backend_src_auth_auth_controller_authcontroller_login", + "confidence_score": 1.0 }, { "relation": "method", @@ -105276,9 +105454,9 @@ "source_location": "L89", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller", - "target": "backend_src_auth_auth_controller_authcontroller_adminlogin" + "target": "backend_src_auth_auth_controller_authcontroller_adminlogin", + "confidence_score": 1.0 }, { "relation": "method", @@ -105287,9 +105465,9 @@ "source_location": "L99", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_controller_authcontroller", - "target": "backend_src_auth_auth_controller_authcontroller_refresh" + "target": "backend_src_auth_auth_controller_authcontroller_refresh", + "confidence_score": 1.0 }, { "relation": "method", @@ -105298,9 +105476,9 @@ "source_location": "L119", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_service_authservice", - "target": "backend_src_auth_auth_service_authservice_verifyotp" + "target": "backend_src_auth_auth_service_authservice_verifyotp", + "confidence_score": 1.0 }, { "relation": "method", @@ -105309,9 +105487,9 @@ "source_location": "L160", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_service_authservice", - "target": "backend_src_auth_auth_service_authservice_register" + "target": "backend_src_auth_auth_service_authservice_register", + "confidence_score": 1.0 }, { "relation": "method", @@ -105320,9 +105498,9 @@ "source_location": "L213", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_service_authservice", - "target": "backend_src_auth_auth_service_authservice_login" + "target": "backend_src_auth_auth_service_authservice_login", + "confidence_score": 1.0 }, { "relation": "method", @@ -105331,9 +105509,9 @@ "source_location": "L254", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_service_authservice", - "target": "backend_src_auth_auth_service_authservice_adminlogin" + "target": "backend_src_auth_auth_service_authservice_adminlogin", + "confidence_score": 1.0 }, { "relation": "method", @@ -105342,9 +105520,9 @@ "source_location": "L310", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_service_authservice", - "target": "backend_src_auth_auth_service_authservice_refresh" + "target": "backend_src_auth_auth_service_authservice_refresh", + "confidence_score": 1.0 }, { "relation": "method", @@ -105353,9 +105531,9 @@ "source_location": "L33", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_service_authservice", - "target": "backend_src_auth_auth_service_authservice_constructor" + "target": "backend_src_auth_auth_service_authservice_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -105364,9 +105542,9 @@ "source_location": "L40", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_auth_auth_service_authservice", - "target": "backend_src_auth_auth_service_authservice_sendotp" + "target": "backend_src_auth_auth_service_authservice_sendotp", + "confidence_score": 1.0 }, { "relation": "method", @@ -105375,9 +105553,9 @@ "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" + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard_handlerequest", + "confidence_score": 1.0 }, { "relation": "method", @@ -105386,9 +105564,9 @@ "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" + "target": "backend_src_auth_jwt_strategy_jwtstrategy_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -105397,9 +105575,9 @@ "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" + "target": "backend_src_auth_jwt_strategy_jwtstrategy_validate", + "confidence_score": 1.0 }, { "relation": "method", @@ -105408,9 +105586,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller", - "target": "backend_src_b2b_b2b_controller_b2bcontroller_constructor" + "target": "backend_src_b2b_b2b_controller_b2bcontroller_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -105419,9 +105597,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller", - "target": "backend_src_b2b_b2b_controller_b2bcontroller_createinquiry" + "target": "backend_src_b2b_b2b_controller_b2bcontroller_createinquiry", + "confidence_score": 1.0 }, { "relation": "method", @@ -105430,9 +105608,9 @@ "source_location": "L44", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller", - "target": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries" + "target": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries", + "confidence_score": 1.0 }, { "relation": "method", @@ -105441,9 +105619,9 @@ "source_location": "L53", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller", - "target": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus" + "target": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", + "confidence_score": 1.0 }, { "relation": "method", @@ -105452,9 +105630,9 @@ "source_location": "L64", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller", - "target": "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile" + "target": "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile", + "confidence_score": 1.0 }, { "relation": "method", @@ -105463,9 +105641,9 @@ "source_location": "L73", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller", - "target": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder" + "target": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", + "confidence_score": 1.0 }, { "relation": "method", @@ -105474,9 +105652,9 @@ "source_location": "L86", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_b2b_b2b_controller_b2bcontroller", - "target": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts" + "target": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts", + "confidence_score": 1.0 }, { "relation": "method", @@ -105485,9 +105663,9 @@ "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" + "target": "backend_src_b2b_b2b_service_b2bservice_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -105496,9 +105674,9 @@ "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" + "target": "backend_src_b2b_b2b_service_b2bservice_createinquiry", + "confidence_score": 1.0 }, { "relation": "method", @@ -105507,9 +105685,9 @@ "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" + "target": "backend_src_b2b_b2b_service_b2bservice_findallinquiries", + "confidence_score": 1.0 }, { "relation": "method", @@ -105518,9 +105696,9 @@ "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" + "target": "backend_src_b2b_b2b_service_b2bservice_updateinquirystatus", + "confidence_score": 1.0 }, { "relation": "method", @@ -105529,9 +105707,9 @@ "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" + "target": "backend_src_b2b_b2b_service_b2bservice_getpartnerprofile", + "confidence_score": 1.0 }, { "relation": "method", @@ -105540,9 +105718,9 @@ "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" + "target": "backend_src_b2b_b2b_service_b2bservice_createwholesaleorder", + "confidence_score": 1.0 }, { "relation": "method", @@ -105551,9 +105729,9 @@ "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" + "target": "backend_src_b2b_b2b_service_b2bservice_getallpartneraccounts", + "confidence_score": 1.0 }, { "relation": "method", @@ -105562,9 +105740,9 @@ "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" + "target": "backend_src_banners_banners_controller_bannerscontroller_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -105573,9 +105751,9 @@ "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" + "target": "backend_src_banners_banners_controller_bannerscontroller_findall", + "confidence_score": 1.0 }, { "relation": "method", @@ -105584,9 +105762,9 @@ "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" + "target": "backend_src_banners_banners_controller_bannerscontroller_create", + "confidence_score": 1.0 }, { "relation": "method", @@ -105595,9 +105773,9 @@ "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" + "target": "backend_src_banners_banners_controller_bannerscontroller_reorder", + "confidence_score": 1.0 }, { "relation": "method", @@ -105606,9 +105784,9 @@ "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" + "target": "backend_src_banners_banners_controller_bannerscontroller_update", + "confidence_score": 1.0 }, { "relation": "method", @@ -105617,9 +105795,9 @@ "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" + "target": "backend_src_banners_banners_controller_bannerscontroller_remove", + "confidence_score": 1.0 }, { "relation": "method", @@ -105628,9 +105806,9 @@ "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" + "target": "backend_src_banners_banners_service_bannersservice_create", + "confidence_score": 1.0 }, { "relation": "method", @@ -105639,9 +105817,9 @@ "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" + "target": "backend_src_banners_banners_service_bannersservice_update", + "confidence_score": 1.0 }, { "relation": "method", @@ -105650,9 +105828,9 @@ "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" + "target": "backend_src_banners_banners_service_bannersservice_remove", + "confidence_score": 1.0 }, { "relation": "method", @@ -105661,9 +105839,9 @@ "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" + "target": "backend_src_banners_banners_service_bannersservice_reorder", + "confidence_score": 1.0 }, { "relation": "method", @@ -105672,9 +105850,9 @@ "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" + "target": "backend_src_banners_banners_service_bannersservice_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -105683,9 +105861,9 @@ "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" + "target": "backend_src_banners_banners_service_bannersservice_findall", + "confidence_score": 1.0 }, { "relation": "method", @@ -105694,9 +105872,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_blogs_blogs_controller_blogscontroller", - "target": "backend_src_blogs_blogs_controller_blogscontroller_constructor" + "target": "backend_src_blogs_blogs_controller_blogscontroller_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -105705,9 +105883,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_blogs_blogs_controller_blogscontroller", - "target": "backend_src_blogs_blogs_controller_blogscontroller_findall" + "target": "backend_src_blogs_blogs_controller_blogscontroller_findall", + "confidence_score": 1.0 }, { "relation": "method", @@ -105716,9 +105894,9 @@ "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_findone" + "target": "backend_src_blogs_blogs_controller_blogscontroller_findone", + "confidence_score": 1.0 }, { "relation": "method", @@ -105727,9 +105905,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_blogs_blogs_service_blogsservice", - "target": "backend_src_blogs_blogs_service_blogsservice_findall" + "target": "backend_src_blogs_blogs_service_blogsservice_findall", + "confidence_score": 1.0 }, { "relation": "method", @@ -105738,9 +105916,9 @@ "source_location": "L55", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_blogs_blogs_service_blogsservice", - "target": "backend_src_blogs_blogs_service_blogsservice_findonebyslug" + "target": "backend_src_blogs_blogs_service_blogsservice_findonebyslug", + "confidence_score": 1.0 }, { "relation": "method", @@ -105749,9 +105927,9 @@ "source_location": "L8", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_blogs_blogs_service_blogsservice", - "target": "backend_src_blogs_blogs_service_blogsservice_constructor" + "target": "backend_src_blogs_blogs_service_blogsservice_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -105760,9 +105938,9 @@ "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" + "target": "backend_src_cms_cms_controller_cmscontroller_updatesmartadvisorrule", + "confidence_score": 1.0 }, { "relation": "method", @@ -105771,9 +105949,9 @@ "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" + "target": "backend_src_cms_cms_controller_cmscontroller_deletesmartadvisorrule", + "confidence_score": 1.0 }, { "relation": "method", @@ -105782,9 +105960,9 @@ "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" + "target": "backend_src_cms_cms_controller_cmscontroller_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -105793,9 +105971,9 @@ "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" + "target": "backend_src_cms_cms_controller_cmscontroller_getherobanners", + "confidence_score": 1.0 }, { "relation": "method", @@ -105804,9 +105982,9 @@ "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" + "target": "backend_src_cms_cms_controller_cmscontroller_createherobanner", + "confidence_score": 1.0 }, { "relation": "method", @@ -105815,9 +105993,9 @@ "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" + "target": "backend_src_cms_cms_controller_cmscontroller_updateherobanner", + "confidence_score": 1.0 }, { "relation": "method", @@ -105826,9 +106004,9 @@ "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" + "target": "backend_src_cms_cms_controller_cmscontroller_deleteherobanner", + "confidence_score": 1.0 }, { "relation": "method", @@ -105837,9 +106015,9 @@ "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" + "target": "backend_src_cms_cms_controller_cmscontroller_getvettestimonials", + "confidence_score": 1.0 }, { "relation": "method", @@ -105848,9 +106026,9 @@ "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" + "target": "backend_src_cms_cms_controller_cmscontroller_createvettestimonial", + "confidence_score": 1.0 }, { "relation": "method", @@ -105859,9 +106037,9 @@ "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" + "target": "backend_src_cms_cms_controller_cmscontroller_updatevettestimonial", + "confidence_score": 1.0 }, { "relation": "method", @@ -105870,9 +106048,9 @@ "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" + "target": "backend_src_cms_cms_controller_cmscontroller_deletevettestimonial", + "confidence_score": 1.0 }, { "relation": "method", @@ -105881,9 +106059,9 @@ "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" + "target": "backend_src_cms_cms_controller_cmscontroller_getsmartadvisorrules", + "confidence_score": 1.0 }, { "relation": "method", @@ -105892,9 +106070,9 @@ "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" + "target": "backend_src_cms_cms_controller_cmscontroller_createsmartadvisorrule", + "confidence_score": 1.0 }, { "relation": "method", @@ -105903,9 +106081,9 @@ "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" + "target": "backend_src_cms_cms_service_cmsservice_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -105914,9 +106092,9 @@ "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" + "target": "backend_src_cms_cms_service_cmsservice_getherobanners", + "confidence_score": 1.0 }, { "relation": "method", @@ -105925,9 +106103,9 @@ "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" + "target": "backend_src_cms_cms_service_cmsservice_createherobanner", + "confidence_score": 1.0 }, { "relation": "method", @@ -105936,9 +106114,9 @@ "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" + "target": "backend_src_cms_cms_service_cmsservice_updateherobanner", + "confidence_score": 1.0 }, { "relation": "method", @@ -105947,9 +106125,9 @@ "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" + "target": "backend_src_cms_cms_service_cmsservice_deleteherobanner", + "confidence_score": 1.0 }, { "relation": "method", @@ -105958,9 +106136,9 @@ "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" + "target": "backend_src_cms_cms_service_cmsservice_getvettestimonials", + "confidence_score": 1.0 }, { "relation": "method", @@ -105969,9 +106147,9 @@ "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" + "target": "backend_src_cms_cms_service_cmsservice_createvettestimonial", + "confidence_score": 1.0 }, { "relation": "method", @@ -105980,9 +106158,9 @@ "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" + "target": "backend_src_cms_cms_service_cmsservice_updatevettestimonial", + "confidence_score": 1.0 }, { "relation": "method", @@ -105991,9 +106169,9 @@ "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" + "target": "backend_src_cms_cms_service_cmsservice_deletevettestimonial", + "confidence_score": 1.0 }, { "relation": "method", @@ -106002,9 +106180,9 @@ "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" + "target": "backend_src_cms_cms_service_cmsservice_getsmartadvisorrules", + "confidence_score": 1.0 }, { "relation": "method", @@ -106013,9 +106191,9 @@ "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" + "target": "backend_src_cms_cms_service_cmsservice_createsmartadvisorrule", + "confidence_score": 1.0 }, { "relation": "method", @@ -106024,9 +106202,9 @@ "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" + "target": "backend_src_cms_cms_service_cmsservice_updatesmartadvisorrule", + "confidence_score": 1.0 }, { "relation": "method", @@ -106035,9 +106213,9 @@ "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" + "target": "backend_src_cms_cms_service_cmsservice_deletesmartadvisorrule", + "confidence_score": 1.0 }, { "relation": "method", @@ -106046,9 +106224,9 @@ "source_location": "L114", "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" + "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_deriveerrorcode", + "confidence_score": 1.0 }, { "relation": "method", @@ -106057,9 +106235,9 @@ "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" + "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_catch", + "confidence_score": 1.0 }, { "relation": "method", @@ -106068,9 +106246,9 @@ "source_location": "L91", "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" + "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_translategenericmessage", + "confidence_score": 1.0 }, { "relation": "method", @@ -106079,9 +106257,9 @@ "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" + "target": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter_catch", + "confidence_score": 1.0 }, { "relation": "method", @@ -106090,9 +106268,9 @@ "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" + "target": "backend_src_common_guards_roles_guard_rolesguard_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -106101,9 +106279,9 @@ "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" + "target": "backend_src_common_guards_roles_guard_rolesguard_canactivate", + "confidence_score": 1.0 }, { "relation": "method", @@ -106112,9 +106290,9 @@ "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" + "target": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_intercept", + "confidence_score": 1.0 }, { "relation": "method", @@ -106123,9 +106301,9 @@ "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" + "target": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_transform", + "confidence_score": 1.0 }, { "relation": "method", @@ -106134,9 +106312,9 @@ "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" + "target": "backend_src_common_metrics_controller_metricscontroller_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -106145,9 +106323,9 @@ "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" + "target": "backend_src_common_metrics_controller_metricscontroller_incrementrequestcount", + "confidence_score": 1.0 }, { "relation": "method", @@ -106156,9 +106334,20 @@ "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" + "target": "backend_src_common_metrics_controller_metricscontroller_getmetrics", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L1011", + "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", @@ -106167,9 +106356,9 @@ "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" + "target": "backend_src_common_services_sms_service_smsservice_postasmx", + "confidence_score": 1.0 }, { "relation": "method", @@ -106178,9 +106367,9 @@ "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" + "target": "backend_src_common_services_sms_service_smsservice_recordlog", + "confidence_score": 1.0 }, { "relation": "method", @@ -106189,9 +106378,9 @@ "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" + "target": "backend_src_common_services_sms_service_smsservice_getsmslogs", + "confidence_score": 1.0 }, { "relation": "method", @@ -106200,9 +106389,9 @@ "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" + "target": "backend_src_common_services_sms_service_smsservice_deletesmslog", + "confidence_score": 1.0 }, { "relation": "method", @@ -106211,9 +106400,9 @@ "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" + "target": "backend_src_common_services_sms_service_smsservice_clearallsmslogs", + "confidence_score": 1.0 }, { "relation": "method", @@ -106222,9 +106411,9 @@ "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" + "target": "backend_src_common_services_sms_service_smsservice_parsepatternsxml", + "confidence_score": 1.0 }, { "relation": "method", @@ -106233,31 +106422,31 @@ "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_getpatterns" + "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": "L407", + "source_location": "L366", "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" + "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": "L486", + "source_location": "L473", "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" + "target": "backend_src_common_services_sms_service_smsservice_addpattern", + "confidence_score": 1.0 }, { "relation": "method", @@ -106266,31 +106455,20 @@ "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" + "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": "L541", + "source_location": "L552", "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": "L569", - "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" + "target": "backend_src_common_services_sms_service_smsservice_editpattern", + "confidence_score": 1.0 }, { "relation": "method", @@ -106299,97 +106477,108 @@ "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" + "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": "L609", + "source_location": "L607", "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" + "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": "L737", + "source_location": "L635", "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" + "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": "L862", + "source_location": "L675", "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" + "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": "L875", + "source_location": "L803", "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" + "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": "L894", + "source_location": "L928", "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" + "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": "L911", + "source_location": "L941", "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" + "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": "L927", + "source_location": "L960", "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" + "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": "L945", + "source_location": "L977", "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" + "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": "L993", + "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", @@ -106398,9 +106587,9 @@ "source_location": "L18", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_contact_contact_controller_contactcontroller", - "target": "backend_src_contact_contact_controller_contactcontroller_constructor" + "target": "backend_src_contact_contact_controller_contactcontroller_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -106409,9 +106598,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_contact_contact_controller_contactcontroller", - "target": "backend_src_contact_contact_controller_contactcontroller_submitcontact" + "target": "backend_src_contact_contact_controller_contactcontroller_submitcontact", + "confidence_score": 1.0 }, { "relation": "method", @@ -106420,9 +106609,9 @@ "source_location": "L35", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_contact_contact_controller_contactcontroller", - "target": "backend_src_contact_contact_controller_contactcontroller_getcontactinfo" + "target": "backend_src_contact_contact_controller_contactcontroller_getcontactinfo", + "confidence_score": 1.0 }, { "relation": "method", @@ -106431,9 +106620,9 @@ "source_location": "L42", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_contact_contact_controller_contactcontroller", - "target": "backend_src_contact_contact_controller_contactcontroller_getallsubmissions" + "target": "backend_src_contact_contact_controller_contactcontroller_getallsubmissions", + "confidence_score": 1.0 }, { "relation": "method", @@ -106442,9 +106631,9 @@ "source_location": "L57", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_contact_contact_controller_contactcontroller", - "target": "backend_src_contact_contact_controller_contactcontroller_updatesubmissionstatus" + "target": "backend_src_contact_contact_controller_contactcontroller_updatesubmissionstatus", + "confidence_score": 1.0 }, { "relation": "method", @@ -106453,9 +106642,9 @@ "source_location": "L71", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_contact_contact_controller_contactcontroller", - "target": "backend_src_contact_contact_controller_contactcontroller_updatecontactinfo" + "target": "backend_src_contact_contact_controller_contactcontroller_updatecontactinfo", + "confidence_score": 1.0 }, { "relation": "method", @@ -106464,9 +106653,9 @@ "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" + "target": "backend_src_contact_contact_service_contactservice_getallsubmissions", + "confidence_score": 1.0 }, { "relation": "method", @@ -106475,9 +106664,9 @@ "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" + "target": "backend_src_contact_contact_service_contactservice_updatesubmissionstatus", + "confidence_score": 1.0 }, { "relation": "method", @@ -106486,9 +106675,9 @@ "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" + "target": "backend_src_contact_contact_service_contactservice_updatecontactinfoitems", + "confidence_score": 1.0 }, { "relation": "method", @@ -106497,9 +106686,9 @@ "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" + "target": "backend_src_contact_contact_service_contactservice_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -106508,9 +106697,9 @@ "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" + "target": "backend_src_contact_contact_service_contactservice_submitcontactform", + "confidence_score": 1.0 }, { "relation": "method", @@ -106519,9 +106708,9 @@ "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" + "target": "backend_src_contact_contact_service_contactservice_getcontactinfo", + "confidence_score": 1.0 }, { "relation": "method", @@ -106530,9 +106719,9 @@ "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_doctorscontroller_constructor" + "target": "backend_src_doctors_doctors_controller_doctorscontroller_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -106541,9 +106730,9 @@ "source_location": "L24", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_doctors_doctors_controller_doctorscontroller", - "target": "backend_src_doctors_doctors_controller_doctorscontroller_findall" + "target": "backend_src_doctors_doctors_controller_doctorscontroller_findall", + "confidence_score": 1.0 }, { "relation": "method", @@ -106552,9 +106741,9 @@ "source_location": "L30", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_doctors_doctors_controller_doctorscontroller", - "target": "backend_src_doctors_doctors_controller_doctorscontroller_findone" + "target": "backend_src_doctors_doctors_controller_doctorscontroller_findone", + "confidence_score": 1.0 }, { "relation": "method", @@ -106563,9 +106752,9 @@ "source_location": "L38", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_doctors_doctors_controller_doctorscontroller", - "target": "backend_src_doctors_doctors_controller_doctorscontroller_create" + "target": "backend_src_doctors_doctors_controller_doctorscontroller_create", + "confidence_score": 1.0 }, { "relation": "method", @@ -106574,9 +106763,9 @@ "source_location": "L46", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_doctors_doctors_controller_doctorscontroller", - "target": "backend_src_doctors_doctors_controller_doctorscontroller_update" + "target": "backend_src_doctors_doctors_controller_doctorscontroller_update", + "confidence_score": 1.0 }, { "relation": "method", @@ -106585,9 +106774,9 @@ "source_location": "L57", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_doctors_doctors_controller_doctorscontroller", - "target": "backend_src_doctors_doctors_controller_doctorscontroller_remove" + "target": "backend_src_doctors_doctors_controller_doctorscontroller_remove", + "confidence_score": 1.0 }, { "relation": "method", @@ -106596,9 +106785,9 @@ "source_location": "L14", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_doctors_doctors_service_doctorsservice", - "target": "backend_src_doctors_doctors_service_doctorsservice_constructor" + "target": "backend_src_doctors_doctors_service_doctorsservice_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -106607,9 +106796,9 @@ "source_location": "L16", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_doctors_doctors_service_doctorsservice", - "target": "backend_src_doctors_doctors_service_doctorsservice_findall" + "target": "backend_src_doctors_doctors_service_doctorsservice_findall", + "confidence_score": 1.0 }, { "relation": "method", @@ -106618,9 +106807,9 @@ "source_location": "L63", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_doctors_doctors_service_doctorsservice", - "target": "backend_src_doctors_doctors_service_doctorsservice_findone" + "target": "backend_src_doctors_doctors_service_doctorsservice_findone", + "confidence_score": 1.0 }, { "relation": "method", @@ -106629,9 +106818,9 @@ "source_location": "L80", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_doctors_doctors_service_doctorsservice", - "target": "backend_src_doctors_doctors_service_doctorsservice_create" + "target": "backend_src_doctors_doctors_service_doctorsservice_create", + "confidence_score": 1.0 }, { "relation": "method", @@ -106640,9 +106829,9 @@ "source_location": "L86", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_doctors_doctors_service_doctorsservice", - "target": "backend_src_doctors_doctors_service_doctorsservice_update" + "target": "backend_src_doctors_doctors_service_doctorsservice_update", + "confidence_score": 1.0 }, { "relation": "method", @@ -106651,9 +106840,9 @@ "source_location": "L95", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_doctors_doctors_service_doctorsservice", - "target": "backend_src_doctors_doctors_service_doctorsservice_remove" + "target": "backend_src_doctors_doctors_service_doctorsservice_remove", + "confidence_score": 1.0 }, { "relation": "method", @@ -106662,9 +106851,9 @@ "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" + "target": "backend_src_home_home_controller_homecontroller_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -106673,9 +106862,9 @@ "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" + "target": "backend_src_home_home_controller_homecontroller_gethomedata", + "confidence_score": 1.0 }, { "relation": "method", @@ -106684,9 +106873,9 @@ "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" + "target": "backend_src_home_home_service_homeservice_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -106695,9 +106884,9 @@ "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" + "target": "backend_src_home_home_service_homeservice_gethomedata", + "confidence_score": 1.0 }, { "relation": "method", @@ -106706,9 +106895,9 @@ "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" + "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -106717,9 +106906,9 @@ "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" + "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findall", + "confidence_score": 1.0 }, { "relation": "method", @@ -106728,9 +106917,9 @@ "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" + "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findone", + "confidence_score": 1.0 }, { "relation": "method", @@ -106739,9 +106928,9 @@ "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" + "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create", + "confidence_score": 1.0 }, { "relation": "method", @@ -106750,9 +106939,9 @@ "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" + "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update", + "confidence_score": 1.0 }, { "relation": "method", @@ -106761,9 +106950,9 @@ "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" + "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove", + "confidence_score": 1.0 }, { "relation": "method", @@ -106772,9 +106961,9 @@ "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" + "target": "backend_src_ingredients_ingredients_service_ingredientsservice_findone", + "confidence_score": 1.0 }, { "relation": "method", @@ -106783,9 +106972,9 @@ "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" + "target": "backend_src_ingredients_ingredients_service_ingredientsservice_create", + "confidence_score": 1.0 }, { "relation": "method", @@ -106794,9 +106983,9 @@ "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" + "target": "backend_src_ingredients_ingredients_service_ingredientsservice_update", + "confidence_score": 1.0 }, { "relation": "method", @@ -106805,9 +106994,9 @@ "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" + "target": "backend_src_ingredients_ingredients_service_ingredientsservice_remove", + "confidence_score": 1.0 }, { "relation": "method", @@ -106816,9 +107005,9 @@ "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" + "target": "backend_src_ingredients_ingredients_service_ingredientsservice_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -106827,9 +107016,9 @@ "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" + "target": "backend_src_ingredients_ingredients_service_ingredientsservice_findall", + "confidence_score": 1.0 }, { "relation": "method", @@ -106838,9 +107027,9 @@ "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" + "target": "backend_src_orders_orders_controller_orderscontroller_validatecoupon", + "confidence_score": 1.0 }, { "relation": "method", @@ -106849,9 +107038,9 @@ "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" + "target": "backend_src_orders_orders_controller_orderscontroller_findall", + "confidence_score": 1.0 }, { "relation": "method", @@ -106860,9 +107049,9 @@ "source_location": "L194", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller", - "target": "backend_src_orders_orders_controller_orderscontroller_retrypayment" + "target": "backend_src_orders_orders_controller_orderscontroller_retrypayment", + "confidence_score": 1.0 }, { "relation": "method", @@ -106871,9 +107060,9 @@ "source_location": "L202", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_controller_orderscontroller", - "target": "backend_src_orders_orders_controller_orderscontroller_findone" + "target": "backend_src_orders_orders_controller_orderscontroller_findone", + "confidence_score": 1.0 }, { "relation": "method", @@ -106882,9 +107071,9 @@ "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" + "target": "backend_src_orders_orders_controller_orderscontroller_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -106893,9 +107082,9 @@ "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" + "target": "backend_src_orders_orders_controller_orderscontroller_create", + "confidence_score": 1.0 }, { "relation": "method", @@ -106904,9 +107093,9 @@ "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" + "target": "backend_src_orders_orders_service_ordersservice_create", + "confidence_score": 1.0 }, { "relation": "method", @@ -106915,9 +107104,9 @@ "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" + "target": "backend_src_orders_orders_service_ordersservice_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -106926,9 +107115,9 @@ "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" + "target": "backend_src_orders_orders_service_ordersservice_generatetrackingnumber", + "confidence_score": 1.0 }, { "relation": "method", @@ -106937,9 +107126,9 @@ "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" + "target": "backend_src_orders_orders_service_ordersservice_validatecoupon", + "confidence_score": 1.0 }, { "relation": "method", @@ -106948,9 +107137,9 @@ "source_location": "L317", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_service_ordersservice", - "target": "backend_src_orders_orders_service_ordersservice_updatestatus" + "target": "backend_src_orders_orders_service_ordersservice_updatestatus", + "confidence_score": 1.0 }, { "relation": "method", @@ -106959,9 +107148,9 @@ "source_location": "L348", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_service_ordersservice", - "target": "backend_src_orders_orders_service_ordersservice_findallbyuser" + "target": "backend_src_orders_orders_service_ordersservice_findallbyuser", + "confidence_score": 1.0 }, { "relation": "method", @@ -106970,9 +107159,9 @@ "source_location": "L381", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_service_ordersservice", - "target": "backend_src_orders_orders_service_ordersservice_findone" + "target": "backend_src_orders_orders_service_ordersservice_findone", + "confidence_score": 1.0 }, { "relation": "method", @@ -106981,9 +107170,9 @@ "source_location": "L395", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_service_ordersservice", - "target": "backend_src_orders_orders_service_ordersservice_checkandsendrefillreminders" + "target": "backend_src_orders_orders_service_ordersservice_checkandsendrefillreminders", + "confidence_score": 1.0 }, { "relation": "method", @@ -106992,9 +107181,9 @@ "source_location": "L425", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_service_ordersservice", - "target": "backend_src_orders_orders_service_ordersservice_releaseexpiredinventoryreservations" + "target": "backend_src_orders_orders_service_ordersservice_releaseexpiredinventoryreservations", + "confidence_score": 1.0 }, { "relation": "method", @@ -107003,9 +107192,9 @@ "source_location": "L446", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_orders_orders_service_ordersservice", - "target": "backend_src_orders_orders_service_ordersservice_retrypayment" + "target": "backend_src_orders_orders_service_ordersservice_retrypayment", + "confidence_score": 1.0 }, { "relation": "method", @@ -107014,9 +107203,9 @@ "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" + "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_getgatewayname", + "confidence_score": 1.0 }, { "relation": "method", @@ -107025,9 +107214,9 @@ "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" + "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_requestpayment", + "confidence_score": 1.0 }, { "relation": "method", @@ -107036,9 +107225,9 @@ "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" + "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_verifypayment", + "confidence_score": 1.0 }, { "relation": "method", @@ -107047,9 +107236,9 @@ "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" + "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_inquirypayment", + "confidence_score": 1.0 }, { "relation": "method", @@ -107058,9 +107247,9 @@ "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" + "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_getstarturl", + "confidence_score": 1.0 }, { "relation": "method", @@ -107069,9 +107258,9 @@ "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" + "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_checkhealth", + "confidence_score": 1.0 }, { "relation": "method", @@ -107080,9 +107269,9 @@ "source_location": "L144", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect" + "target": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", + "confidence_score": 1.0 }, { "relation": "method", @@ -107091,9 +107280,9 @@ "source_location": "L163", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback" + "target": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", + "confidence_score": 1.0 }, { "relation": "method", @@ -107102,9 +107291,9 @@ "source_location": "L193", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_gettransactionstatus" + "target": "backend_src_payment_payment_controller_paymentcontroller_gettransactionstatus", + "confidence_score": 1.0 }, { "relation": "method", @@ -107113,9 +107302,9 @@ "source_location": "L204", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions" + "target": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", + "confidence_score": 1.0 }, { "relation": "method", @@ -107124,9 +107313,9 @@ "source_location": "L213", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_getadminstats" + "target": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", + "confidence_score": 1.0 }, { "relation": "method", @@ -107135,9 +107324,9 @@ "source_location": "L222", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending" + "target": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", + "confidence_score": 1.0 }, { "relation": "method", @@ -107146,9 +107335,9 @@ "source_location": "L231", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry" + "target": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", + "confidence_score": 1.0 }, { "relation": "method", @@ -107157,9 +107346,9 @@ "source_location": "L240", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_manualverify" + "target": "backend_src_payment_payment_controller_paymentcontroller_manualverify", + "confidence_score": 1.0 }, { "relation": "method", @@ -107168,9 +107357,9 @@ "source_location": "L252", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_manualreject" + "target": "backend_src_payment_payment_controller_paymentcontroller_manualreject", + "confidence_score": 1.0 }, { "relation": "method", @@ -107179,9 +107368,9 @@ "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_gethealth" + "target": "backend_src_payment_payment_controller_paymentcontroller_gethealth", + "confidence_score": 1.0 }, { "relation": "method", @@ -107190,9 +107379,9 @@ "source_location": "L39", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_constructor" + "target": "backend_src_payment_payment_controller_paymentcontroller_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -107201,9 +107390,9 @@ "source_location": "L54", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment" + "target": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", + "confidence_score": 1.0 }, { "relation": "method", @@ -107212,9 +107401,9 @@ "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_initiatewallettopup" + "target": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", + "confidence_score": 1.0 }, { "relation": "method", @@ -107223,9 +107412,9 @@ "source_location": "L93", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback" + "target": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", + "confidence_score": 1.0 }, { "relation": "method", @@ -107234,9 +107423,9 @@ "source_location": "L138", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_initiatewallettopup" + "target": "backend_src_payment_payment_service_paymentservice_initiatewallettopup", + "confidence_score": 1.0 }, { "relation": "method", @@ -107245,9 +107434,9 @@ "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" + "target": "backend_src_payment_payment_service_paymentservice_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -107256,9 +107445,9 @@ "source_location": "L225", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_verifyandprocess" + "target": "backend_src_payment_payment_service_paymentservice_verifyandprocess", + "confidence_score": 1.0 }, { "relation": "method", @@ -107267,9 +107456,9 @@ "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" + "target": "backend_src_payment_payment_service_paymentservice_initiateorderpayment", + "confidence_score": 1.0 }, { "relation": "method", @@ -107278,9 +107467,9 @@ "source_location": "L539", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_reconcilependingtransactions" + "target": "backend_src_payment_payment_service_paymentservice_reconcilependingtransactions", + "confidence_score": 1.0 }, { "relation": "method", @@ -107289,9 +107478,9 @@ "source_location": "L621", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_gettransaction" + "target": "backend_src_payment_payment_service_paymentservice_gettransaction", + "confidence_score": 1.0 }, { "relation": "method", @@ -107300,9 +107489,9 @@ "source_location": "L669", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_getadmintransactions" + "target": "backend_src_payment_payment_service_paymentservice_getadmintransactions", + "confidence_score": 1.0 }, { "relation": "method", @@ -107311,9 +107500,9 @@ "source_location": "L780", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_getadmintransactionstats" + "target": "backend_src_payment_payment_service_paymentservice_getadmintransactionstats", + "confidence_score": 1.0 }, { "relation": "method", @@ -107322,9 +107511,9 @@ "source_location": "L827", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_adminliveinquiry" + "target": "backend_src_payment_payment_service_paymentservice_adminliveinquiry", + "confidence_score": 1.0 }, { "relation": "method", @@ -107333,9 +107522,9 @@ "source_location": "L875", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_adminmanualverify" + "target": "backend_src_payment_payment_service_paymentservice_adminmanualverify", + "confidence_score": 1.0 }, { "relation": "method", @@ -107344,9 +107533,9 @@ "source_location": "L933", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_adminmanualreject" + "target": "backend_src_payment_payment_service_paymentservice_adminmanualreject", + "confidence_score": 1.0 }, { "relation": "method", @@ -107355,9 +107544,9 @@ "source_location": "L956", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_checkgatewayhealth" + "target": "backend_src_payment_payment_service_paymentservice_checkgatewayhealth", + "confidence_score": 1.0 }, { "relation": "method", @@ -107366,9 +107555,9 @@ "source_location": "L109", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_getfrontendurl" + "target": "backend_src_payment_zibal_service_zibalservice_getfrontendurl", + "confidence_score": 1.0 }, { "relation": "method", @@ -107377,9 +107566,9 @@ "source_location": "L128", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_getbackendurl" + "target": "backend_src_payment_zibal_service_zibalservice_getbackendurl", + "confidence_score": 1.0 }, { "relation": "method", @@ -107388,9 +107577,9 @@ "source_location": "L154", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_requestpayment" + "target": "backend_src_payment_zibal_service_zibalservice_requestpayment", + "confidence_score": 1.0 }, { "relation": "method", @@ -107399,9 +107588,9 @@ "source_location": "L205", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_getstarturl" + "target": "backend_src_payment_zibal_service_zibalservice_getstarturl", + "confidence_score": 1.0 }, { "relation": "method", @@ -107410,9 +107599,9 @@ "source_location": "L212", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_verifypayment" + "target": "backend_src_payment_zibal_service_zibalservice_verifypayment", + "confidence_score": 1.0 }, { "relation": "method", @@ -107421,9 +107610,9 @@ "source_location": "L252", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_inquirypayment" + "target": "backend_src_payment_zibal_service_zibalservice_inquirypayment", + "confidence_score": 1.0 }, { "relation": "method", @@ -107432,9 +107621,9 @@ "source_location": "L292", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_checkhealth" + "target": "backend_src_payment_zibal_service_zibalservice_checkhealth", + "confidence_score": 1.0 }, { "relation": "method", @@ -107443,9 +107632,9 @@ "source_location": "L349", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_getresultmessage" + "target": "backend_src_payment_zibal_service_zibalservice_getresultmessage", + "confidence_score": 1.0 }, { "relation": "method", @@ -107454,9 +107643,9 @@ "source_location": "L372", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_getstatusmessage" + "target": "backend_src_payment_zibal_service_zibalservice_getstatusmessage", + "confidence_score": 1.0 }, { "relation": "method", @@ -107465,9 +107654,9 @@ "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" + "target": "backend_src_payment_zibal_service_zibalservice_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -107476,9 +107665,9 @@ "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" + "target": "backend_src_payment_zibal_service_zibalservice_getgatewayname", + "confidence_score": 1.0 }, { "relation": "method", @@ -107487,9 +107676,9 @@ "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" + "target": "backend_src_payment_zibal_service_zibalservice_callwithretry", + "confidence_score": 1.0 }, { "relation": "method", @@ -107498,9 +107687,9 @@ "source_location": "L91", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_getmerchant" + "target": "backend_src_payment_zibal_service_zibalservice_getmerchant", + "confidence_score": 1.0 }, { "relation": "method", @@ -107509,9 +107698,9 @@ "source_location": "L111", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_pets_pets_controller_petscontroller", - "target": "backend_src_pets_pets_controller_petscontroller_uploadpetimage" + "target": "backend_src_pets_pets_controller_petscontroller_uploadpetimage", + "confidence_score": 1.0 }, { "relation": "method", @@ -107520,9 +107709,9 @@ "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" + "target": "backend_src_pets_pets_controller_petscontroller_create", + "confidence_score": 1.0 }, { "relation": "method", @@ -107531,9 +107720,9 @@ "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" + "target": "backend_src_pets_pets_controller_petscontroller_findall", + "confidence_score": 1.0 }, { "relation": "method", @@ -107542,9 +107731,9 @@ "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" + "target": "backend_src_pets_pets_controller_petscontroller_findone", + "confidence_score": 1.0 }, { "relation": "method", @@ -107553,9 +107742,9 @@ "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" + "target": "backend_src_pets_pets_controller_petscontroller_update", + "confidence_score": 1.0 }, { "relation": "method", @@ -107564,9 +107753,9 @@ "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" + "target": "backend_src_pets_pets_controller_petscontroller_remove", + "confidence_score": 1.0 }, { "relation": "method", @@ -107575,9 +107764,9 @@ "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" + "target": "backend_src_pets_pets_controller_petscontroller_addreminder", + "confidence_score": 1.0 }, { "relation": "method", @@ -107586,9 +107775,9 @@ "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" + "target": "backend_src_pets_pets_controller_petscontroller_togglereminder", + "confidence_score": 1.0 }, { "relation": "method", @@ -107597,9 +107786,9 @@ "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" + "target": "backend_src_pets_pets_controller_petscontroller_addhealthlog", + "confidence_score": 1.0 }, { "relation": "method", @@ -107608,9 +107797,9 @@ "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" + "target": "backend_src_pets_pets_controller_petscontroller_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -107619,9 +107808,9 @@ "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" + "target": "backend_src_pets_pets_service_petsservice_findallbyuser", + "confidence_score": 1.0 }, { "relation": "method", @@ -107630,9 +107819,9 @@ "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" + "target": "backend_src_pets_pets_service_petsservice_findone", + "confidence_score": 1.0 }, { "relation": "method", @@ -107641,9 +107830,9 @@ "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" + "target": "backend_src_pets_pets_service_petsservice_update", + "confidence_score": 1.0 }, { "relation": "method", @@ -107652,9 +107841,9 @@ "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" + "target": "backend_src_pets_pets_service_petsservice_remove", + "confidence_score": 1.0 }, { "relation": "method", @@ -107663,9 +107852,9 @@ "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" + "target": "backend_src_pets_pets_service_petsservice_addreminder", + "confidence_score": 1.0 }, { "relation": "method", @@ -107674,9 +107863,9 @@ "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" + "target": "backend_src_pets_pets_service_petsservice_togglereminder", + "confidence_score": 1.0 }, { "relation": "method", @@ -107685,9 +107874,9 @@ "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" + "target": "backend_src_pets_pets_service_petsservice_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -107696,9 +107885,9 @@ "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" + "target": "backend_src_pets_pets_service_petsservice_create", + "confidence_score": 1.0 }, { "relation": "method", @@ -107707,9 +107896,9 @@ "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" + "target": "backend_src_pets_pets_service_petsservice_addhealthlog", + "confidence_score": 1.0 }, { "relation": "method", @@ -107718,9 +107907,9 @@ "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" + "target": "backend_src_pets_pets_service_petsservice_findalladmin", + "confidence_score": 1.0 }, { "relation": "method", @@ -107729,9 +107918,9 @@ "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" + "target": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -107740,9 +107929,9 @@ "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" + "target": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_create", + "confidence_score": 1.0 }, { "relation": "method", @@ -107751,9 +107940,9 @@ "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" + "target": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findall", + "confidence_score": 1.0 }, { "relation": "method", @@ -107762,9 +107951,9 @@ "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" + "target": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone", + "confidence_score": 1.0 }, { "relation": "method", @@ -107773,9 +107962,9 @@ "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" + "target": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review", + "confidence_score": 1.0 }, { "relation": "method", @@ -107784,9 +107973,9 @@ "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" + "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_findone", + "confidence_score": 1.0 }, { "relation": "method", @@ -107795,9 +107984,9 @@ "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" + "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_review", + "confidence_score": 1.0 }, { "relation": "method", @@ -107806,9 +107995,9 @@ "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" + "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -107817,9 +108006,9 @@ "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" + "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_create", + "confidence_score": 1.0 }, { "relation": "method", @@ -107828,9 +108017,9 @@ "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" + "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_findall", + "confidence_score": 1.0 }, { "relation": "method", @@ -107839,9 +108028,9 @@ "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" + "target": "backend_src_prisma_prisma_service_prismaservice_ensuretablesexist", + "confidence_score": 1.0 }, { "relation": "method", @@ -107850,9 +108039,9 @@ "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" + "target": "backend_src_prisma_prisma_service_prismaservice_onmoduleinit", + "confidence_score": 1.0 }, { "relation": "method", @@ -107861,9 +108050,9 @@ "source_location": "L91", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_prisma_prisma_service_prismaservice", - "target": "backend_src_prisma_prisma_service_prismaservice_onmoduledestroy" + "target": "backend_src_prisma_prisma_service_prismaservice_onmoduledestroy", + "confidence_score": 1.0 }, { "relation": "method", @@ -107872,9 +108061,9 @@ "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" + "target": "backend_src_products_products_controller_productscontroller_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -107883,9 +108072,9 @@ "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" + "target": "backend_src_products_products_controller_productscontroller_findall", + "confidence_score": 1.0 }, { "relation": "method", @@ -107894,9 +108083,9 @@ "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" + "target": "backend_src_products_products_controller_productscontroller_getactivefilters", + "confidence_score": 1.0 }, { "relation": "method", @@ -107905,9 +108094,9 @@ "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" + "target": "backend_src_products_products_controller_productscontroller_getnavigationfilters", + "confidence_score": 1.0 }, { "relation": "method", @@ -107916,9 +108105,9 @@ "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" + "target": "backend_src_products_products_controller_productscontroller_getdosageconfig", + "confidence_score": 1.0 }, { "relation": "method", @@ -107927,9 +108116,9 @@ "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" + "target": "backend_src_products_products_controller_productscontroller_updatedosageconfig", + "confidence_score": 1.0 }, { "relation": "method", @@ -107938,9 +108127,9 @@ "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" + "target": "backend_src_products_products_controller_productscontroller_findone", + "confidence_score": 1.0 }, { "relation": "method", @@ -107949,9 +108138,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_service_productsservice", - "target": "backend_src_products_products_service_productsservice_findall" + "target": "backend_src_products_products_service_productsservice_findall", + "confidence_score": 1.0 }, { "relation": "method", @@ -107960,9 +108149,9 @@ "source_location": "L128", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_service_productsservice", - "target": "backend_src_products_products_service_productsservice_findone" + "target": "backend_src_products_products_service_productsservice_findone", + "confidence_score": 1.0 }, { "relation": "method", @@ -107971,9 +108160,9 @@ "source_location": "L177", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_service_productsservice", - "target": "backend_src_products_products_service_productsservice_getactivefilters" + "target": "backend_src_products_products_service_productsservice_getactivefilters", + "confidence_score": 1.0 }, { "relation": "method", @@ -107982,9 +108171,9 @@ "source_location": "L212", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_service_productsservice", - "target": "backend_src_products_products_service_productsservice_getnavigationfilters" + "target": "backend_src_products_products_service_productsservice_getnavigationfilters", + "confidence_score": 1.0 }, { "relation": "method", @@ -107993,9 +108182,9 @@ "source_location": "L247", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_service_productsservice", - "target": "backend_src_products_products_service_productsservice_getdosageconfig" + "target": "backend_src_products_products_service_productsservice_getdosageconfig", + "confidence_score": 1.0 }, { "relation": "method", @@ -108004,9 +108193,9 @@ "source_location": "L258", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_products_products_service_productsservice", - "target": "backend_src_products_products_service_productsservice_updatedosageconfig" + "target": "backend_src_products_products_service_productsservice_updatedosageconfig", + "confidence_score": 1.0 }, { "relation": "method", @@ -108015,9 +108204,9 @@ "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_productsservice_constructor" + "target": "backend_src_products_products_service_productsservice_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -108026,9 +108215,9 @@ "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" + "target": "backend_src_redis_redis_service_redisservice_onmoduledestroy", + "confidence_score": 1.0 }, { "relation": "method", @@ -108037,9 +108226,9 @@ "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" + "target": "backend_src_redis_redis_service_redisservice_set", + "confidence_score": 1.0 }, { "relation": "method", @@ -108048,9 +108237,9 @@ "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" + "target": "backend_src_redis_redis_service_redisservice_get", + "confidence_score": 1.0 }, { "relation": "method", @@ -108059,9 +108248,9 @@ "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" + "target": "backend_src_redis_redis_service_redisservice_del", + "confidence_score": 1.0 }, { "relation": "method", @@ -108070,9 +108259,9 @@ "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" + "target": "backend_src_redis_redis_service_redisservice_incr", + "confidence_score": 1.0 }, { "relation": "method", @@ -108081,9 +108270,9 @@ "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" + "target": "backend_src_redis_redis_service_redisservice_ttl", + "confidence_score": 1.0 }, { "relation": "method", @@ -108092,9 +108281,9 @@ "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" + "target": "backend_src_redis_redis_service_redisservice_onmoduleinit", + "confidence_score": 1.0 }, { "relation": "method", @@ -108103,9 +108292,9 @@ "source_location": "L104", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller", - "target": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview" + "target": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", + "confidence_score": 1.0 }, { "relation": "method", @@ -108114,9 +108303,9 @@ "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_reviewscontroller_constructor" + "target": "backend_src_reviews_reviews_controller_reviewscontroller_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -108125,9 +108314,9 @@ "source_location": "L31", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller", - "target": "backend_src_reviews_reviews_controller_reviewscontroller_createreview" + "target": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", + "confidence_score": 1.0 }, { "relation": "method", @@ -108136,9 +108325,9 @@ "source_location": "L45", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller", - "target": "backend_src_reviews_reviews_controller_reviewscontroller_getproductreviews" + "target": "backend_src_reviews_reviews_controller_reviewscontroller_getproductreviews", + "confidence_score": 1.0 }, { "relation": "method", @@ -108147,9 +108336,9 @@ "source_location": "L65", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller", - "target": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews" + "target": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", + "confidence_score": 1.0 }, { "relation": "method", @@ -108158,9 +108347,9 @@ "source_location": "L89", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_controller_reviewscontroller", - "target": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus" + "target": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", + "confidence_score": 1.0 }, { "relation": "method", @@ -108169,9 +108358,9 @@ "source_location": "L10", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_service_reviewsservice", - "target": "backend_src_reviews_reviews_service_reviewsservice_constructor" + "target": "backend_src_reviews_reviews_service_reviewsservice_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -108180,9 +108369,9 @@ "source_location": "L121", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_service_reviewsservice", - "target": "backend_src_reviews_reviews_service_reviewsservice_getadminreviews" + "target": "backend_src_reviews_reviews_service_reviewsservice_getadminreviews", + "confidence_score": 1.0 }, { "relation": "method", @@ -108191,9 +108380,9 @@ "source_location": "L15", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_service_reviewsservice", - "target": "backend_src_reviews_reviews_service_reviewsservice_createreview" + "target": "backend_src_reviews_reviews_service_reviewsservice_createreview", + "confidence_score": 1.0 }, { "relation": "method", @@ -108202,9 +108391,9 @@ "source_location": "L185", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_service_reviewsservice", - "target": "backend_src_reviews_reviews_service_reviewsservice_updatereviewstatus" + "target": "backend_src_reviews_reviews_service_reviewsservice_updatereviewstatus", + "confidence_score": 1.0 }, { "relation": "method", @@ -108213,9 +108402,9 @@ "source_location": "L212", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_service_reviewsservice", - "target": "backend_src_reviews_reviews_service_reviewsservice_deletereview" + "target": "backend_src_reviews_reviews_service_reviewsservice_deletereview", + "confidence_score": 1.0 }, { "relation": "method", @@ -108224,9 +108413,9 @@ "source_location": "L69", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_reviews_reviews_service_reviewsservice", - "target": "backend_src_reviews_reviews_service_reviewsservice_getproductreviews" + "target": "backend_src_reviews_reviews_service_reviewsservice_getproductreviews", + "confidence_score": 1.0 }, { "relation": "method", @@ -108235,9 +108424,9 @@ "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" + "target": "backend_src_seo_seo_controller_seocontroller_getsitemap", + "confidence_score": 1.0 }, { "relation": "method", @@ -108246,9 +108435,9 @@ "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" + "target": "backend_src_seo_seo_controller_seocontroller_getproductschema", + "confidence_score": 1.0 }, { "relation": "method", @@ -108257,9 +108446,9 @@ "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" + "target": "backend_src_seo_seo_controller_seocontroller_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -108268,9 +108457,9 @@ "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" + "target": "backend_src_seo_seo_service_seoservice_getproductschema", + "confidence_score": 1.0 }, { "relation": "method", @@ -108279,9 +108468,9 @@ "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" + "target": "backend_src_seo_seo_service_seoservice_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -108290,9 +108479,9 @@ "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" + "target": "backend_src_seo_seo_service_seoservice_getsitemapurls", + "confidence_score": 1.0 }, { "relation": "method", @@ -108301,9 +108490,9 @@ "source_location": "L107", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm" + "target": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", + "confidence_score": 1.0 }, { "relation": "method", @@ -108312,9 +108501,9 @@ "source_location": "L119", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm" + "target": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", + "confidence_score": 1.0 }, { "relation": "method", @@ -108323,9 +108512,9 @@ "source_location": "L126", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_getseosettings" + "target": "backend_src_settings_settings_controller_settingscontroller_getseosettings", + "confidence_score": 1.0 }, { "relation": "method", @@ -108334,9 +108523,9 @@ "source_location": "L135", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_updateseosettings" + "target": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", + "confidence_score": 1.0 }, { "relation": "method", @@ -108345,9 +108534,9 @@ "source_location": "L145", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings" + "target": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", + "confidence_score": 1.0 }, { "relation": "method", @@ -108356,9 +108545,9 @@ "source_location": "L154", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings" + "target": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", + "confidence_score": 1.0 }, { "relation": "method", @@ -108367,9 +108556,9 @@ "source_location": "L164", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings" + "target": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", + "confidence_score": 1.0 }, { "relation": "method", @@ -108378,9 +108567,9 @@ "source_location": "L173", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings" + "target": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", + "confidence_score": 1.0 }, { "relation": "method", @@ -108389,9 +108578,9 @@ "source_location": "L183", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_getsmssettings" + "target": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", + "confidence_score": 1.0 }, { "relation": "method", @@ -108400,9 +108589,9 @@ "source_location": "L192", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings" + "target": "backend_src_settings_settings_controller_settingscontroller_getsmscredit", + "confidence_score": 1.0 }, { "relation": "method", @@ -108411,20 +108600,20 @@ "source_location": "L201", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_testsms" + "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": "L216", + "source_location": "L210", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_getpatterns" + "target": "backend_src_settings_settings_controller_settingscontroller_testsms", + "confidence_score": 1.0 }, { "relation": "method", @@ -108433,31 +108622,31 @@ "source_location": "L225", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_addpattern" + "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": "L240", + "source_location": "L234", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_editpattern" + "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": "L252", + "source_location": "L249", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_getsmslogs" + "target": "backend_src_settings_settings_controller_settingscontroller_editpattern", + "confidence_score": 1.0 }, { "relation": "method", @@ -108466,9 +108655,9 @@ "source_location": "L261", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_deletesmslog" + "target": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", + "confidence_score": 1.0 }, { "relation": "method", @@ -108477,9 +108666,20 @@ "source_location": "L270", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs" + "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": "L279", + "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", @@ -108488,9 +108688,9 @@ "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" + "target": "backend_src_settings_settings_controller_settingscontroller_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -108499,9 +108699,9 @@ "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" + "target": "backend_src_settings_settings_controller_settingscontroller_getuitexts", + "confidence_score": 1.0 }, { "relation": "method", @@ -108510,9 +108710,9 @@ "source_location": "L46", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_putuitext" + "target": "backend_src_settings_settings_controller_settingscontroller_putuitext", + "confidence_score": 1.0 }, { "relation": "method", @@ -108521,9 +108721,9 @@ "source_location": "L61", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_patchuitext" + "target": "backend_src_settings_settings_controller_settingscontroller_patchuitext", + "confidence_score": 1.0 }, { "relation": "method", @@ -108532,9 +108732,9 @@ "source_location": "L76", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts" + "target": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", + "confidence_score": 1.0 }, { "relation": "method", @@ -108543,9 +108743,9 @@ "source_location": "L82", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_getfinancial" + "target": "backend_src_settings_settings_controller_settingscontroller_getfinancial", + "confidence_score": 1.0 }, { "relation": "method", @@ -108554,9 +108754,9 @@ "source_location": "L92", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_updatefinancial" + "target": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", + "confidence_score": 1.0 }, { "relation": "method", @@ -108565,9 +108765,9 @@ "source_location": "L98", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_getscientificterms" + "target": "backend_src_settings_settings_controller_settingscontroller_getscientificterms", + "confidence_score": 1.0 }, { "relation": "method", @@ -108576,9 +108776,9 @@ "source_location": "L119", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_getuitexts" + "target": "backend_src_settings_settings_service_settingsservice_getuitexts", + "confidence_score": 1.0 }, { "relation": "method", @@ -108587,9 +108787,9 @@ "source_location": "L164", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_updateuitext" + "target": "backend_src_settings_settings_service_settingsservice_updateuitext", + "confidence_score": 1.0 }, { "relation": "method", @@ -108598,9 +108798,9 @@ "source_location": "L191", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_updatebulkuitexts" + "target": "backend_src_settings_settings_service_settingsservice_updatebulkuitexts", + "confidence_score": 1.0 }, { "relation": "method", @@ -108609,9 +108809,9 @@ "source_location": "L200", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_getfinancialsettings" + "target": "backend_src_settings_settings_service_settingsservice_getfinancialsettings", + "confidence_score": 1.0 }, { "relation": "method", @@ -108620,9 +108820,9 @@ "source_location": "L225", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_updatefinancialsettings" + "target": "backend_src_settings_settings_service_settingsservice_updatefinancialsettings", + "confidence_score": 1.0 }, { "relation": "method", @@ -108631,9 +108831,9 @@ "source_location": "L271", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_getscientificterms" + "target": "backend_src_settings_settings_service_settingsservice_getscientificterms", + "confidence_score": 1.0 }, { "relation": "method", @@ -108642,9 +108842,9 @@ "source_location": "L275", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_upsertscientificterm" + "target": "backend_src_settings_settings_service_settingsservice_upsertscientificterm", + "confidence_score": 1.0 }, { "relation": "method", @@ -108653,9 +108853,9 @@ "source_location": "L296", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_deletescientificterm" + "target": "backend_src_settings_settings_service_settingsservice_deletescientificterm", + "confidence_score": 1.0 }, { "relation": "method", @@ -108664,9 +108864,9 @@ "source_location": "L302", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_getcategorysetting" + "target": "backend_src_settings_settings_service_settingsservice_getcategorysetting", + "confidence_score": 1.0 }, { "relation": "method", @@ -108675,9 +108875,9 @@ "source_location": "L327", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_updatecategorysetting" + "target": "backend_src_settings_settings_service_settingsservice_updatecategorysetting", + "confidence_score": 1.0 }, { "relation": "method", @@ -108686,9 +108886,9 @@ "source_location": "L366", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_getsmssettings" + "target": "backend_src_settings_settings_service_settingsservice_getsmssettings", + "confidence_score": 1.0 }, { "relation": "method", @@ -108697,20 +108897,20 @@ "source_location": "L370", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_updatesmssettings" + "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": "L379", + "source_location": "L374", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_testsms" + "target": "backend_src_settings_settings_service_settingsservice_updatesmssettings", + "confidence_score": 1.0 }, { "relation": "method", @@ -108719,9 +108919,9 @@ "source_location": "L383", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_getpatterns" + "target": "backend_src_settings_settings_service_settingsservice_testsms", + "confidence_score": 1.0 }, { "relation": "method", @@ -108730,9 +108930,9 @@ "source_location": "L387", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_addpattern" + "target": "backend_src_settings_settings_service_settingsservice_getpatterns", + "confidence_score": 1.0 }, { "relation": "method", @@ -108741,9 +108941,9 @@ "source_location": "L391", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_editpattern" + "target": "backend_src_settings_settings_service_settingsservice_addpattern", + "confidence_score": 1.0 }, { "relation": "method", @@ -108752,9 +108952,9 @@ "source_location": "L395", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_getsmslogs" + "target": "backend_src_settings_settings_service_settingsservice_editpattern", + "confidence_score": 1.0 }, { "relation": "method", @@ -108763,9 +108963,9 @@ "source_location": "L399", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_deletesmslog" + "target": "backend_src_settings_settings_service_settingsservice_getsmslogs", + "confidence_score": 1.0 }, { "relation": "method", @@ -108774,9 +108974,20 @@ "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_clearallsmslogs" + "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": "L407", + "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", @@ -108785,9 +108996,9 @@ "source_location": "L89", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_constructor" + "target": "backend_src_settings_settings_service_settingsservice_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -108796,9 +109007,9 @@ "source_location": "L94", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_onmoduleinit" + "target": "backend_src_settings_settings_service_settingsservice_onmoduleinit", + "confidence_score": 1.0 }, { "relation": "method", @@ -108807,9 +109018,9 @@ "source_location": "L98", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_seeddefaultuitexts" + "target": "backend_src_settings_settings_service_settingsservice_seeddefaultuitexts", + "confidence_score": 1.0 }, { "relation": "method", @@ -108818,9 +109029,9 @@ "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" + "target": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -108829,9 +109040,9 @@ "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" + "target": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_findall", + "confidence_score": 1.0 }, { "relation": "method", @@ -108840,9 +109051,9 @@ "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" + "target": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create", + "confidence_score": 1.0 }, { "relation": "method", @@ -108851,9 +109062,9 @@ "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" + "target": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update", + "confidence_score": 1.0 }, { "relation": "method", @@ -108862,9 +109073,9 @@ "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" + "target": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove", + "confidence_score": 1.0 }, { "relation": "method", @@ -108873,9 +109084,9 @@ "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" + "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_create", + "confidence_score": 1.0 }, { "relation": "method", @@ -108884,9 +109095,9 @@ "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" + "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_update", + "confidence_score": 1.0 }, { "relation": "method", @@ -108895,9 +109106,9 @@ "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" + "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_remove", + "confidence_score": 1.0 }, { "relation": "method", @@ -108906,9 +109117,9 @@ "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" + "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -108917,9 +109128,9 @@ "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" + "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_findall", + "confidence_score": 1.0 }, { "relation": "method", @@ -108928,9 +109139,9 @@ "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" + "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -108939,9 +109150,9 @@ "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" + "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findall", + "confidence_score": 1.0 }, { "relation": "method", @@ -108950,9 +109161,9 @@ "source_location": "L34", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller", - "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create" + "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create", + "confidence_score": 1.0 }, { "relation": "method", @@ -108961,9 +109172,9 @@ "source_location": "L43", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller", - "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update" + "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", + "confidence_score": 1.0 }, { "relation": "method", @@ -108972,9 +109183,9 @@ "source_location": "L52", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller", - "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove" + "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove", + "confidence_score": 1.0 }, { "relation": "method", @@ -108983,9 +109194,9 @@ "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_create" + "target": "backend_src_testimonials_testimonials_service_testimonialsservice_create", + "confidence_score": 1.0 }, { "relation": "method", @@ -108994,9 +109205,9 @@ "source_location": "L21", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_service_testimonialsservice", - "target": "backend_src_testimonials_testimonials_service_testimonialsservice_update" + "target": "backend_src_testimonials_testimonials_service_testimonialsservice_update", + "confidence_score": 1.0 }, { "relation": "method", @@ -109005,9 +109216,9 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_testimonials_testimonials_service_testimonialsservice", - "target": "backend_src_testimonials_testimonials_service_testimonialsservice_remove" + "target": "backend_src_testimonials_testimonials_service_testimonialsservice_remove", + "confidence_score": 1.0 }, { "relation": "method", @@ -109016,9 +109227,9 @@ "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" + "target": "backend_src_testimonials_testimonials_service_testimonialsservice_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -109027,9 +109238,9 @@ "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" + "target": "backend_src_testimonials_testimonials_service_testimonialsservice_findall", + "confidence_score": 1.0 }, { "relation": "method", @@ -109038,9 +109249,9 @@ "source_location": "L28", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller", - "target": "backend_src_tickets_tickets_controller_ticketscontroller_constructor" + "target": "backend_src_tickets_tickets_controller_ticketscontroller_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -109049,9 +109260,9 @@ "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_createticket" + "target": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", + "confidence_score": 1.0 }, { "relation": "method", @@ -109060,9 +109271,9 @@ "source_location": "L45", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller", - "target": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets" + "target": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets", + "confidence_score": 1.0 }, { "relation": "method", @@ -109071,9 +109282,9 @@ "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_getticketdetails" + "target": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails", + "confidence_score": 1.0 }, { "relation": "method", @@ -109082,9 +109293,9 @@ "source_location": "L65", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller", - "target": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket" + "target": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", + "confidence_score": 1.0 }, { "relation": "method", @@ -109093,9 +109304,9 @@ "source_location": "L81", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller", - "target": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets" + "target": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", + "confidence_score": 1.0 }, { "relation": "method", @@ -109104,9 +109315,9 @@ "source_location": "L90", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_controller_ticketscontroller", - "target": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus" + "target": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", + "confidence_score": 1.0 }, { "relation": "method", @@ -109115,9 +109326,9 @@ "source_location": "L132", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service_ticketsservice", - "target": "backend_src_tickets_tickets_service_ticketsservice_replytoticket" + "target": "backend_src_tickets_tickets_service_ticketsservice_replytoticket", + "confidence_score": 1.0 }, { "relation": "method", @@ -109126,9 +109337,9 @@ "source_location": "L17", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service_ticketsservice", - "target": "backend_src_tickets_tickets_service_ticketsservice_constructor" + "target": "backend_src_tickets_tickets_service_ticketsservice_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -109137,9 +109348,9 @@ "source_location": "L189", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service_ticketsservice", - "target": "backend_src_tickets_tickets_service_ticketsservice_getadmintickets" + "target": "backend_src_tickets_tickets_service_ticketsservice_getadmintickets", + "confidence_score": 1.0 }, { "relation": "method", @@ -109148,9 +109359,9 @@ "source_location": "L19", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service_ticketsservice", - "target": "backend_src_tickets_tickets_service_ticketsservice_generateticketnumber" + "target": "backend_src_tickets_tickets_service_ticketsservice_generateticketnumber", + "confidence_score": 1.0 }, { "relation": "method", @@ -109159,9 +109370,9 @@ "source_location": "L261", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service_ticketsservice", - "target": "backend_src_tickets_tickets_service_ticketsservice_updateticketstatus" + "target": "backend_src_tickets_tickets_service_ticketsservice_updateticketstatus", + "confidence_score": 1.0 }, { "relation": "method", @@ -109170,9 +109381,9 @@ "source_location": "L27", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service_ticketsservice", - "target": "backend_src_tickets_tickets_service_ticketsservice_createticket" + "target": "backend_src_tickets_tickets_service_ticketsservice_createticket", + "confidence_score": 1.0 }, { "relation": "method", @@ -109181,9 +109392,9 @@ "source_location": "L73", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service_ticketsservice", - "target": "backend_src_tickets_tickets_service_ticketsservice_getusertickets" + "target": "backend_src_tickets_tickets_service_ticketsservice_getusertickets", + "confidence_score": 1.0 }, { "relation": "method", @@ -109192,9 +109403,9 @@ "source_location": "L94", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_tickets_tickets_service_ticketsservice", - "target": "backend_src_tickets_tickets_service_ticketsservice_getticketdetails" + "target": "backend_src_tickets_tickets_service_ticketsservice_getticketdetails", + "confidence_score": 1.0 }, { "relation": "method", @@ -109203,9 +109414,9 @@ "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" + "target": "backend_src_users_users_controller_userscontroller_updateprofile", + "confidence_score": 1.0 }, { "relation": "method", @@ -109214,9 +109425,9 @@ "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" + "target": "backend_src_users_users_controller_userscontroller_addaddress", + "confidence_score": 1.0 }, { "relation": "method", @@ -109225,9 +109436,9 @@ "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" + "target": "backend_src_users_users_controller_userscontroller_updateaddress", + "confidence_score": 1.0 }, { "relation": "method", @@ -109236,9 +109447,9 @@ "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" + "target": "backend_src_users_users_controller_userscontroller_deleteaddress", + "confidence_score": 1.0 }, { "relation": "method", @@ -109247,9 +109458,9 @@ "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" + "target": "backend_src_users_users_controller_userscontroller_setdefaultaddress", + "confidence_score": 1.0 }, { "relation": "method", @@ -109258,9 +109469,9 @@ "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" + "target": "backend_src_users_users_controller_userscontroller_topupwallet", + "confidence_score": 1.0 }, { "relation": "method", @@ -109269,9 +109480,9 @@ "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" + "target": "backend_src_users_users_controller_userscontroller_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -109280,9 +109491,9 @@ "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" + "target": "backend_src_users_users_controller_userscontroller_getprofile", + "confidence_score": 1.0 }, { "relation": "method", @@ -109291,9 +109502,9 @@ "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" + "target": "backend_src_users_users_service_usersservice_update", + "confidence_score": 1.0 }, { "relation": "method", @@ -109302,9 +109513,9 @@ "source_location": "L200", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_service_usersservice", - "target": "backend_src_users_users_service_usersservice_addaddress" + "target": "backend_src_users_users_service_usersservice_addaddress", + "confidence_score": 1.0 }, { "relation": "method", @@ -109313,9 +109524,9 @@ "source_location": "L222", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_service_usersservice", - "target": "backend_src_users_users_service_usersservice_updateaddress" + "target": "backend_src_users_users_service_usersservice_updateaddress", + "confidence_score": 1.0 }, { "relation": "method", @@ -109324,9 +109535,9 @@ "source_location": "L248", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_service_usersservice", - "target": "backend_src_users_users_service_usersservice_deleteaddress" + "target": "backend_src_users_users_service_usersservice_deleteaddress", + "confidence_score": 1.0 }, { "relation": "method", @@ -109335,9 +109546,9 @@ "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" + "target": "backend_src_users_users_service_usersservice_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -109346,9 +109557,9 @@ "source_location": "L254", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_service_usersservice", - "target": "backend_src_users_users_service_usersservice_setdefaultaddress" + "target": "backend_src_users_users_service_usersservice_setdefaultaddress", + "confidence_score": 1.0 }, { "relation": "method", @@ -109357,9 +109568,9 @@ "source_location": "L265", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_service_usersservice", - "target": "backend_src_users_users_service_usersservice_topupwallet" + "target": "backend_src_users_users_service_usersservice_topupwallet", + "confidence_score": 1.0 }, { "relation": "method", @@ -109368,9 +109579,9 @@ "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" + "target": "backend_src_users_users_service_usersservice_findbyid", + "confidence_score": 1.0 }, { "relation": "method", @@ -109379,9 +109590,9 @@ "source_location": "L289", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_src_users_users_service_usersservice", - "target": "backend_src_users_users_service_usersservice_findbyphone" + "target": "backend_src_users_users_service_usersservice_findbyphone", + "confidence_score": 1.0 }, { "relation": "method", @@ -109390,9 +109601,9 @@ "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" + "target": "backend_src_videos_videos_controller_videoscontroller_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -109401,9 +109612,9 @@ "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" + "target": "backend_src_videos_videos_controller_videoscontroller_findall", + "confidence_score": 1.0 }, { "relation": "method", @@ -109412,9 +109623,9 @@ "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" + "target": "backend_src_videos_videos_controller_videoscontroller_findone", + "confidence_score": 1.0 }, { "relation": "method", @@ -109423,9 +109634,9 @@ "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" + "target": "backend_src_videos_videos_controller_videoscontroller_create", + "confidence_score": 1.0 }, { "relation": "method", @@ -109434,9 +109645,9 @@ "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" + "target": "backend_src_videos_videos_controller_videoscontroller_update", + "confidence_score": 1.0 }, { "relation": "method", @@ -109445,9 +109656,9 @@ "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" + "target": "backend_src_videos_videos_controller_videoscontroller_remove", + "confidence_score": 1.0 }, { "relation": "method", @@ -109456,9 +109667,9 @@ "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" + "target": "backend_src_videos_videos_service_videosservice_remove", + "confidence_score": 1.0 }, { "relation": "method", @@ -109467,9 +109678,9 @@ "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" + "target": "backend_src_videos_videos_service_videosservice_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -109478,9 +109689,9 @@ "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" + "target": "backend_src_videos_videos_service_videosservice_findall", + "confidence_score": 1.0 }, { "relation": "method", @@ -109489,9 +109700,9 @@ "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" + "target": "backend_src_videos_videos_service_videosservice_findone", + "confidence_score": 1.0 }, { "relation": "method", @@ -109500,9 +109711,9 @@ "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" + "target": "backend_src_videos_videos_service_videosservice_create", + "confidence_score": 1.0 }, { "relation": "method", @@ -109511,9 +109722,9 @@ "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" + "target": "backend_src_videos_videos_service_videosservice_update", + "confidence_score": 1.0 }, { "relation": "method", @@ -109522,9 +109733,9 @@ "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" + "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -109533,9 +109744,9 @@ "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" + "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", + "confidence_score": 1.0 }, { "relation": "method", @@ -109544,9 +109755,9 @@ "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" + "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests", + "confidence_score": 1.0 }, { "relation": "method", @@ -109555,9 +109766,9 @@ "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" + "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest", + "confidence_score": 1.0 }, { "relation": "method", @@ -109566,9 +109777,9 @@ "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" + "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest", + "confidence_score": 1.0 }, { "relation": "method", @@ -109577,9 +109788,9 @@ "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" + "target": "backend_src_wholesale_wholesale_service_wholesaleservice_applyforwholesale", + "confidence_score": 1.0 }, { "relation": "method", @@ -109588,9 +109799,9 @@ "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" + "target": "backend_src_wholesale_wholesale_service_wholesaleservice_getwholesalerequests", + "confidence_score": 1.0 }, { "relation": "method", @@ -109599,9 +109810,9 @@ "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" + "target": "backend_src_wholesale_wholesale_service_wholesaleservice_approvewholesalerequest", + "confidence_score": 1.0 }, { "relation": "method", @@ -109610,9 +109821,9 @@ "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" + "target": "backend_src_wholesale_wholesale_service_wholesaleservice_rejectwholesalerequest", + "confidence_score": 1.0 }, { "relation": "method", @@ -109621,9 +109832,9 @@ "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" + "target": "backend_src_wholesale_wholesale_service_wholesaleservice_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -109632,9 +109843,9 @@ "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" + "target": "backend_src_wiki_wiki_controller_wikicontroller_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -109643,9 +109854,9 @@ "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" + "target": "backend_src_wiki_wiki_controller_wikicontroller_findall", + "confidence_score": 1.0 }, { "relation": "method", @@ -109654,9 +109865,9 @@ "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" + "target": "backend_src_wiki_wiki_controller_wikicontroller_findone", + "confidence_score": 1.0 }, { "relation": "method", @@ -109665,9 +109876,9 @@ "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" + "target": "backend_src_wiki_wiki_service_wikiservice_findall", + "confidence_score": 1.0 }, { "relation": "method", @@ -109676,9 +109887,9 @@ "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" + "target": "backend_src_wiki_wiki_service_wikiservice_findonebykey", + "confidence_score": 1.0 }, { "relation": "method", @@ -109687,9 +109898,9 @@ "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" + "target": "backend_src_wiki_wiki_service_wikiservice_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -109698,9 +109909,9 @@ "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" + "target": "frontend_application_components_errorboundary_errorboundary_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -109709,9 +109920,9 @@ "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" + "target": "frontend_application_components_errorboundary_errorboundary_getderivedstatefromerror", + "confidence_score": 1.0 }, { "relation": "method", @@ -109720,9 +109931,9 @@ "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" + "target": "frontend_application_components_errorboundary_errorboundary_componentdidcatch", + "confidence_score": 1.0 }, { "relation": "method", @@ -109731,9 +109942,9 @@ "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" + "target": "frontend_application_components_errorboundary_errorboundary_handleretry", + "confidence_score": 1.0 }, { "relation": "method", @@ -109742,9 +109953,9 @@ "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" + "target": "frontend_application_components_errorboundary_errorboundary_render", + "confidence_score": 1.0 }, { "relation": "method", @@ -109753,9 +109964,9 @@ "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" + "target": "frontend_application_lib_services_authservice_authservice_login", + "confidence_score": 1.0 }, { "relation": "method", @@ -109764,9 +109975,9 @@ "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" + "target": "frontend_application_lib_services_authservice_authservice_getprofile", + "confidence_score": 1.0 }, { "relation": "method", @@ -109775,9 +109986,9 @@ "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" + "target": "frontend_application_lib_services_authservice_authservice_updateprofile", + "confidence_score": 1.0 }, { "relation": "method", @@ -109786,9 +109997,9 @@ "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" + "target": "frontend_application_lib_services_authservice_authservice_logout", + "confidence_score": 1.0 }, { "relation": "method", @@ -109797,9 +110008,9 @@ "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" + "target": "frontend_application_lib_services_authservice_authservice_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -109808,9 +110019,9 @@ "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" + "target": "frontend_application_lib_services_authservice_authservice_getinstance", + "confidence_score": 1.0 }, { "relation": "method", @@ -109819,9 +110030,9 @@ "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" + "target": "frontend_application_lib_services_authservice_authservice_sendotp", + "confidence_score": 1.0 }, { "relation": "method", @@ -109830,9 +110041,9 @@ "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" + "target": "frontend_application_lib_services_authservice_authservice_verifyotp", + "confidence_score": 1.0 }, { "relation": "method", @@ -109841,9 +110052,9 @@ "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" + "target": "frontend_application_lib_services_authservice_authservice_register", + "confidence_score": 1.0 }, { "relation": "method", @@ -109852,9 +110063,9 @@ "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" + "target": "frontend_application_lib_services_orderservice_orderservice_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -109863,9 +110074,9 @@ "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" + "target": "frontend_application_lib_services_orderservice_orderservice_getinstance", + "confidence_score": 1.0 }, { "relation": "method", @@ -109874,9 +110085,9 @@ "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" + "target": "frontend_application_lib_services_orderservice_orderservice_createorder", + "confidence_score": 1.0 }, { "relation": "method", @@ -109885,9 +110096,9 @@ "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" + "target": "frontend_application_lib_services_orderservice_orderservice_getuserorders", + "confidence_score": 1.0 }, { "relation": "method", @@ -109896,9 +110107,9 @@ "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" + "target": "frontend_application_lib_services_orderservice_orderservice_getorderbyid", + "confidence_score": 1.0 }, { "relation": "method", @@ -109907,9 +110118,9 @@ "source_location": "L216", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice_productservice", - "target": "frontend_application_lib_services_productservice_productservice_getproducts" + "target": "frontend_application_lib_services_productservice_productservice_getproducts", + "confidence_score": 1.0 }, { "relation": "method", @@ -109918,9 +110129,9 @@ "source_location": "L248", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice_productservice", - "target": "frontend_application_lib_services_productservice_productservice_getproductbyid" + "target": "frontend_application_lib_services_productservice_productservice_getproductbyid", + "confidence_score": 1.0 }, { "relation": "method", @@ -109929,9 +110140,9 @@ "source_location": "L258", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice_productservice", - "target": "frontend_application_lib_services_productservice_productservice_getproductbyslug" + "target": "frontend_application_lib_services_productservice_productservice_getproductbyslug", + "confidence_score": 1.0 }, { "relation": "method", @@ -109940,9 +110151,9 @@ "source_location": "L268", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice_productservice", - "target": "frontend_application_lib_services_productservice_productservice_getfeaturedproducts" + "target": "frontend_application_lib_services_productservice_productservice_getfeaturedproducts", + "confidence_score": 1.0 }, { "relation": "method", @@ -109951,9 +110162,9 @@ "source_location": "L298", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice_productservice", - "target": "frontend_application_lib_services_productservice_productservice_getactivefilters" + "target": "frontend_application_lib_services_productservice_productservice_getactivefilters", + "confidence_score": 1.0 }, { "relation": "method", @@ -109962,9 +110173,9 @@ "source_location": "L312", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice_productservice", - "target": "frontend_application_lib_services_productservice_productservice_getnavigationfilters" + "target": "frontend_application_lib_services_productservice_productservice_getnavigationfilters", + "confidence_score": 1.0 }, { "relation": "method", @@ -109973,9 +110184,9 @@ "source_location": "L327", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "frontend_application_lib_services_productservice_productservice", - "target": "frontend_application_lib_services_productservice_productservice_getbanners" + "target": "frontend_application_lib_services_productservice_productservice_getbanners", + "confidence_score": 1.0 }, { "relation": "method", @@ -109984,9 +110195,9 @@ "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" + "target": "frontend_application_lib_services_productservice_productservice_constructor", + "confidence_score": 1.0 }, { "relation": "method", @@ -109995,9 +110206,9 @@ "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" + "target": "frontend_application_lib_services_productservice_productservice_getinstance", + "confidence_score": 1.0 }, { "relation": "method", @@ -110006,9 +110217,9 @@ "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" + "target": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend", + "confidence_score": 1.0 }, { "relation": "references", @@ -110017,9 +110228,9 @@ "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" + "target": "backend_prisma_migrations_20260526145407_init_migration_pets", + "confidence_score": 1.0 }, { "relation": "references", @@ -110028,9 +110239,9 @@ "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" + "target": "backend_prisma_migrations_20260526145407_init_migration_orders", + "confidence_score": 1.0 }, { "relation": "references", @@ -110039,9 +110250,9 @@ "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" + "target": "backend_prisma_migrations_20260526145407_init_migration_products", + "confidence_score": 1.0 }, { "relation": "references", @@ -110050,9 +110261,9 @@ "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" + "target": "backend_prisma_migrations_20260526145407_init_migration_users", + "confidence_score": 1.0 }, { "relation": "references", @@ -110061,9 +110272,9 @@ "source_location": "L254", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_migrations_20260526145407_init_migration_orders", - "target": "backend_prisma_migrations_20260526145407_init_migration_coupons" + "target": "backend_prisma_migrations_20260526145407_init_migration_coupons", + "confidence_score": 1.0 }, { "relation": "references", @@ -110072,9 +110283,9 @@ "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" + "target": "backend_prisma_migrations_20260526145407_init_migration_pets", + "confidence_score": 1.0 }, { "relation": "references", @@ -110083,9 +110294,9 @@ "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" + "target": "backend_prisma_migrations_20260526145407_init_migration_users", + "confidence_score": 1.0 }, { "relation": "references", @@ -110094,9 +110305,9 @@ "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" + "target": "backend_prisma_migrations_20260526145407_init_migration_products", + "confidence_score": 1.0 }, { "relation": "references", @@ -110105,9 +110316,9 @@ "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" + "target": "backend_prisma_migrations_20260526145407_init_migration_products", + "confidence_score": 1.0 }, { "relation": "references", @@ -110116,9 +110327,9 @@ "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" + "target": "backend_prisma_migrations_20260526145407_init_migration_reminders", + "confidence_score": 1.0 }, { "relation": "references", @@ -110127,9 +110338,9 @@ "source_location": "L239", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_migrations_20260526145407_init_migration_reminders", - "target": "backend_prisma_migrations_20260526145407_init_migration_pets" + "target": "backend_prisma_migrations_20260526145407_init_migration_pets", + "confidence_score": 1.0 }, { "relation": "references", @@ -110138,9 +110349,9 @@ "source_location": "L242", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_migrations_20260526145407_init_migration_reminders", - "target": "backend_prisma_migrations_20260526145407_init_migration_products" + "target": "backend_prisma_migrations_20260526145407_init_migration_products", + "confidence_score": 1.0 }, { "relation": "references", @@ -110149,9 +110360,9 @@ "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" + "target": "backend_prisma_migrations_20260526145407_init_migration_users", + "confidence_score": 1.0 }, { "relation": "references", @@ -110160,9 +110371,9 @@ "source_location": "L224", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "backend_prisma_migrations_20260526145407_init_migration_wallet_transactions", - "target": "backend_prisma_migrations_20260526145407_init_migration_users" + "target": "backend_prisma_migrations_20260526145407_init_migration_users", + "confidence_score": 1.0 }, { "relation": "references", @@ -110171,9 +110382,9 @@ "source_location": "L20", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_readme", - "target": "docs_04_setup_and_deployment" + "target": "docs_04_setup_and_deployment", + "confidence_score": 1.0 }, { "relation": "references", @@ -110182,9 +110393,9 @@ "source_location": "L23", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_readme", - "target": "docs_05_devops_and_monitoring" + "target": "docs_05_devops_and_monitoring", + "confidence_score": 1.0 }, { "relation": "references", @@ -110193,9 +110404,9 @@ "source_location": "L26", "weight": 1.0, "_origin": "ast", - "confidence_score": 1.0, "source": "docs_readme", - "target": "docs_06_testing" + "target": "docs_06_testing", + "confidence_score": 1.0 }, { "relation": "indirect_call", @@ -110205,9 +110416,9 @@ "weight": 1.0, "_origin": "ast", "context": "argument", - "confidence_score": 0.5, "source": "frontend_application_components_header_header", - "target": "frontend_application_components_header_header_handleclickoutside" + "target": "frontend_application_components_header_header_handleclickoutside", + "confidence_score": 0.5 }, { "relation": "indirect_call", @@ -110217,9 +110428,9 @@ "weight": 1.0, "_origin": "ast", "context": "argument", - "confidence_score": 0.5, "source": "frontend_application_components_podcastinlineplayer_podcastinlineplayer", - "target": "frontend_application_components_podcastinlineplayer_podcastinlineplayer_handleclickoutside" + "target": "frontend_application_components_podcastinlineplayer_podcastinlineplayer_handleclickoutside", + "confidence_score": 0.5 }, { "relation": "indirect_call", @@ -110229,9 +110440,9 @@ "weight": 1.0, "_origin": "ast", "context": "argument", - "confidence_score": 0.5, "source": "frontend_application_components_podcastplayermodal_podcastplayermodal", - "target": "frontend_application_components_podcastplayermodal_podcastplayermodal_handleclickoutside" + "target": "frontend_application_components_podcastplayermodal_podcastplayermodal_handleclickoutside", + "confidence_score": 0.5 }, { "relation": "indirect_call", @@ -110241,9 +110452,9 @@ "weight": 1.0, "_origin": "ast", "context": "argument", - "confidence_score": 0.5, "source": "frontend_application_components_videomodalplayer_videomodalplayer", - "target": "frontend_application_components_videomodalplayer_videomodalplayer_handleclickoutside" + "target": "frontend_application_components_videomodalplayer_videomodalplayer_handleclickoutside", + "confidence_score": 0.5 }, { "relation": "indirect_call", @@ -110253,9 +110464,9 @@ "weight": 1.0, "_origin": "ast", "context": "argument", - "confidence_score": 0.5, "source": "scripts_start_dev_waitforbackend", - "target": "scripts_start_dev_waitforbackend_check" + "target": "scripts_start_dev_waitforbackend_check", + "confidence_score": 0.5 }, { "relation": "indirect_call", @@ -110265,9 +110476,9 @@ "source_location": "L182", "weight": 1.0, "_origin": "ast", - "confidence_score": 0.5, "source": "ai_agency_orchestrate_main", - "target": "ai_agency_orchestrate_cmd_status" + "target": "ai_agency_orchestrate_cmd_status", + "confidence_score": 0.5 }, { "relation": "indirect_call", @@ -110277,9 +110488,9 @@ "source_location": "L183", "weight": 1.0, "_origin": "ast", - "confidence_score": 0.5, "source": "ai_agency_orchestrate_main", - "target": "ai_agency_orchestrate_cmd_progress" + "target": "ai_agency_orchestrate_cmd_progress", + "confidence_score": 0.5 }, { "relation": "indirect_call", @@ -110289,9 +110500,9 @@ "source_location": "L184", "weight": 1.0, "_origin": "ast", - "confidence_score": 0.5, "source": "ai_agency_orchestrate_main", - "target": "ai_agency_orchestrate_cmd_next_task" + "target": "ai_agency_orchestrate_cmd_next_task", + "confidence_score": 0.5 }, { "relation": "indirect_call", @@ -110301,9 +110512,9 @@ "source_location": "L185", "weight": 1.0, "_origin": "ast", - "confidence_score": 0.5, "source": "ai_agency_orchestrate_main", - "target": "ai_agency_orchestrate_cmd_unblock" + "target": "ai_agency_orchestrate_cmd_unblock", + "confidence_score": 0.5 }, { "relation": "indirect_call", @@ -110313,9 +110524,9 @@ "source_location": "L186", "weight": 1.0, "_origin": "ast", - "confidence_score": 0.5, "source": "ai_agency_orchestrate_main", - "target": "ai_agency_orchestrate_cmd_reset" + "target": "ai_agency_orchestrate_cmd_reset", + "confidence_score": 0.5 }, { "relation": "calls", @@ -112123,7 +112334,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L230", + "source_location": "L239", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_addpattern", @@ -112135,7 +112346,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L271", + "source_location": "L280", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", @@ -112159,7 +112370,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L262", + "source_location": "L271", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", @@ -112171,7 +112382,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L241", + "source_location": "L250", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_editpattern", @@ -112207,7 +112418,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L217", + "source_location": "L226", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_getpatterns", @@ -112243,7 +112454,19 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L253", + "source_location": "L193", + "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": "L262", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", @@ -112327,7 +112550,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L206", + "source_location": "L215", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_testsms", @@ -112375,7 +112598,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L193", + "source_location": "L202", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", @@ -112411,7 +112634,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L388", + "source_location": "L392", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice_addpattern", @@ -112423,7 +112646,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L404", + "source_location": "L408", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice_clearallsmslogs", @@ -112435,7 +112658,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L400", + "source_location": "L404", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice_deletesmslog", @@ -112447,7 +112670,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L392", + "source_location": "L396", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice_editpattern", @@ -112459,7 +112682,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L384", + "source_location": "L388", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice_getpatterns", @@ -112471,7 +112694,19 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L396", + "source_location": "L371", + "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": "L400", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice_getsmslogs", @@ -112495,7 +112730,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L380", + "source_location": "L384", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice_testsms", diff --git a/graphify-out/2026-08-18/manifest.json b/graphify-out/2026-08-18/manifest.json index 46e28da..ba61ffd 100644 --- a/graphify-out/2026-08-18/manifest.json +++ b/graphify-out/2026-08-18/manifest.json @@ -1,3301 +1,3301 @@ { ".ai_agency/orchestrate.py": { "mtime": 1785148022.0726626, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "43b4b40901868f1bdfd470cf58f40760", "semantic_hash": "43b4b40901868f1bdfd470cf58f40760" }, ".gitea/scripts/with-vpn.sh": { "mtime": 1786799852.1263163, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "451f307a9e42d2240949e7bf39de6667", "semantic_hash": "451f307a9e42d2240949e7bf39de6667" }, "backend/eslint.config.mjs": { "mtime": 1786799852.1343892, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "f442cf2ef8ccf6398d424127422ae23f", "semantic_hash": "f442cf2ef8ccf6398d424127422ae23f" }, "backend/nest-cli.json": { "mtime": 1783764561.6027174, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "b6c9c4b64b7092bea720263a47b574cf", "semantic_hash": "b6c9c4b64b7092bea720263a47b574cf" }, "backend/package.json": { "mtime": 1786799852.1419044, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "75fb7e1c2e31d365e0c695218dc746e1", "semantic_hash": "75fb7e1c2e31d365e0c695218dc746e1" }, "backend/prisma/migrations/20260526145407_init/migration.sql": { "mtime": 1783764561.6120076, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "12a9a675c12bc5ff2d2c3164f803f0ad", "semantic_hash": "12a9a675c12bc5ff2d2c3164f803f0ad" }, "backend/prisma/migrations/20260526160916_add_ui_texts_and_scientific_terms/migration.sql": { "mtime": 1783764561.6134257, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "50977e705726df3fb0f30bd1d3af101b", "semantic_hash": "50977e705726df3fb0f30bd1d3af101b" }, "backend/prisma/scientificTerms.ts": { "mtime": 1785325924.6348126, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "4c449cfeea573afd27cdfd1cdc72d4f3", "semantic_hash": "4c449cfeea573afd27cdfd1cdc72d4f3" }, "backend/prisma/seed-blogs.ts": { "mtime": 1786885876.777374, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "be491715958e8f9473913bdfe9cf5638", "semantic_hash": "be491715958e8f9473913bdfe9cf5638" }, "backend/prisma/seed-custom.ts": { "mtime": 1786799852.144902, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "23cefb1ea3fc60be141520fd50e3f9f9", "semantic_hash": "23cefb1ea3fc60be141520fd50e3f9f9" }, "backend/prisma/seed-home.ts": { "mtime": 1786885876.779371, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "3fd438d66d0b1174b885a9065e43b569", "semantic_hash": "3fd438d66d0b1174b885a9065e43b569" }, "backend/prisma/seed-products.ts": { "mtime": 1786885876.7848883, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "176abaca9fd158b3c734facb72a7cd8b", "semantic_hash": "176abaca9fd158b3c734facb72a7cd8b" }, "backend/prisma/seed-ui-texts.ts": { "mtime": 1786885876.7878885, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "443deac60ac932f8de4cec228ad5f492", "semantic_hash": "443deac60ac932f8de4cec228ad5f492" }, "backend/prisma/seed-wiki.ts": { "mtime": 1786961195.297596, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "4734726498e97501b3f8c6c8bc022bb8", "semantic_hash": "4734726498e97501b3f8c6c8bc022bb8" }, "backend/prisma/seed.ts": { "mtime": 1786961195.2992272, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "770c7e43cd409299785475b4db6b146f", "semantic_hash": "770c7e43cd409299785475b4db6b146f" }, "backend/prisma/tsconfig.seed.json": { "mtime": 1786955870.751259, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "a12c81b60c5e9fdb3c1aba03ac7ecb27", "semantic_hash": "a12c81b60c5e9fdb3c1aba03ac7ecb27" }, "backend/scripts/generate-openapi.ts": { "mtime": 1786799852.1563904, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "d218cbaae6150ad3a35c162c1a3c02a3", "semantic_hash": "d218cbaae6150ad3a35c162c1a3c02a3" }, "backend/src/admin/admin.controller.spec.ts": { "mtime": 1786799852.1573997, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "05370741c60e581754191c00baf87596", "semantic_hash": "05370741c60e581754191c00baf87596" }, "backend/src/admin/admin.controller.ts": { "mtime": 1787036696.7691524, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "6fe9b2e904cf9dca47f89030347ff573", "semantic_hash": "" }, "backend/src/admin/admin.module.ts": { "mtime": 1786877667.0050085, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "2c08f0bdcbeb87979024730e39c7a6ce", "semantic_hash": "2c08f0bdcbeb87979024730e39c7a6ce" }, "backend/src/admin/admin.service.spec.ts": { "mtime": 1786799852.1629112, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "0c0360ca02380ad75b9e551cffe11a96", "semantic_hash": "0c0360ca02380ad75b9e551cffe11a96" }, "backend/src/admin/admin.service.ts": { "mtime": 1787040318.6685486, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "304f9a29afcfb5e1903a7eab42afbb5a", "semantic_hash": "" }, "backend/src/admin/blogs.controller.ts": { "mtime": 1786799852.1701918, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "27d72d1d471239afaba45fe45429b8ee", "semantic_hash": "27d72d1d471239afaba45fe45429b8ee" }, "backend/src/admin/blogs.service.ts": { "mtime": 1786799852.171191, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "1b9fa7006c8ebfa19f2f34f7790a235a", "semantic_hash": "1b9fa7006c8ebfa19f2f34f7790a235a" }, "backend/src/admin/categories.controller.ts": { "mtime": 1786799852.1741924, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "e6322c19042382028966e6eb8dce7c62", "semantic_hash": "e6322c19042382028966e6eb8dce7c62" }, "backend/src/admin/categories.service.ts": { "mtime": 1786799852.1751943, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "7c6b626454aa53d5a3458b5ca738a97c", "semantic_hash": "7c6b626454aa53d5a3458b5ca738a97c" }, "backend/src/admin/dto/admin-query.dto.ts": { "mtime": 1786799852.1787064, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "0a3e421ccf508d1a50ec1cfa8c92a4f9", "semantic_hash": "0a3e421ccf508d1a50ec1cfa8c92a4f9" }, "backend/src/admin/media.controller.ts": { "mtime": 1786876983.6488664, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "02fa16bdaf1363f117f7200f590b13c4", "semantic_hash": "02fa16bdaf1363f117f7200f590b13c4" }, "backend/src/admin/media.service.ts": { "mtime": 1786876983.6515346, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "96b4035f21c6c0a662585ed950cd6107", "semantic_hash": "96b4035f21c6c0a662585ed950cd6107" }, "backend/src/admin/pets.controller.ts": { "mtime": 1786799852.1862173, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "8734d47651b112f7f1682f629dc4c7b1", "semantic_hash": "8734d47651b112f7f1682f629dc4c7b1" }, "backend/src/admin/pets.service.ts": { "mtime": 1786954681.814243, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "67ef020c49eb8334a2bac643941678ac", "semantic_hash": "67ef020c49eb8334a2bac643941678ac" }, "backend/src/admin/reports.controller.ts": { "mtime": 1783764561.642147, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "bf74156968541f38f105fa01454b312a", "semantic_hash": "bf74156968541f38f105fa01454b312a" }, "backend/src/admin/reports.service.ts": { "mtime": 1786799852.189731, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "c4dd8ce40cb75cdd9298cc7cdb7402d4", "semantic_hash": "c4dd8ce40cb75cdd9298cc7cdb7402d4" }, "backend/src/admin/wiki.controller.ts": { "mtime": 1786799852.1917324, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "8b7c8559d6ed6bb2c220d9abd4f622b1", "semantic_hash": "8b7c8559d6ed6bb2c220d9abd4f622b1" }, "backend/src/admin/wiki.service.ts": { "mtime": 1786799852.193324, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "ed627a21f3b767e9855511afefa5273c", "semantic_hash": "ed627a21f3b767e9855511afefa5273c" }, "backend/src/app.controller.spec.ts": { "mtime": 1783764561.6448398, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "4a1c0e1133dbda6f6e8f3e60d984eddf", "semantic_hash": "4a1c0e1133dbda6f6e8f3e60d984eddf" }, "backend/src/app.controller.ts": { "mtime": 1783764561.645849, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "3ab0e83b7d93b85ea489ab994ec79ea1", "semantic_hash": "3ab0e83b7d93b85ea489ab994ec79ea1" }, "backend/src/app.module.ts": { "mtime": 1786971396.0243194, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "48539a9f88b9c31ab924a4e2a7e1c827", "semantic_hash": "" }, "backend/src/app.service.ts": { "mtime": 1783764561.6488404, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "cd3fb7836f10de08a725ee1fd4ab36fe", "semantic_hash": "cd3fb7836f10de08a725ee1fd4ab36fe" }, "backend/src/auth/auth.controller.spec.ts": { "mtime": 1785327951.179468, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "7531d00aaa85a80f27e175071ce21c89", "semantic_hash": "7531d00aaa85a80f27e175071ce21c89" }, "backend/src/auth/auth.controller.ts": { "mtime": 1786883225.788847, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "63e2bb8124366719cf6f69af6a7bedbb", "semantic_hash": "63e2bb8124366719cf6f69af6a7bedbb" }, "backend/src/auth/auth.module.ts": { "mtime": 1786883225.7908473, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "33cfbdb720370d9eade3198bc770fb43", "semantic_hash": "33cfbdb720370d9eade3198bc770fb43" }, "backend/src/auth/auth.service.spec.ts": { "mtime": 1786799852.2018433, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "a67a2c622e438a8bbc4014657abc0558", "semantic_hash": "a67a2c622e438a8bbc4014657abc0558" }, "backend/src/auth/auth.service.ts": { "mtime": 1786895436.2085392, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "14994a5d46d159362562199532fb4dd2", "semantic_hash": "14994a5d46d159362562199532fb4dd2" }, "backend/src/auth/dto/admin-login.dto.ts": { "mtime": 1786799852.2053578, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "87c2d45e824b94fc06e1a86f433d0435", "semantic_hash": "87c2d45e824b94fc06e1a86f433d0435" }, "backend/src/auth/dto/login.dto.ts": { "mtime": 1783764561.659109, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "9941767ad430851531a9f049c2b65ed5", "semantic_hash": "9941767ad430851531a9f049c2b65ed5" }, "backend/src/auth/dto/register.dto.ts": { "mtime": 1785327951.186477, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "6165fdad9219dee4390732a7f6504e4a", "semantic_hash": "6165fdad9219dee4390732a7f6504e4a" }, "backend/src/auth/dto/send-otp.dto.ts": { "mtime": 1783764561.6611066, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "a99015984cd1320cbd36719809f69d3b", "semantic_hash": "a99015984cd1320cbd36719809f69d3b" }, "backend/src/auth/dto/verify-otp.dto.ts": { "mtime": 1783764561.662112, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "8bc250f7ca73e6cbe4cfa01a99a3c032", "semantic_hash": "8bc250f7ca73e6cbe4cfa01a99a3c032" }, "backend/src/auth/jwt-auth.guard.ts": { "mtime": 1786799852.2058628, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "f98f32eaf66499355a5e61632ac82aa5", "semantic_hash": "f98f32eaf66499355a5e61632ac82aa5" }, "backend/src/auth/jwt.strategy.ts": { "mtime": 1786883225.7943432, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "f815b9f719678a154ebf50090b801c62", "semantic_hash": "f815b9f719678a154ebf50090b801c62" }, "backend/src/auth/roles.decorator.ts": { "mtime": 1786799852.2083795, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "0d86f61ddaab0d2f4d5f9b331a5e2541", "semantic_hash": "0d86f61ddaab0d2f4d5f9b331a5e2541" }, "backend/src/auth/roles.guard.ts": { "mtime": 1786799852.2090034, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "10b31496903f54383d35b90a55c3e84a", "semantic_hash": "10b31496903f54383d35b90a55c3e84a" }, "backend/src/b2b/b2b.controller.ts": { "mtime": 1786799852.2120132, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "6f0d65aee6b69a67e8d3d14fb1bf7823", "semantic_hash": "6f0d65aee6b69a67e8d3d14fb1bf7823" }, "backend/src/b2b/b2b.module.ts": { "mtime": 1786799852.2120132, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "b1777d0004a54e8f89328879a20aa171", "semantic_hash": "b1777d0004a54e8f89328879a20aa171" }, "backend/src/b2b/b2b.service.ts": { "mtime": 1786799852.2140093, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "d025e172746789d44802755b8bb441bf", "semantic_hash": "d025e172746789d44802755b8bb441bf" }, "backend/src/banners/banners.controller.ts": { "mtime": 1786799852.2150102, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "30e1fba8ef3e98e127cf400aac0f71e8", "semantic_hash": "30e1fba8ef3e98e127cf400aac0f71e8" }, "backend/src/banners/banners.module.ts": { "mtime": 1786799852.2160103, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "3dca61f7cf64dfb5f827469c7f14c655", "semantic_hash": "3dca61f7cf64dfb5f827469c7f14c655" }, "backend/src/banners/banners.service.ts": { "mtime": 1786799852.2160103, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "777061ff84dc642fee69803ce9ac2de9", "semantic_hash": "777061ff84dc642fee69803ce9ac2de9" }, "backend/src/blogs/blogs.controller.ts": { "mtime": 1786799852.21801, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "bf17d5731c6a433e3f119a001462dca6", "semantic_hash": "bf17d5731c6a433e3f119a001462dca6" }, "backend/src/blogs/blogs.module.ts": { "mtime": 1783764561.665678, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "3fc38d55e03319844c6c8cbb3017364b", "semantic_hash": "3fc38d55e03319844c6c8cbb3017364b" }, "backend/src/blogs/blogs.service.ts": { "mtime": 1786799852.21901, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "f5b5232ac11a40796b37224fe7de8454", "semantic_hash": "f5b5232ac11a40796b37224fe7de8454" }, "backend/src/blogs/dto/create-blog.dto.ts": { "mtime": 1783764561.671557, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "a1938b347011dd71bfd99801b7453305", "semantic_hash": "a1938b347011dd71bfd99801b7453305" }, "backend/src/blogs/dto/update-blog.dto.ts": { "mtime": 1783764561.6737125, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "15612098d2a3cac84249518465104370", "semantic_hash": "15612098d2a3cac84249518465104370" }, "backend/src/blogs/entities/blog.entity.ts": { "mtime": 1783764561.675101, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "7fadae161e6d38110bdc8ce71f9f1bdd", "semantic_hash": "7fadae161e6d38110bdc8ce71f9f1bdd" }, "backend/src/cms/cms.controller.ts": { "mtime": 1785327951.196913, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "72482ba30a017f8ed1ef26b423eb83d1", "semantic_hash": "72482ba30a017f8ed1ef26b423eb83d1" }, "backend/src/cms/cms.module.ts": { "mtime": 1785148022.206298, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "831ca7e3ee288322e05ddeeb1b02229d", "semantic_hash": "831ca7e3ee288322e05ddeeb1b02229d" }, "backend/src/cms/cms.service.ts": { "mtime": 1785327951.1979403, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "f9da5085411e9fe60ab0c35fb852ef56", "semantic_hash": "f9da5085411e9fe60ab0c35fb852ef56" }, "backend/src/cms/dto/cms.dto.ts": { "mtime": 1785327951.1999955, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "b91b502820b503e4ca63dd36028608d5", "semantic_hash": "b91b502820b503e4ca63dd36028608d5" }, "backend/src/common/decorators/roles.decorator.ts": { "mtime": 1786799852.2205224, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "155f61ea03e3ef7d3d5e2fee554f8428", "semantic_hash": "155f61ea03e3ef7d3d5e2fee554f8428" }, "backend/src/common/dto/pagination.dto.ts": { "mtime": 1785327951.201989, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "6e66fdace411feba9d947fe0f678c900", "semantic_hash": "6e66fdace411feba9d947fe0f678c900" }, "backend/src/common/filters/http-exception.filter.ts": { "mtime": 1786883225.795858, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "81134c2bca373e51a05a75869f0fcb84", "semantic_hash": "81134c2bca373e51a05a75869f0fcb84" }, "backend/src/common/filters/prisma-exception.filter.ts": { "mtime": 1785330913.1437092, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "ab7ab9b4007e538b6451777dbca63d23", "semantic_hash": "ab7ab9b4007e538b6451777dbca63d23" }, "backend/src/common/guards/roles.guard.spec.ts": { "mtime": 1786799852.2255569, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "0ee2661808205a0bb03a45d4cbca4472", "semantic_hash": "0ee2661808205a0bb03a45d4cbca4472" }, "backend/src/common/guards/roles.guard.ts": { "mtime": 1786799852.2265651, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "72eadcd106153ccaad697234d8c0d281", "semantic_hash": "72eadcd106153ccaad697234d8c0d281" }, "backend/src/common/interceptors/decimal.interceptor.spec.ts": { "mtime": 1786799852.2275658, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "bbf53de234b9963923c3163a10cd8e17", "semantic_hash": "bbf53de234b9963923c3163a10cd8e17" }, "backend/src/common/interceptors/decimal.interceptor.ts": { "mtime": 1786799852.2275658, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "71f8f0bfa748a8cbeb5f4627f972261d", "semantic_hash": "71f8f0bfa748a8cbeb5f4627f972261d" }, "backend/src/common/metrics.controller.ts": { "mtime": 1786799852.229073, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "6380f2c18000ac46235e7adde60329dc", "semantic_hash": "6380f2c18000ac46235e7adde60329dc" }, "backend/src/common/schemas/error-response.schema.ts": { "mtime": 1785330913.1447015, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "e2d4a690aa006a63ad617d2c21c7d11d", "semantic_hash": "e2d4a690aa006a63ad617d2c21c7d11d" }, "backend/src/common/schemas/paginated-response.schema.ts": { "mtime": 1786799852.2300823, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "6ea7e2edc0ab662b3f244e0ffb8e5f19", "semantic_hash": "6ea7e2edc0ab662b3f244e0ffb8e5f19" }, "backend/src/common/services/sms.service.ts": { - "mtime": 1786892646.031271, - "seen": 1787061607.4580417, - "ast_hash": "474e0f454dc16060fa67e9ad4fc598f8", - "semantic_hash": "474e0f454dc16060fa67e9ad4fc598f8" + "mtime": 1787061755.7200232, + "seen": 1787061914.3754742, + "ast_hash": "482c0536470719801ae87904bd2c3198", + "semantic_hash": "" }, "backend/src/common/sms.module.ts": { "mtime": 1785330750.996125, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "c2621fbe872597ca7fbc23fc7e261665", "semantic_hash": "c2621fbe872597ca7fbc23fc7e261665" }, "backend/src/contact/contact.controller.ts": { "mtime": 1786799852.2345963, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "1fa2ff3dd39a3cd23860f5e2ec4f351f", "semantic_hash": "1fa2ff3dd39a3cd23860f5e2ec4f351f" }, "backend/src/contact/contact.module.ts": { "mtime": 1786799852.236599, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "3522066b9bc0d12c79ee13138ec94a23", "semantic_hash": "3522066b9bc0d12c79ee13138ec94a23" }, "backend/src/contact/contact.service.ts": { "mtime": 1786885876.79542, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "ceecffe2994700d1cf206f03bb8e2d97", "semantic_hash": "ceecffe2994700d1cf206f03bb8e2d97" }, "backend/src/home/dto/create-home.dto.ts": { "mtime": 1783764561.6823654, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "b20293c0606e764e43e19412e8b94e58", "semantic_hash": "b20293c0606e764e43e19412e8b94e58" }, "backend/src/home/dto/update-home.dto.ts": { "mtime": 1783764561.6823654, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "fdbec5105f68e9ef5edca26c91c2a01b", "semantic_hash": "fdbec5105f68e9ef5edca26c91c2a01b" }, "backend/src/home/entities/home.entity.ts": { "mtime": 1783764561.6848848, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "f7e5b57b1dbb4fa28600ebdd5c86a73c", "semantic_hash": "f7e5b57b1dbb4fa28600ebdd5c86a73c" }, "backend/src/home/home.controller.ts": { "mtime": 1785327951.2120874, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "3474997a729a3a47f1872f489c28e70e", "semantic_hash": "3474997a729a3a47f1872f489c28e70e" }, "backend/src/home/home.module.ts": { "mtime": 1783764561.687108, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "b8671f0d293617cf95cc2e9aef8ab11a", "semantic_hash": "b8671f0d293617cf95cc2e9aef8ab11a" }, "backend/src/home/home.service.ts": { "mtime": 1785327951.2140872, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "20073496a83b447238b4e8ab793573ec", "semantic_hash": "20073496a83b447238b4e8ab793573ec" }, "backend/src/ingredients/ingredients.controller.ts": { "mtime": 1786799852.2375965, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "b591e9eeddc544d5224bbf8dc747f71e", "semantic_hash": "b591e9eeddc544d5224bbf8dc747f71e" }, "backend/src/ingredients/ingredients.module.ts": { "mtime": 1786799852.2385964, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "928f762b562c624011ca6c7e72543d0d", "semantic_hash": "928f762b562c624011ca6c7e72543d0d" }, "backend/src/ingredients/ingredients.service.ts": { "mtime": 1786799852.2401083, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "7d07a0fb1cdebe81d9ecef7604701bed", "semantic_hash": "7d07a0fb1cdebe81d9ecef7604701bed" }, "backend/src/main.ts": { "mtime": 1786965281.3497548, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "d3626c5fbeda06046bf3a721db996208", "semantic_hash": "" }, "backend/src/orders/dto/create-order.dto.ts": { "mtime": 1785327951.218626, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "de9e39544ff4cfbbc8233318b2b71c67", "semantic_hash": "de9e39544ff4cfbbc8233318b2b71c67" }, "backend/src/orders/orders.controller.spec.ts": { "mtime": 1785327951.2196276, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "03aae30c09648646afbd6f8862d2d12b", "semantic_hash": "03aae30c09648646afbd6f8862d2d12b" }, "backend/src/orders/orders.controller.ts": { "mtime": 1786944769.5071752, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "a0973c1ef3b4870bd723e3a658e83489", "semantic_hash": "a0973c1ef3b4870bd723e3a658e83489" }, "backend/src/orders/orders.module.ts": { "mtime": 1783764561.6975982, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "10e4c03ae468f0412d882306bdb20401", "semantic_hash": "10e4c03ae468f0412d882306bdb20401" }, "backend/src/orders/orders.service.spec.ts": { "mtime": 1786799852.2461178, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "977cf4033204a7b27252a939aa57664f", "semantic_hash": "977cf4033204a7b27252a939aa57664f" }, "backend/src/orders/orders.service.ts": { "mtime": 1786944769.5092275, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "c082d92da929ebb7c53855046d954c87", "semantic_hash": "c082d92da929ebb7c53855046d954c87" }, "backend/src/pets/dto/create-health-log.dto.ts": { "mtime": 1785327951.2294433, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "da823d24eecce83c17760374fbc99131", "semantic_hash": "da823d24eecce83c17760374fbc99131" }, "backend/src/pets/dto/create-pet.dto.ts": { "mtime": 1785327951.2309487, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "22e442118c4b4c44d887a9e72bf416e2", "semantic_hash": "22e442118c4b4c44d887a9e72bf416e2" }, "backend/src/pets/dto/create-reminder.dto.ts": { "mtime": 1785327951.2319582, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "61e74b013460e406bd10197b3d3a95df", "semantic_hash": "61e74b013460e406bd10197b3d3a95df" }, "backend/src/pets/dto/update-pet.dto.ts": { "mtime": 1783764561.7095575, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "a2086bbebe7ca2718d4933b9828b456d", "semantic_hash": "a2086bbebe7ca2718d4933b9828b456d" }, "backend/src/pets/pets.controller.spec.ts": { "mtime": 1786799852.2481189, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "ea25cbbc55569e44ea0ceaf8c7af5111", "semantic_hash": "ea25cbbc55569e44ea0ceaf8c7af5111" }, "backend/src/pets/pets.controller.ts": { "mtime": 1786894580.128858, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "bc2a0ef119db7950b6d5738d550ddeb8", "semantic_hash": "bc2a0ef119db7950b6d5738d550ddeb8" }, "backend/src/pets/pets.module.ts": { "mtime": 1783764561.71447, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "1e30ca9c5823c33d4f3266d5b48fee01", "semantic_hash": "1e30ca9c5823c33d4f3266d5b48fee01" }, "backend/src/pets/pets.service.spec.ts": { "mtime": 1785327951.238208, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "49e5e2df9d623a5510db8d9c3eefdbd5", "semantic_hash": "49e5e2df9d623a5510db8d9c3eefdbd5" }, "backend/src/pets/pets.service.ts": { "mtime": 1786799852.2501173, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "f34775f4106e2ac19efff3a9b140db3f", "semantic_hash": "f34775f4106e2ac19efff3a9b140db3f" }, "backend/src/prescriptions/prescriptions.controller.ts": { "mtime": 1786799852.2537484, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "3b657f5cac989600c165b8eac3a6a2af", "semantic_hash": "3b657f5cac989600c165b8eac3a6a2af" }, "backend/src/prescriptions/prescriptions.module.ts": { "mtime": 1786954681.8158092, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "0f9ea31fa7fa71f4ec87e461ce7d444f", "semantic_hash": "0f9ea31fa7fa71f4ec87e461ce7d444f" }, "backend/src/prescriptions/prescriptions.service.ts": { "mtime": 1786954681.8168607, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "2966b30cb023905f3f4c92200d9155ef", "semantic_hash": "2966b30cb023905f3f4c92200d9155ef" }, "backend/src/prisma/prisma.module.ts": { "mtime": 1783764561.7181997, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "3505a1831c78f0a9475e4ce0f0092410", "semantic_hash": "3505a1831c78f0a9475e4ce0f0092410" }, "backend/src/prisma/prisma.service.ts": { "mtime": 1786944769.510794, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "15a556aba815c7b479a6d4965c95ced2", "semantic_hash": "15a556aba815c7b479a6d4965c95ced2" }, "backend/src/products/dto/get-products.dto.ts": { "mtime": 1786799852.2602715, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "bed3d5bd69f866349bfc408bfea60e78", "semantic_hash": "bed3d5bd69f866349bfc408bfea60e78" }, "backend/src/products/products.controller.spec.ts": { "mtime": 1785327951.243281, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "6fde28604e799d5c5c0d2c6c2fcb4372", "semantic_hash": "6fde28604e799d5c5c0d2c6c2fcb4372" }, "backend/src/products/products.controller.ts": { "mtime": 1786799852.2612817, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "db015311d34c7985c1c4ab818070b297", "semantic_hash": "db015311d34c7985c1c4ab818070b297" }, "backend/src/products/products.module.ts": { "mtime": 1783764561.7236724, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "a70b434bb1a044adf542a78cd9461264", "semantic_hash": "a70b434bb1a044adf542a78cd9461264" }, "backend/src/products/products.service.spec.ts": { "mtime": 1786799852.2632794, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "8a76d805cab28967eec85b1cd03d608c", "semantic_hash": "8a76d805cab28967eec85b1cd03d608c" }, "backend/src/products/products.service.ts": { "mtime": 1786954681.8188698, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "1650e465bede84a518882dc41e498110", "semantic_hash": "1650e465bede84a518882dc41e498110" }, "backend/src/redis/redis.module.ts": { "mtime": 1783764561.727662, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "0856864a521a862369a89de9b2d3c9f0", "semantic_hash": "0856864a521a862369a89de9b2d3c9f0" }, "backend/src/redis/redis.service.spec.ts": { "mtime": 1783764561.7286723, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "f3a16f7f1721be9e6ddb7ddd2949ea6c", "semantic_hash": "f3a16f7f1721be9e6ddb7ddd2949ea6c" }, "backend/src/redis/redis.service.ts": { "mtime": 1786895436.2118347, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "4f5e58ffc36bbaed17ee669e5a7394b7", "semantic_hash": "4f5e58ffc36bbaed17ee669e5a7394b7" }, "backend/src/seo/seo.controller.ts": { "mtime": 1785327951.2472832, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "4c11a3beaa94a769acf206bf9ff279b0", "semantic_hash": "4c11a3beaa94a769acf206bf9ff279b0" }, "backend/src/seo/seo.module.ts": { "mtime": 1785148022.268581, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "4160982445b855a6406e8713e95bf91b", "semantic_hash": "4160982445b855a6406e8713e95bf91b" }, "backend/src/seo/seo.service.ts": { "mtime": 1785327951.2482803, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "37a024bc45689db9ba8b8f7f9cd540b0", "semantic_hash": "37a024bc45689db9ba8b8f7f9cd540b0" }, "backend/src/settings/settings.controller.spec.ts": { "mtime": 1786799852.2672803, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "91d945ac11e32d343e37c8c265e6dbc4", "semantic_hash": "91d945ac11e32d343e37c8c265e6dbc4" }, "backend/src/settings/settings.controller.ts": { - "mtime": 1786948119.7670867, - "seen": 1787061607.4580417, - "ast_hash": "2c38d7c2bc4255ca5dc4322719889a44", - "semantic_hash": "2c38d7c2bc4255ca5dc4322719889a44" + "mtime": 1787061767.7235794, + "seen": 1787061914.3764744, + "ast_hash": "41a2916aa486b590bc4aa174987aec02", + "semantic_hash": "" }, "backend/src/settings/settings.module.ts": { "mtime": 1783764561.7355156, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "b84a45f92537de41c7c3821847271004", "semantic_hash": "b84a45f92537de41c7c3821847271004" }, "backend/src/settings/settings.service.spec.ts": { "mtime": 1783764561.7368565, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "06de60c1699a6f72858da21e9c6bf45a", "semantic_hash": "06de60c1699a6f72858da21e9c6bf45a" }, "backend/src/settings/settings.service.ts": { - "mtime": 1786954681.819869, - "seen": 1787061607.4580417, - "ast_hash": "505f435dc9924b400c07167e60c8a6cd", - "semantic_hash": "505f435dc9924b400c07167e60c8a6cd" + "mtime": 1787061761.3902085, + "seen": 1787061914.3764744, + "ast_hash": "4ebcd9e92170c826a35a4d907ff83f32", + "semantic_hash": "" }, "backend/src/smart-advisor/smart-advisor.controller.ts": { "mtime": 1786799852.2754414, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "eacb4fc2f3d82eb3833f4b04d851d4c3", "semantic_hash": "eacb4fc2f3d82eb3833f4b04d851d4c3" }, "backend/src/smart-advisor/smart-advisor.module.ts": { "mtime": 1786799852.2764418, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "40d2882f5f8a0733c940c754631be24b", "semantic_hash": "40d2882f5f8a0733c940c754631be24b" }, "backend/src/smart-advisor/smart-advisor.service.ts": { "mtime": 1786799852.2774403, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "1824f7151599e310cd2de7435e345afe", "semantic_hash": "1824f7151599e310cd2de7435e345afe" }, "backend/src/testimonials/testimonials.controller.ts": { "mtime": 1786799852.2794418, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "07d866d58d6cbba997122eaa38dcb36c", "semantic_hash": "07d866d58d6cbba997122eaa38dcb36c" }, "backend/src/testimonials/testimonials.module.ts": { "mtime": 1786799852.2794418, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "e2778d19b65d66f61d35f1a98333c873", "semantic_hash": "e2778d19b65d66f61d35f1a98333c873" }, "backend/src/testimonials/testimonials.service.ts": { "mtime": 1786799852.2814713, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "c22a3a4af898925abe30968a54a906c7", "semantic_hash": "c22a3a4af898925abe30968a54a906c7" }, "backend/src/users/dto/address.dto.ts": { "mtime": 1783764561.7398715, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "d42a8da106b862f8934b4268e5974025", "semantic_hash": "d42a8da106b862f8934b4268e5974025" }, "backend/src/users/dto/update-profile.dto.ts": { "mtime": 1786885876.8054721, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "7c5b2601ea43f7045a5691ed1fde7840", "semantic_hash": "7c5b2601ea43f7045a5691ed1fde7840" }, "backend/src/users/users.controller.spec.ts": { "mtime": 1785327951.2537966, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "8879233da361926bf496aa33fc24a0a4", "semantic_hash": "8879233da361926bf496aa33fc24a0a4" }, "backend/src/users/users.controller.ts": { "mtime": 1786799852.2824814, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "0c14b005ce0dddc5c6be9fb33672c659", "semantic_hash": "0c14b005ce0dddc5c6be9fb33672c659" }, "backend/src/users/users.module.ts": { "mtime": 1783764561.7481544, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "6a22d47a72af32e6726ff5025c1d6f0b", "semantic_hash": "6a22d47a72af32e6726ff5025c1d6f0b" }, "backend/src/users/users.service.spec.ts": { "mtime": 1786799852.2834806, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "f94ef87eb1f8de11ecd622f47181dbb7", "semantic_hash": "f94ef87eb1f8de11ecd622f47181dbb7" }, "backend/src/users/users.service.ts": { "mtime": 1786885876.8074715, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "a645960ec4a9153062b00515eba11614", "semantic_hash": "a645960ec4a9153062b00515eba11614" }, "backend/src/videos/dto/create-video.dto.ts": { "mtime": 1786971396.042094, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "292c465ed02d974fc16c674ca6f7caf5", "semantic_hash": "" }, "backend/src/videos/dto/get-videos-query.dto.ts": { "mtime": 1786799852.2876434, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "22029a395d4906dec82a0472af9827a2", "semantic_hash": "22029a395d4906dec82a0472af9827a2" }, "backend/src/videos/videos.controller.ts": { "mtime": 1786799852.2911532, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "64de50207aa54dc4d9866fb41a3cf11e", "semantic_hash": "64de50207aa54dc4d9866fb41a3cf11e" }, "backend/src/videos/videos.module.ts": { "mtime": 1785148022.3065836, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "79c989585f2c5da29199d914ca54abdf", "semantic_hash": "79c989585f2c5da29199d914ca54abdf" }, "backend/src/videos/videos.service.ts": { "mtime": 1786971396.0478723, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "dbbcb0abb72bb6eee16d6ca2c7927f9e", "semantic_hash": "" }, "backend/src/wholesale/dto/wholesale-apply.dto.ts": { "mtime": 1785148022.3176222, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "dda43ea50daed66d9ddf56ff14c2ac31", "semantic_hash": "dda43ea50daed66d9ddf56ff14c2ac31" }, "backend/src/wholesale/wholesale.controller.ts": { "mtime": 1786799852.294177, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "85347767e9b0508aa27c8fc2ada57403", "semantic_hash": "85347767e9b0508aa27c8fc2ada57403" }, "backend/src/wholesale/wholesale.module.ts": { "mtime": 1785148022.3287463, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "431fcacfcaaf5ee3872869c796581db3", "semantic_hash": "431fcacfcaaf5ee3872869c796581db3" }, "backend/src/wholesale/wholesale.service.ts": { "mtime": 1785330913.1492333, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "f17e69107c7ddb8baedfb9fa1177c8a0", "semantic_hash": "f17e69107c7ddb8baedfb9fa1177c8a0" }, "backend/src/wiki/dto/create-wiki.dto.ts": { "mtime": 1783764561.7529333, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "bff0bff5978c808b3f6c7c0471ecc09f", "semantic_hash": "bff0bff5978c808b3f6c7c0471ecc09f" }, "backend/src/wiki/dto/update-wiki.dto.ts": { "mtime": 1783764561.753945, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "aafeafc832089a9d47f2b09c15f5166c", "semantic_hash": "aafeafc832089a9d47f2b09c15f5166c" }, "backend/src/wiki/entities/wiki.entity.ts": { "mtime": 1783764561.7550395, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "0babba8c13baba4a2ad2fd70395060f2", "semantic_hash": "0babba8c13baba4a2ad2fd70395060f2" }, "backend/src/wiki/wiki.controller.ts": { "mtime": 1785327951.2728505, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "ca3a7279ecce06e6747e4b5d1b83f042", "semantic_hash": "ca3a7279ecce06e6747e4b5d1b83f042" }, "backend/src/wiki/wiki.module.ts": { "mtime": 1783764561.756925, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "22c999c57982f13d0526d25d7990b745", "semantic_hash": "22c999c57982f13d0526d25d7990b745" }, "backend/src/wiki/wiki.service.ts": { "mtime": 1786799852.295173, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "4f9a02a302512579c6eaed6e06da679e", "semantic_hash": "4f9a02a302512579c6eaed6e06da679e" }, "backend/test/app-audit-verification.e2e-spec.ts": { "mtime": 1786799852.2961748, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "5df6593dd9fd1f88f2b1e13f44b7b350", "semantic_hash": "5df6593dd9fd1f88f2b1e13f44b7b350" }, "backend/test/app.e2e-spec.ts": { "mtime": 1786799852.297175, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "8373bf2ee758abe47f5681e898cde506", "semantic_hash": "8373bf2ee758abe47f5681e898cde506" }, "backend/tsconfig.build.json": { "mtime": 1783764561.763447, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "d3d6c627ed113034e4138ae830ca9221", "semantic_hash": "d3d6c627ed113034e4138ae830ca9221" }, "backend/tsconfig.json": { "mtime": 1786878091.972378, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "b7b9a22bf35749e2fc21da4e7c10246d", "semantic_hash": "b7b9a22bf35749e2fc21da4e7c10246d" }, "docs/audit/build_manifest.js": { "mtime": 1786799852.3383932, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "5865147d3b17e6ddad0be4f4b9dc00d0", "semantic_hash": "5865147d3b17e6ddad0be4f4b9dc00d0" }, "docs/audit/generate_classification.js": { "mtime": 1786799852.3393898, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "01cdce5da0cdc41b49a7e9560a0b8ae9", "semantic_hash": "01cdce5da0cdc41b49a7e9560a0b8ae9" }, "docs/audit/generate_evidence.js": { "mtime": 1786799852.3403902, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "f31d1dafad3e771e9602776460c04761", "semantic_hash": "f31d1dafad3e771e9602776460c04761" }, "docs/audit/generate_ledger.js": { "mtime": 1786799852.3418972, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "c502805af184c8efe08a66030ff0203b", "semantic_hash": "c502805af184c8efe08a66030ff0203b" }, "docs/audit/generate_manifest.js": { "mtime": 1786799852.3418972, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "d9ead302d1023a72718e60261725e429", "semantic_hash": "d9ead302d1023a72718e60261725e429" }, "docs/audit/rebuild_honest_ledger.js": { "mtime": 1786799852.348953, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "5a505fbc55dbabd0557377ce8de0643a", "semantic_hash": "5a505fbc55dbabd0557377ce8de0643a" }, "docs/audit/sync_honest_manifest.js": { "mtime": 1786799852.3499532, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "3f2ec3b689e720b6e50fe4666a9b8bb0", "semantic_hash": "3f2ec3b689e720b6e50fe4666a9b8bb0" }, "docs/audit/sync_manifest.js": { "mtime": 1786799852.3509533, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "7315ba82c162ad4c2a0cec307966c580", "semantic_hash": "7315ba82c162ad4c2a0cec307966c580" }, "docs/audit/validate_evidence_grade.js": { "mtime": 1786799852.351954, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "5f68ed3e8236ececf82e5da4ac47d93b", "semantic_hash": "5f68ed3e8236ececf82e5da4ac47d93b" }, "docs/audit/validate_integrity.js": { "mtime": 1786799852.3529525, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "7bd05a71bd8c0c23db65db5201d3c030", "semantic_hash": "7bd05a71bd8c0c23db65db5201d3c030" }, "frontend/admin-panel/eslint.config.js": { "mtime": 1785651092.991237, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "0355276bc79439afe3c53e3a2470ca1e", "semantic_hash": "0355276bc79439afe3c53e3a2470ca1e" }, "frontend/admin-panel/package.json": { "mtime": 1785570791.953119, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "f9e35fdccbe93fd60b511f72bf414766", "semantic_hash": "f9e35fdccbe93fd60b511f72bf414766" }, "frontend/admin-panel/postcss.config.js": { "mtime": 1783764561.7962818, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "c1ee9ce6a4fe04105dbf8e619390df5e", "semantic_hash": "c1ee9ce6a4fe04105dbf8e619390df5e" }, "frontend/admin-panel/src/App.tsx": { "mtime": 1786799852.3654811, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "140226fcd94080d00f56e2f8b65f95e5", "semantic_hash": "140226fcd94080d00f56e2f8b65f95e5" }, "frontend/admin-panel/src/components/Layout.tsx": { "mtime": 1784621786.9585948, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "e2192f9b6c86f07ff6c6ec9bf9d1cb71", "semantic_hash": "e2192f9b6c86f07ff6c6ec9bf9d1cb71" }, "frontend/admin-panel/src/components/ProtectedRoute.tsx": { "mtime": 1786799852.369164, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "bcb0329847fb25e9fe1e990a30609210", "semantic_hash": "bcb0329847fb25e9fe1e990a30609210" }, "frontend/admin-panel/src/components/Sidebar.tsx": { "mtime": 1786971396.054428, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "d69ab4d433a74e8f2570f637bc51748a", "semantic_hash": "" }, "frontend/admin-panel/src/components/Topbar.tsx": { "mtime": 1786954681.821386, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "27574509b4c280e0d24f9987f57a7a95", "semantic_hash": "27574509b4c280e0d24f9987f57a7a95" }, "frontend/admin-panel/src/components/ui/ConfirmModal.tsx": { "mtime": 1786972191.3590996, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "982712b3d0130cbc66035a9caa4dc173", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/MediaSelector.tsx": { "mtime": 1787038450.536697, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "ed6a6da6e5929bf77a82b5cda0fb3eeb", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/Pagination.tsx": { "mtime": 1786799852.387442, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "8ab314264c858bcd6cb53fc4c9985cf0", "semantic_hash": "8ab314264c858bcd6cb53fc4c9985cf0" }, "frontend/admin-panel/src/components/ui/Skeleton.tsx": { "mtime": 1783856792.9775357, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "dd6a1fca8a8db341521aa315829143e0", "semantic_hash": "dd6a1fca8a8db341521aa315829143e0" }, "frontend/admin-panel/src/components/ui/Spinner.tsx": { "mtime": 1783856792.9790492, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "32a95c9dc25ac088596fdccd17d7284a", "semantic_hash": "32a95c9dc25ac088596fdccd17d7284a" }, "frontend/admin-panel/src/main.tsx": { "mtime": 1783764561.8293335, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "c5ee78875221dca9ed6b4e4b41e63cea", "semantic_hash": "c5ee78875221dca9ed6b4e4b41e63cea" }, "frontend/admin-panel/src/pages/B2BManager.tsx": { "mtime": 1786799852.3914404, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "6cbd7610d61fa9fc98b797fe2962d3ee", "semantic_hash": "6cbd7610d61fa9fc98b797fe2962d3ee" }, "frontend/admin-panel/src/pages/BannersManager.tsx": { "mtime": 1786946249.9659286, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "7db510633d62b7278bc32e6ba83060b2", "semantic_hash": "7db510633d62b7278bc32e6ba83060b2" }, "frontend/admin-panel/src/pages/Blogs.tsx": { "mtime": 1786799852.3959572, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "7e351212d40fc0308c460d6b1bc2a87c", "semantic_hash": "7e351212d40fc0308c460d6b1bc2a87c" }, "frontend/admin-panel/src/pages/CMS.tsx": { "mtime": 1786799852.4009578, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "85f86915c2f77799a2e628c3a5119b3d", "semantic_hash": "85f86915c2f77799a2e628c3a5119b3d" }, "frontend/admin-panel/src/pages/Categories.tsx": { "mtime": 1786799852.4049785, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "6da24d6cce9446f65eca3c8111314b38", "semantic_hash": "6da24d6cce9446f65eca3c8111314b38" }, "frontend/admin-panel/src/pages/ContactSubmissions.tsx": { "mtime": 1786799852.405538, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "203da6d16abc779117c2f0492f7c0922", "semantic_hash": "203da6d16abc779117c2f0492f7c0922" }, "frontend/admin-panel/src/pages/Coupons.tsx": { "mtime": 1786948119.7731652, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "1dc81681690acb8fcd96799b6645c872", "semantic_hash": "1dc81681690acb8fcd96799b6645c872" }, "frontend/admin-panel/src/pages/Dashboard.tsx": { "mtime": 1786885876.82951, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "025cbf432db0594426593332e01d5924", "semantic_hash": "025cbf432db0594426593332e01d5924" }, "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx": { "mtime": 1786948119.7741632, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "b3c1e28ee251c668b7c99d0c654537af", "semantic_hash": "b3c1e28ee251c668b7c99d0c654537af" }, "frontend/admin-panel/src/pages/IngredientsManager.tsx": { "mtime": 1786885876.8335173, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "fb60a926230ea5605ad5620394cf0ab3", "semantic_hash": "fb60a926230ea5605ad5620394cf0ab3" }, "frontend/admin-panel/src/pages/Login.tsx": { "mtime": 1786885876.8370354, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "653588b1027c03ec37f10d6650759b10", "semantic_hash": "653588b1027c03ec37f10d6650759b10" }, "frontend/admin-panel/src/pages/Media.tsx": { "mtime": 1787056319.6792488, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "1c138cc233dba2b567a4f40dad612987", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Orders.tsx": { - "mtime": 1787061495.881327, - "seen": 1787061607.4580417, + "mtime": 1787061673.9753704, + "seen": 1787061914.3764744, "ast_hash": "239e9a19963440249a4b4b6a935aa2ac", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Pets.tsx": { "mtime": 1786954681.8330536, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "9cfc80ceaf68ca5e2d60bdd144342b63", "semantic_hash": "9cfc80ceaf68ca5e2d60bdd144342b63" }, "frontend/admin-panel/src/pages/PrescriptionsManager.tsx": { "mtime": 1787056319.685764, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "807e4dd2428f3d1e2fdc7807a7d40d44", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Products.tsx": { "mtime": 1787055476.777433, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "10e2b348f5016ffc6ccb3a9f61b24227", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Reports.tsx": { "mtime": 1786894580.141384, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "f2c8fafd9dea6452f4f3e2f9cfb2e4b8", "semantic_hash": "f2c8fafd9dea6452f4f3e2f9cfb2e4b8" }, "frontend/admin-panel/src/pages/SeoSettingsPage.tsx": { "mtime": 1786885876.8521178, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "ab6912a5b919c8a3555107358f238187", "semantic_hash": "ab6912a5b919c8a3555107358f238187" }, "frontend/admin-panel/src/pages/Settings.tsx": { "mtime": 1786948119.7801008, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "99e3299a1230471047c2a9746f4fd067", "semantic_hash": "99e3299a1230471047c2a9746f4fd067" }, "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx": { "mtime": 1786799852.4430275, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "f83cad6af9f529abd276d6a2e9e0d83e", "semantic_hash": "f83cad6af9f529abd276d6a2e9e0d83e" }, "frontend/admin-panel/src/pages/SystemSettingsPage.tsx": { "mtime": 1786799852.4440303, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "c5cbadd42e577dd115ac2e11e9b42ae4", "semantic_hash": "c5cbadd42e577dd115ac2e11e9b42ae4" }, "frontend/admin-panel/src/pages/TestimonialsManager.tsx": { "mtime": 1786799852.445028, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "59b99aa7142d9bf249397834a7b5f5e6", "semantic_hash": "59b99aa7142d9bf249397834a7b5f5e6" }, "frontend/admin-panel/src/pages/UITexts.tsx": { "mtime": 1786954681.8350532, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "b2938cad9102be2ef9950d108f0ee8ed", "semantic_hash": "b2938cad9102be2ef9950d108f0ee8ed" }, "frontend/admin-panel/src/pages/Users.tsx": { "mtime": 1786883225.8135712, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "93d3011585da89abe94e6fabc05f4c2c", "semantic_hash": "93d3011585da89abe94e6fabc05f4c2c" }, "frontend/admin-panel/src/pages/Videos.tsx": { "mtime": 1786971396.0664716, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "a2d8bf9e7cfd450fab6e202f0cea819f", "semantic_hash": "" }, "frontend/admin-panel/src/pages/WholesaleApplications.tsx": { "mtime": 1786799852.4578054, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "45657e006d0c25fffc52b91d10f64271", "semantic_hash": "45657e006d0c25fffc52b91d10f64271" }, "frontend/admin-panel/src/pages/Wiki.tsx": { "mtime": 1786885876.8683088, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "2ac3805e4ff0e5399a52c663cf390dd3", "semantic_hash": "2ac3805e4ff0e5399a52c663cf390dd3" }, "frontend/admin-panel/src/routes/adminRoutes.tsx": { "mtime": 1786972155.9774911, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "994ebb4cc0889ad20480a22bf45c7678", "semantic_hash": "" }, "frontend/admin-panel/src/services/api.ts": { "mtime": 1786896758.433963, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "2bec645a6dc0218587030146034dbea0", "semantic_hash": "2bec645a6dc0218587030146034dbea0" }, "frontend/admin-panel/src/store/adminAuthStore.ts": { "mtime": 1786799852.469037, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "a2ca7b287d2c7efe08802b6187d95d67", "semantic_hash": "a2ca7b287d2c7efe08802b6187d95d67" }, "frontend/admin-panel/src/types/admin.ts": { "mtime": 1787056319.688287, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "2aaac9c3c7348e18a5eb5f256ef537e2", "semantic_hash": "" }, "frontend/admin-panel/tailwind.config.js": { "mtime": 1783764561.8617213, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "3346df3fd0a1ea3f84440703bf8fd2cb", "semantic_hash": "3346df3fd0a1ea3f84440703bf8fd2cb" }, "frontend/admin-panel/tsconfig.app.json": { "mtime": 1787055476.7795663, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "b885d5f97cf6fc2c1e7997d4b8abfb88", "semantic_hash": "" }, "frontend/admin-panel/tsconfig.json": { "mtime": 1783764561.8633935, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "a3d39fa780ebff65444de257f291ce6c", "semantic_hash": "a3d39fa780ebff65444de257f291ce6c" }, "frontend/admin-panel/tsconfig.node.json": { "mtime": 1783764561.863923, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "70bdd0a673bcfc0e828080b306e7c680", "semantic_hash": "70bdd0a673bcfc0e828080b306e7c680" }, "frontend/admin-panel/vite.config.ts": { "mtime": 1783764561.864455, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "88439104b3c207f17d33ef3160e3b080", "semantic_hash": "88439104b3c207f17d33ef3160e3b080" }, "frontend/application/app/ClientLayout.tsx": { "mtime": 1786891855.3535714, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "e30fb0071790bf359f9134186a8dae9a", "semantic_hash": "e30fb0071790bf359f9134186a8dae9a" }, "frontend/application/app/HomeClient.tsx": { "mtime": 1786971396.0716305, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "9b0782ca9c85c4197e73fd056d8c2025", "semantic_hash": "" }, "frontend/application/app/about/page.tsx": { "mtime": 1786885876.874318, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "122071948b63532df9ea60427655428d", "semantic_hash": "122071948b63532df9ea60427655428d" }, "frontend/application/app/blog/[slug]/page.tsx": { "mtime": 1786885876.8773174, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "a67f578515e0068f4da309c8dfa1588b", "semantic_hash": "a67f578515e0068f4da309c8dfa1588b" }, "frontend/application/app/blog/page.tsx": { "mtime": 1786885876.8788235, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "dfd96653af621f04c44963abc6ccaaff", "semantic_hash": "dfd96653af621f04c44963abc6ccaaff" }, "frontend/application/app/catalog/CatalogClient.tsx": { "mtime": 1786872121.5664852, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "32fa6454837b8cc0eabeec1f43f7208e", "semantic_hash": "32fa6454837b8cc0eabeec1f43f7208e" }, "frontend/application/app/catalog/page.tsx": { "mtime": 1786885876.8808322, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "43adccd5dc05e31efe6b31340c211979", "semantic_hash": "43adccd5dc05e31efe6b31340c211979" }, "frontend/application/app/checkout/page.tsx": { "mtime": 1783764561.876443, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "eefc348443a33f175f7de3c1687a3fff", "semantic_hash": "eefc348443a33f175f7de3c1687a3fff" }, "frontend/application/app/checkout/success/[id]/page.tsx": { "mtime": 1783764561.8786683, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "0e0899f968c15078ee01116c3e34d4a4", "semantic_hash": "0e0899f968c15078ee01116c3e34d4a4" }, "frontend/application/app/contact/page.tsx": { "mtime": 1786885876.884353, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "9f28014771c4e88ad8d744d5f2dc2ecd", "semantic_hash": "9f28014771c4e88ad8d744d5f2dc2ecd" }, "frontend/application/app/dashboard/page.tsx": { "mtime": 1783764561.880281, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "79abe02613f5ab312577b53db38168eb", "semantic_hash": "79abe02613f5ab312577b53db38168eb" }, "frontend/application/app/error.tsx": { "mtime": 1785148022.478709, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "aea86a6d5b21cbff7bb38f382d1dd82d", "semantic_hash": "aea86a6d5b21cbff7bb38f382d1dd82d" }, "frontend/application/app/layout.tsx": { "mtime": 1787038450.5422325, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "5f175b6bffa70ada00dbb53111a8b078", "semantic_hash": "" }, "frontend/application/app/loading.tsx": { "mtime": 1785148022.48765, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "daf62321fecabcbf8379d39f84a07c03", "semantic_hash": "daf62321fecabcbf8379d39f84a07c03" }, "frontend/application/app/not-found.tsx": { "mtime": 1783764561.8914113, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "6cada341f40f65b06a39f2a3020d7b96", "semantic_hash": "6cada341f40f65b06a39f2a3020d7b96" }, "frontend/application/app/page.tsx": { "mtime": 1786885876.8888724, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "038c86777d82f23c2552ba7ad962ae25", "semantic_hash": "038c86777d82f23c2552ba7ad962ae25" }, "frontend/application/app/privacy/page.tsx": { "mtime": 1786885876.8928847, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "d5b7e4467c3a9984342bdb88159f1107", "semantic_hash": "d5b7e4467c3a9984342bdb88159f1107" }, "frontend/application/app/profile/page.tsx": { "mtime": 1783764561.8952584, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "69a0aa446fc6e33ede049be8315b7fa8", "semantic_hash": "69a0aa446fc6e33ede049be8315b7fa8" }, "frontend/application/app/robots.ts": { "mtime": 1787038450.5450418, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "aad26660b69ba2996aaca79f62c80be9", "semantic_hash": "" }, "frontend/application/app/search/page.tsx": { "mtime": 1786885876.894884, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "aa23505558bafcaec8810783b8fdd175", "semantic_hash": "aa23505558bafcaec8810783b8fdd175" }, "frontend/application/app/shop/[slug]/page.tsx": { "mtime": 1786885876.8968854, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "7c3580938c111fa7e66662b51e691d0c", "semantic_hash": "7c3580938c111fa7e66662b51e691d0c" }, "frontend/application/app/shop/page.tsx": { "mtime": 1786885876.899396, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "98fde3145738f867778c68ef4358f7d0", "semantic_hash": "98fde3145738f867778c68ef4358f7d0" }, "frontend/application/app/sitemap.ts": { "mtime": 1786799852.5657444, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "5c984a6dcdfd01aba2533b384b220911", "semantic_hash": "5c984a6dcdfd01aba2533b384b220911" }, "frontend/application/app/track/page.tsx": { "mtime": 1783764561.9019034, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "b2f026b1789c0220ad7ee1ed7f128a52", "semantic_hash": "b2f026b1789c0220ad7ee1ed7f128a52" }, "frontend/application/app/trust-seals/page.tsx": { "mtime": 1786885876.9034047, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "9a6eca4eaf2a94c9e737950a6981091a", "semantic_hash": "9a6eca4eaf2a94c9e737950a6981091a" }, "frontend/application/app/videos/page.tsx": { "mtime": 1783764561.9029868, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "cb64705fc742c38d569402b4612ae099", "semantic_hash": "cb64705fc742c38d569402b4612ae099" }, "frontend/application/app/wiki/[slug]/page.tsx": { "mtime": 1784033954.808355, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "e59da3b5246bf697c0e43ba908328a9d", "semantic_hash": "e59da3b5246bf697c0e43ba908328a9d" }, "frontend/application/app/wiki/page.tsx": { "mtime": 1786885876.905476, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "fd34ad067a47fe841504bdc2e12b0359", "semantic_hash": "fd34ad067a47fe841504bdc2e12b0359" }, "frontend/application/components/AddressModal.tsx": { "mtime": 1786799852.5711784, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "34e9382058aac3b8ee1d4b3a4dea8be9", "semantic_hash": "34e9382058aac3b8ee1d4b3a4dea8be9" }, "frontend/application/components/ArchivePage.tsx": { "mtime": 1786965281.3542764, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "bb70a08026975e30f28fa784d4feb9c1", "semantic_hash": "" }, "frontend/application/components/AuthModal.tsx": { "mtime": 1786891855.357692, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "4eb81d742b697c063f6c82d4a3c20a76", "semantic_hash": "4eb81d742b697c063f6c82d4a3c20a76" }, "frontend/application/components/B2BPortal.tsx": { "mtime": 1786894580.1568575, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "cd073e8a2de7b93496df2310de77f41a", "semantic_hash": "cd073e8a2de7b93496df2310de77f41a" }, "frontend/application/components/BackButton.tsx": { "mtime": 1786965281.3572779, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "9537791a36d9fc0245ab1edd523bad9e", "semantic_hash": "" }, "frontend/application/components/BlogPage.tsx": { "mtime": 1786965281.3597915, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "0dab3c5c26bd6d7a65a38c8a5a356975", "semantic_hash": "" }, "frontend/application/components/CartDrawer.tsx": { "mtime": 1786799852.5993903, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "f9e7671394cf4888bd196a80ef08b3e4", "semantic_hash": "f9e7671394cf4888bd196a80ef08b3e4" }, "frontend/application/components/CheckoutPage.tsx": { "mtime": 1786965281.362524, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "f1b7e8f306f0339df29db4cfc36f912f", "semantic_hash": "" }, "frontend/application/components/ContactFormClient.tsx": { "mtime": 1786885876.9182186, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "18b49560c69dc9c18fdc77ad817fbe24", "semantic_hash": "18b49560c69dc9c18fdc77ad817fbe24" }, "frontend/application/components/DeleteConfirmModal.tsx": { "mtime": 1786799852.6087523, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "831b2bddd3e6d156abdac216577e3c4c", "semantic_hash": "831b2bddd3e6d156abdac216577e3c4c" }, "frontend/application/components/EnamadBadge.tsx": { "mtime": 1786799852.612362, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "37c7d2eaa27905307e5b2b147849519c", "semantic_hash": "37c7d2eaa27905307e5b2b147849519c" }, "frontend/application/components/ErrorBoundary.tsx": { "mtime": 1786799852.6145496, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "21b1cf87a9176b9f7902e5fc4f8b6482", "semantic_hash": "21b1cf87a9176b9f7902e5fc4f8b6482" }, "frontend/application/components/ErrorPages.tsx": { "mtime": 1786885876.9207263, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "d367c117edee2e91bfaa263a9514b93c", "semantic_hash": "d367c117edee2e91bfaa263a9514b93c" }, "frontend/application/components/FeaturedProducts.tsx": { "mtime": 1786799852.624407, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "c292634313532d9ca35e6b5e56a95824", "semantic_hash": "c292634313532d9ca35e6b5e56a95824" }, "frontend/application/components/Footer.tsx": { "mtime": 1786974487.7256863, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "2ffdf566b7d8bcf26a5ff0b422f42ab7", "semantic_hash": "" }, "frontend/application/components/Header.tsx": { "mtime": 1787041925.9370356, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "114249f5488ab03a5eda0aa04db0a92e", "semantic_hash": "" }, "frontend/application/components/HeaderButton.tsx": { "mtime": 1786799852.637156, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "5e4679ee49ad04e753de83a405255e44", "semantic_hash": "5e4679ee49ad04e753de83a405255e44" }, "frontend/application/components/Hero.tsx": { "mtime": 1787041925.9380355, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "1fe62d23d499d96dfc8e17fb8a9cfd92", "semantic_hash": "" }, "frontend/application/components/IngredientWiki.tsx": { "mtime": 1786965281.3742068, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "5a656dd2b9fd9e8f8c83544b706da19a", "semantic_hash": "" }, "frontend/application/components/LoginModal.tsx": { "mtime": 1786885876.9322674, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "8e7bdd175df5e72f59814fac75ff6254", "semantic_hash": "8e7bdd175df5e72f59814fac75ff6254" }, "frontend/application/components/MaintenancePage.tsx": { "mtime": 1786946249.984693, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "ddff8dfe25db6a3b4667f52a92ffbd12", "semantic_hash": "ddff8dfe25db6a3b4667f52a92ffbd12" }, "frontend/application/components/NetworkBanner.tsx": { "mtime": 1786799852.662139, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "17a159f769af90f446309ca321c86805", "semantic_hash": "17a159f769af90f446309ca321c86805" }, "frontend/application/components/OrderDetailsModal.tsx": { "mtime": 1787056525.0310273, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "7427f905bfdc6b73f8f7d02ae3058b05", "semantic_hash": "" }, "frontend/application/components/OrderSuccess.tsx": { "mtime": 1786799852.6655424, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "1af189b677cfa054b76f3a1b518113f8", "semantic_hash": "1af189b677cfa054b76f3a1b518113f8" }, "frontend/application/components/OrderTracking.tsx": { "mtime": 1786965281.3801894, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "876caa8bc755d8087e403e043a1358a1", "semantic_hash": "" }, "frontend/application/components/PetProfile.tsx": { "mtime": 1786965281.3822017, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "d7d5643e88efbf276ac711b3c2812308", "semantic_hash": "" }, "frontend/application/components/PrescriptionUploadModal.tsx": { "mtime": 1786965281.3856564, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "f622bde4484b9f8728858fdc5330f8c2", "semantic_hash": "" }, "frontend/application/components/ProductPage.tsx": { "mtime": 1787055297.1950588, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "e95f3580446ad03126416ba5059f8b60", "semantic_hash": "" }, "frontend/application/components/SafeImage.tsx": { "mtime": 1786971396.0749605, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "82ef6800ed65a7ffb6bb3e411535e1c1", "semantic_hash": "" }, "frontend/application/components/SearchResultsPage.tsx": { "mtime": 1786799852.7015781, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "a5418e889a76fa054734277bd9a77a3d", "semantic_hash": "a5418e889a76fa054734277bd9a77a3d" }, "frontend/application/components/SearchableSelect.tsx": { "mtime": 1785575516.1555548, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "9a5010afe35da7c9584bf60e69e47002", "semantic_hash": "9a5010afe35da7c9584bf60e69e47002" }, "frontend/application/components/Skeleton.tsx": { "mtime": 1783764561.943997, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "3df12c74c99d1d9ac25dfe620cf2b2c5", "semantic_hash": "3df12c74c99d1d9ac25dfe620cf2b2c5" }, "frontend/application/components/SmartAdvisor.tsx": { "mtime": 1786894580.1679084, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "d4a1912ce8201584d13c24a75b12b688", "semantic_hash": "d4a1912ce8201584d13c24a75b12b688" }, "frontend/application/components/TickerBanner.tsx": { "mtime": 1786885876.9608357, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "e00022d0f2300ac98510a6f8c040598b", "semantic_hash": "e00022d0f2300ac98510a6f8c040598b" }, "frontend/application/components/Tooltip.tsx": { "mtime": 1786885876.9641032, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "cd556c004e25bf31fc7955015e1be6c2", "semantic_hash": "cd556c004e25bf31fc7955015e1be6c2" }, "frontend/application/components/TopUpModal.tsx": { "mtime": 1786890779.336881, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "17b848b63d7422d62703538a62996077", "semantic_hash": "17b848b63d7422d62703538a62996077" }, "frontend/application/components/UserDashboard.tsx": { "mtime": 1786965281.3951943, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "69edab05061104a2d9785afd2b45ff6b", "semantic_hash": "" }, "frontend/application/components/VetGallery.tsx": { "mtime": 1786971396.0845337, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "f2f79c4c3ef0edaf5a28e8f2fd5bb96f", "semantic_hash": "" }, "frontend/application/components/VideosPage.tsx": { "mtime": 1787048863.6937873, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "00d2e61c0207e03b31a8303370cf4860", "semantic_hash": "" }, "frontend/application/components/__tests__/CartDrawer.test.tsx": { "mtime": 1786799852.7618258, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "6840b24eb0f28d8120a320f0fd466154", "semantic_hash": "6840b24eb0f28d8120a320f0fd466154" }, "frontend/application/components/__tests__/FeaturedProducts.test.tsx": { "mtime": 1786799852.7656322, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "4059af6498e993d64024592623b58a2b", "semantic_hash": "4059af6498e993d64024592623b58a2b" }, "frontend/application/components/__tests__/Footer.test.tsx": { "mtime": 1786885876.9765952, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "a258662661bb7865fe657b76abc97003", "semantic_hash": "a258662661bb7865fe657b76abc97003" }, "frontend/application/components/__tests__/Header.test.tsx": { "mtime": 1786799852.770019, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "40d1ba45b7b0272cfc6d4d6addbaf2af", "semantic_hash": "40d1ba45b7b0272cfc6d4d6addbaf2af" }, "frontend/application/components/__tests__/Hero.test.tsx": { "mtime": 1786799852.7760108, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "cba126955eaf2edc40fe24ce0c42d850", "semantic_hash": "cba126955eaf2edc40fe24ce0c42d850" }, "frontend/application/components/__tests__/Tooltip.test.tsx": { "mtime": 1786799852.784349, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "a43df52896070e694d06a2d1ae89a99a", "semantic_hash": "a43df52896070e694d06a2d1ae89a99a" }, "frontend/application/eslint.config.mjs": { "mtime": 1785651092.9934845, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "dfa1f5f6a7037bf39dc510f30b180002", "semantic_hash": "dfa1f5f6a7037bf39dc510f30b180002" }, "frontend/application/lib/data/products.ts": { "mtime": 1787040318.6812634, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "7d0cb02ac1d5f331a07ba1464dbc65ae", "semantic_hash": "" }, "frontend/application/lib/data/provinces.ts": { "mtime": 1785571725.610676, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "cd814c89c40909d1da24ac1e01fd99c0", "semantic_hash": "cd814c89c40909d1da24ac1e01fd99c0" }, "frontend/application/lib/data/scientificTerms.ts": { "mtime": 1786958978.7430973, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "b469da9f5c2d6e81279c853211bc197f", "semantic_hash": "b469da9f5c2d6e81279c853211bc197f" }, "frontend/application/lib/hooks/useNetworkStatus.ts": { "mtime": 1786799852.793488, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "d6ece33f5f0149a299c49366f0e314d0", "semantic_hash": "d6ece33f5f0149a299c49366f0e314d0" }, "frontend/application/lib/services/api.ts": { "mtime": 1786954681.8442974, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "ae46ef7c44f6cbfe689fb6807c23b26b", "semantic_hash": "ae46ef7c44f6cbfe689fb6807c23b26b" }, "frontend/application/lib/services/authService.ts": { "mtime": 1786885876.9861848, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "497045bd75576ee0cb6f37fc0ad831da", "semantic_hash": "497045bd75576ee0cb6f37fc0ad831da" }, "frontend/application/lib/services/orderService.ts": { "mtime": 1786799852.8107264, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "5b8b9c867e3db50a9ed5e6b3f765e3b5", "semantic_hash": "5b8b9c867e3db50a9ed5e6b3f765e3b5" }, "frontend/application/lib/services/productService.ts": { "mtime": 1787055297.2006445, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "6d7641737afa66f370c6e22f18649bc3", "semantic_hash": "" }, "frontend/application/lib/services/videoService.ts": { "mtime": 1786967385.8719704, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "2f5855cda678f065e6f3b44fcc97f7cf", "semantic_hash": "" }, "frontend/application/lib/store/__tests__/cartStore.test.ts": { "mtime": 1786799852.822037, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "741d154ab7044aa24c39b1694dbd9a32", "semantic_hash": "741d154ab7044aa24c39b1694dbd9a32" }, "frontend/application/lib/store/__tests__/settingsStore.test.ts": { "mtime": 1783856793.0438032, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "9ca2a69a162e64abce0658a348454d97", "semantic_hash": "9ca2a69a162e64abce0658a348454d97" }, "frontend/application/lib/store/__tests__/userStore.test.ts": { "mtime": 1786799852.8255477, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "9133574a4b0a49423dadbdc1d8d373b6", "semantic_hash": "9133574a4b0a49423dadbdc1d8d373b6" }, "frontend/application/lib/store/cartStore.ts": { "mtime": 1786895436.2356844, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "bca90351f647e0cbd364a37d7e193d8e", "semantic_hash": "bca90351f647e0cbd364a37d7e193d8e" }, "frontend/application/lib/store/settingsStore.ts": { "mtime": 1786948119.7870967, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "ad4252536324b30028b5e4844fbd959b", "semantic_hash": "ad4252536324b30028b5e4844fbd959b" }, "frontend/application/lib/store/uiStore.ts": { "mtime": 1786799852.833588, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "5b78ec13363f2456a9efa6189473f93b", "semantic_hash": "5b78ec13363f2456a9efa6189473f93b" }, "frontend/application/lib/store/usePetStore.ts": { "mtime": 1786954681.8453007, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "ad7e988e8e7561ed1c39db9964710806", "semantic_hash": "ad7e988e8e7561ed1c39db9964710806" }, "frontend/application/lib/store/userStore.ts": { "mtime": 1786885876.9946983, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "8b78aa320dffed6f73df4e7da060b79d", "semantic_hash": "8b78aa320dffed6f73df4e7da060b79d" }, "frontend/application/lib/types.ts": { "mtime": 1786799852.8401117, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "d4375ccb9e1067339601af5cb0f1ae07", "semantic_hash": "d4375ccb9e1067339601af5cb0f1ae07" }, "frontend/application/lib/utils.ts": { "mtime": 1786799852.847284, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "13d70256fc31437c6a1d3c3450c0d5c6", "semantic_hash": "13d70256fc31437c6a1d3c3450c0d5c6" }, "frontend/application/next.config.ts": { "mtime": 1786971396.0956757, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "4209bb5bc5a7a47f273fb4a6fdf9ef0e", "semantic_hash": "" }, "frontend/application/package.json": { "mtime": 1786799852.8631322, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "6e05083120e9bf19ace443112d6b54ab", "semantic_hash": "6e05083120e9bf19ace443112d6b54ab" }, "frontend/application/postcss.config.mjs": { "mtime": 1783764561.9882522, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "239f3ebf717465dc636818a1a619398d", "semantic_hash": "239f3ebf717465dc636818a1a619398d" }, "frontend/application/tsconfig.json": { "mtime": 1786799852.86564, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "09df7544350f3ee3b4fe33841d294a86", "semantic_hash": "09df7544350f3ee3b4fe33841d294a86" }, "frontend/application/vitest.config.ts": { "mtime": 1786799852.8686528, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "ee482d93c3e5c516e021b7a68c5fb60b", "semantic_hash": "ee482d93c3e5c516e021b7a68c5fb60b" }, "frontend/application/vitest.setup.ts": { "mtime": 1786799852.8706508, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "4dcc5d7d1d80795a12623d48fc61e3e5", "semantic_hash": "4dcc5d7d1d80795a12623d48fc61e3e5" }, "package.json": { "mtime": 1783856793.674106, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "fcb100aa3caf90be6b494c35499e0049", "semantic_hash": "fcb100aa3caf90be6b494c35499e0049" }, "scripts/backup_db.sh": { "mtime": 1786799852.8767846, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "82cb31279bdfacde5efe978a55256436", "semantic_hash": "82cb31279bdfacde5efe978a55256436" }, "scripts/deploy.sh": { "mtime": 1786972155.980491, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "bdc74d41e947485992e85de24ef046c7", "semantic_hash": "" }, "scripts/open-browsers.js": { "mtime": 1783764562.0287807, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "efcd36af516d969f068285a5d0b81ae3", "semantic_hash": "efcd36af516d969f068285a5d0b81ae3" }, "scripts/start-dev.js": { "mtime": 1783766217.3195245, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "edf922e3c4b62dbe39c6f14fa9285426", "semantic_hash": "edf922e3c4b62dbe39c6f14fa9285426" }, "start.sh": { "mtime": 1784033954.8130803, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "de3176806eab0abd69c6a8ea420b2095", "semantic_hash": "de3176806eab0abd69c6a8ea420b2095" }, "BACKEND_INTEGRATION.md": { "mtime": 1786885876.7688253, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "e1f23cc23d23159b32a35acc9fadc689", "semantic_hash": "" }, "DATABASE_SCHEMA.md": { "mtime": 1786885876.7713423, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "ca5ded565172da98231f6cf54af4843d", "semantic_hash": "" }, "README.md": { "mtime": 1786885876.7753718, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "830c27760b856f621e2498eb762743fa", "semantic_hash": "" }, "canina.md": { "mtime": 1786885876.8094723, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "9dd630592bc7905abc25f844ff134305", "semantic_hash": "" }, "docker-compose.yml": { "mtime": 1786883225.8115642, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "a78a74898646cdf374c4d83e43cfa854", "semantic_hash": "" }, "docs/01-introduction.md": { "mtime": 1786885876.812475, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "4089d3e4da9e473cd14c984e646abe93", "semantic_hash": "" }, "docs/02-user-guide.md": { "mtime": 1786885876.8139858, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "96bf8f4516994e99012a5b6c710835cd", "semantic_hash": "" }, "docs/03-developer-guide.md": { "mtime": 1783764561.7716606, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "14f25993a3a77357739f6cd082c1e566", "semantic_hash": "14f25993a3a77357739f6cd082c1e566" }, "docs/audit/05-architectural-audit.md": { "mtime": 1786799852.3026898, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "ab18a41271f0f845054f52f4dfa715eb", "semantic_hash": "ab18a41271f0f845054f52f4dfa715eb" }, "docs/audit/10-security-audit.md": { "mtime": 1786799852.3079526, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "125471bb12e468a0ddcd9a1dccca1001", "semantic_hash": "125471bb12e468a0ddcd9a1dccca1001" }, "docs/audit/ADR-AUTH-001.md": { "mtime": 1786799852.3326428, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "2616cbbcbbc3d461d3b6ca00195902a9", "semantic_hash": "2616cbbcbbc3d461d3b6ca00195902a9" }, "docs/audit/CROSS_BOUNDARY_DEPENDENCIES.md": { "mtime": 1786799852.3326428, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "6d851d9e754115841a5accab7efcf0dc", "semantic_hash": "6d851d9e754115841a5accab7efcf0dc" }, "docs/audit/FRONTEND_INTEGRATION_REQUIREMENTS.md": { "mtime": 1786885876.820986, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "0a279d01c2a2f617460517bbe7767b60", "semantic_hash": "" }, "docs/audit/MASTER-TASK-BACKLOG.md": { "mtime": 1786799852.3354702, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "0efc4759c15a04ca934ec32bb6b6fa6b", "semantic_hash": "0efc4759c15a04ca934ec32bb6b6fa6b" }, "docs/audit/frontend-route-map.md": { "mtime": 1786799852.3393898, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "88fdef86c48b2164cdcced3e502c073f", "semantic_hash": "88fdef86c48b2164cdcced3e502c073f" }, "docs/audit/phase3-execution-plan.md": { "mtime": 1786799852.3439524, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "15babdd91198793f5b6b791d7a5edd22", "semantic_hash": "15babdd91198793f5b6b791d7a5edd22" }, "docs/backlog.md": { "mtime": 1786799852.3560216, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "cf6eb1a9c1daef121cfb40f1a7771808", "semantic_hash": "cf6eb1a9c1daef121cfb40f1a7771808" }, "frontend/application/AGENTS.md": { "mtime": 1786885876.870317, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "c9031a87b1851796ac690e31f3342c0b", "semantic_hash": "" }, "frontend/application/public/fonts/shabnam-font-v5.0.1/CHANGELOG.md": { "mtime": 1783856793.2301185, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "eeaf2bb0943a16d43493f706d0867d1f", "semantic_hash": "eeaf2bb0943a16d43493f706d0867d1f" }, "frontend/application/public/fonts/shabnam-font-v5.0.1/README.md": { "mtime": 1783856793.2795427, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "5f851eefeeb4bffff8c5427a289f934d", "semantic_hash": "5f851eefeeb4bffff8c5427a289f934d" }, "frontend/application/public/fonts/vazirmatn-v33.003/AUTHORS.txt": { "mtime": 1783856793.3161557, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "a5c1ec085d5dae2319c659151ffce3f0", "semantic_hash": "a5c1ec085d5dae2319c659151ffce3f0" }, "frontend/application/public/fonts/vazirmatn-v33.003/CHANGELOG.md": { "mtime": 1783856793.3176901, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "e7227ba84ca88111166000065d1bdacb", "semantic_hash": "e7227ba84ca88111166000065d1bdacb" }, "frontend/application/public/fonts/vazirmatn-v33.003/OFL.txt": { "mtime": 1783856793.319422, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "88985b4355a8a44627dde041f10aba75", "semantic_hash": "88985b4355a8a44627dde041f10aba75" }, "frontend/application/public/fonts/vazirmatn-v33.003/README.md": { "mtime": 1783856793.320489, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "e9d11601fc4c77fe3d8d1961d9c5d420", "semantic_hash": "e9d11601fc4c77fe3d8d1961d9c5d420" }, "scripts/compose.prod.yml": { "mtime": 1786877667.0235276, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "73c642d4b23d82017092214b9f4817d0", "semantic_hash": "" }, "scripts/compose.stage.yml": { "mtime": 1786883225.890948, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "6c73208772ec3c18181da2fbc745c2ba", "semantic_hash": "" }, "backend/uploads/1781288429353-508765350.jpg": { "mtime": 1783764561.766257, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "ebf86506731de8ec10f2c4ea0ba14609", "semantic_hash": "ebf86506731de8ec10f2c4ea0ba14609" }, "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/sample-variable.gif": { "mtime": 1783856792.5464964, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "9d0c1a4764b2b06807578b33c40838ca", "semantic_hash": "9d0c1a4764b2b06807578b33c40838ca" }, "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/sample.png": { "mtime": 1783856792.6456678, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "8bca253cfb55f954622145010756efa9", "semantic_hash": "8bca253cfb55f954622145010756efa9" }, "frontend/application/public/assets/images/regenerated_image_1779109861747.png": { "mtime": 1783764562.0141103, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "47111b66c208d1fa0c74877dfc0ee2a5", "semantic_hash": "47111b66c208d1fa0c74877dfc0ee2a5" }, "frontend/application/public/fonts/sahel-font-v3.4.0/sample-variable.gif": { "mtime": 1783856793.2291198, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "9d0c1a4764b2b06807578b33c40838ca", "semantic_hash": "9d0c1a4764b2b06807578b33c40838ca" }, "frontend/application/public/fonts/shabnam-font-v5.0.1/sample.png": { "mtime": 1783856793.3151467, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "8bca253cfb55f954622145010756efa9", "semantic_hash": "8bca253cfb55f954622145010756efa9" }, ".ai_agency/memory/backlog.json": { "mtime": 1785330750.958891, "seen": 1787061607.4580417, - "ast_hash": "3c756c64cdd695c4eaf69756e75e3882", + "ast_hash": "", "semantic_hash": "" }, ".ai_agency/memory/state.json": { "mtime": 1785330750.963914, "seen": 1787061607.4580417, - "ast_hash": "6b54d95c08bc4c0b277ca490dd0e3ef5", + "ast_hash": "", "semantic_hash": "" }, "backend/prisma/seed-products-data.json": { "mtime": 1786885876.7823713, "seen": 1787061607.4580417, - "ast_hash": "d8f1d1420dc336e783fbb41a4d7e7acb", + "ast_hash": "", "semantic_hash": "" }, "backend/test/jest-e2e.json": { "mtime": 1783764561.7629118, "seen": 1787061607.4580417, - "ast_hash": "9f2f5b0e1da31d7b04e205c944e85e8d", + "ast_hash": "", "semantic_hash": "" }, "docs/audit/15-raw-findings-index.json": { "mtime": 1786799852.313067, "seen": 1787061607.4580417, - "ast_hash": "9e230f8bba28852423b8c1ec8b09b32f", + "ast_hash": "", "semantic_hash": "" }, "docs/audit/17-source-coverage-manifest.json": { "mtime": 1786799852.315065, "seen": 1787061607.4580417, - "ast_hash": "7474f2cf57c1d32204c3d5416994fa0f", + "ast_hash": "", "semantic_hash": "" }, "docs/audit/20-verified-findings-index.json": { "mtime": 1786799852.3170714, "seen": 1787061607.4580417, - "ast_hash": "6a500c60801c536bf5a45040937dd218", + "ast_hash": "", "semantic_hash": "" }, "docs/audit/25-reference-integrity-validation.json": { "mtime": 1786799852.3215716, "seen": 1787061607.4580417, - "ast_hash": "68e070d83404e091e03a7ee36733f9e1", + "ast_hash": "", "semantic_hash": "" }, "docs/audit/28-full-repository-classification.json": { "mtime": 1786799852.3240995, "seen": 1787061607.4580417, - "ast_hash": "c57de61b46103984a396af8f9021581a", + "ast_hash": "", "semantic_hash": "" }, "docs/audit/29-file-content-evidence.json": { "mtime": 1786799852.325608, "seen": 1787061607.4580417, - "ast_hash": "572627f2151f693b8eccf610bb2b061c", + "ast_hash": "", "semantic_hash": "" }, "docs/audit/30-compiler-diagnostics-index.json": { "mtime": 1786799852.326617, "seen": 1787061607.4580417, - "ast_hash": "44939eb98cd54c50f045e0ef96df5a92", + "ast_hash": "", "semantic_hash": "" }, "docs/audit/32-evidence-grade-validation.json": { "mtime": 1786799852.3286169, "seen": 1787061607.4580417, - "ast_hash": "545b82aec788828e42ea5248c7fb94df", + "ast_hash": "", "semantic_hash": "" }, "docs/audit/34-repository-observations.json": { "mtime": 1786799852.3296187, "seen": 1787061607.4580417, - "ast_hash": "2e23d2b83605602cb79bbef45d60a30f", + "ast_hash": "", "semantic_hash": "" }, "docs/audit/35-semantic-review-ledger.json": { "mtime": 1786799852.330616, "seen": 1787061607.4580417, - "ast_hash": "80bb7774d36478cb83ea8cbd718d9822", + "ast_hash": "", "semantic_hash": "" }, "docs/audit/36-mandatory-semantic-scope.json": { "mtime": 1786799852.331617, "seen": 1787061607.4580417, - "ast_hash": "00f7562080cfbdc6e1348bc17e620c45", + "ast_hash": "", "semantic_hash": "" }, "docs/audit/audit-state.json": { "mtime": 1786799852.3373823, "seen": 1787061607.4580417, - "ast_hash": "0e7a1fbae5f979be0582d442fd9cc48b", + "ast_hash": "", "semantic_hash": "" }, "docs/audit/master-task-backlog.json": { "mtime": 1786799852.3429067, "seen": 1787061607.4580417, - "ast_hash": "7d205cc74fa13ea2b26e9840991b4efa", + "ast_hash": "", "semantic_hash": "" }, "metadata.json": { "mtime": 1783856793.6721373, "seen": 1787061607.4580417, - "ast_hash": "d5c5753dafcb6b6fb90f6bcd4809f7ec", + "ast_hash": "", "semantic_hash": "" }, ".ai_agency/AGENCY.md": { "mtime": 1785148021.9796073, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "9a615cfac3d434770f0fa036a32b71f9", "semantic_hash": "" }, ".ai_agency/agents/00_intake.md": { "mtime": 1785148021.984319, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "f1b0d3a7e74c834af83cd068a97bc240", "semantic_hash": "" }, ".ai_agency/agents/01_auditor.md": { "mtime": 1785148021.9877827, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "a41d382a1269c2d6432522485e1b3301", "semantic_hash": "" }, ".ai_agency/agents/02_ceo.md": { "mtime": 1785148021.9983747, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "caf2825294f63004fa58a8b3775f10dc", "semantic_hash": "" }, ".ai_agency/agents/03_product_manager.md": { "mtime": 1785148022.0019681, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "d5a7823925324506c4c0f91534c713cc", "semantic_hash": "" }, ".ai_agency/agents/04_architect.md": { "mtime": 1785148022.004966, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "fa9c501ee0e0f13da21dd138ed9116b3", "semantic_hash": "" }, ".ai_agency/agents/05_dev_backend.md": { "mtime": 1785148022.0124812, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "9753813406d32d60a4f82b62ffc3f00f", "semantic_hash": "" }, ".ai_agency/agents/06_dev_frontend.md": { "mtime": 1785148022.01702, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "061855c65baa90ab44d77285cf1475f2", "semantic_hash": "" }, ".ai_agency/agents/07_qa_engineer.md": { "mtime": 1785148022.0200446, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "fe33c91f65cbfa2a4e9e9e007cd03370", "semantic_hash": "" }, ".ai_agency/agents/08_visual_qa.md": { "mtime": 1785148022.0300832, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "7e8b5e90bb7c668ce961bb1c117d4291", "semantic_hash": "" }, ".ai_agency/agents/09_devops_security.md": { "mtime": 1785148022.0340874, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "f4ce074e72eade7153ee4785ae9a89c6", "semantic_hash": "" }, ".ai_agency/agents/10_tech_writer.md": { "mtime": 1785148022.0370827, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "9315ddc6c2960907d7dda7804c1debac", "semantic_hash": "" }, ".ai_agency/agents/11_deploy.md": { "mtime": 1785148022.0406027, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "0f644be55161acf799ccc0b89ebfaa03", "semantic_hash": "" }, ".ai_agency/agents/12_seo_content.md": { "mtime": 1785148022.048604, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "a053bac412fb66749c22ddfc58882766", "semantic_hash": "" }, ".ai_agency/memory/agent_outputs/README.txt": { "mtime": 1785148022.0521505, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "7b3064fbf48b53032a8d4bfb73ca9ca7", "semantic_hash": "" }, ".ai_agency/memory/scratchpad.md": { "mtime": 1785148022.0651145, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "04648e7db23c144f89cdf78d071a32a0", "semantic_hash": "" }, ".ai_agency/specs/api_contract.md": { "mtime": 1785148022.0776649, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "2641fc7a31d9fe4761dad3ae7c944cb0", "semantic_hash": "" }, ".ai_agency/specs/architecture_spec.md": { "mtime": 1785148022.0822608, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "8763e7670f9cd0281273e139b484e701", "semantic_hash": "" }, ".ai_agency/specs/prd.md": { "mtime": 1785148022.0872517, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "a030931c59700809b29fa5e2dcbaaf18", "semantic_hash": "" }, ".ai_agency/specs/project_health.md": { "mtime": 1785148022.0983145, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "063e14c4ad0f62b79e412580319d6e6a", "semantic_hash": "" }, ".ai_agency/specs/reviews/README.md": { "mtime": 1785148022.105835, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "e68ba8a85edcd2394cb46d8f03fa09b7", "semantic_hash": "" }, ".ai_agency/specs/reviews/backend_review.md": { "mtime": 1785148022.1103623, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "34de73a13f5917bee531b6c2036e6fd6", "semantic_hash": "" }, ".ai_agency/specs/reviews/code_health_review.md": { "mtime": 1785148022.1143596, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "6ac531c22e5d025f50e6375323a52ed7", "semantic_hash": "" }, ".ai_agency/specs/reviews/frontend_review.md": { "mtime": 1785148022.118487, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "0fd2a25383bafe358068544b4fd5e5f9", "semantic_hash": "" }, ".ai_agency/specs/reviews/security_review.md": { "mtime": 1785148022.1214871, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "ed5139209a62a8a4a461b8a0eff9ac02", "semantic_hash": "" }, ".ai_agency/specs/reviews/seo_content_review.md": { "mtime": 1785148022.1315339, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "4cd7283f78877c1a14ff5b682c762702", "semantic_hash": "" }, ".ai_agency/specs/reviews/ux_review.md": { "mtime": 1785148022.1365507, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "4edeb2b914b36277d8381de722df56ef", "semantic_hash": "" }, ".antigravity/instructions.md": { "mtime": 1786870552.8334057, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "9b31786b637be3c13978bec4c2330752", "semantic_hash": "" }, ".antigravity/workflows/graphify.md": { "mtime": 1786870552.8379214, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "3953c31b4ef6d89d3b1cb43f0110817d", "semantic_hash": "" }, ".claude/CLAUDE.md": { "mtime": 1786870552.83892, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "9b31786b637be3c13978bec4c2330752", "semantic_hash": "" }, ".claude/skills/graphify/SKILL.md": { "mtime": 1786870552.845041, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "3953c31b4ef6d89d3b1cb43f0110817d", "semantic_hash": "" }, ".claude/skills/graphify/references/add-watch.md": { "mtime": 1786870552.848102, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "d59d027fe449f06aa03905a01184e779", "semantic_hash": "" }, ".claude/skills/graphify/references/exports.md": { "mtime": 1786870552.849102, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "9da2a2152e60a22f07f05fed5158f287", "semantic_hash": "" }, ".claude/skills/graphify/references/extraction-spec.md": { "mtime": 1786870552.850102, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "42fef56a01698118f7fd722acdadea34", "semantic_hash": "" }, ".claude/skills/graphify/references/github-and-merge.md": { "mtime": 1786870552.853101, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "cde13df085e4c492aeb7ba298a996d0d", "semantic_hash": "" }, ".claude/skills/graphify/references/hooks.md": { "mtime": 1786870552.8550987, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "3f545db6ce646650bb9de588f5512a27", "semantic_hash": "" }, ".claude/skills/graphify/references/query.md": { "mtime": 1786870552.857703, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "3c46f8ad006874260614ed8657d02307", "semantic_hash": "" }, ".claude/skills/graphify/references/transcribe.md": { "mtime": 1786870552.8587108, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "67b6a5fa6c0974e18f60db9f8932fbd8", "semantic_hash": "" }, ".claude/skills/graphify/references/update.md": { "mtime": 1786870552.86071, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "9378bd03d56baaf78bd738ab3848f142", "semantic_hash": "" }, ".gitea/workflows/deploy.yml": { "mtime": 1786799852.129315, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "e953545448e6cd9015ec9d0bba637d7c", "semantic_hash": "" }, "CLAUDE.md": { "mtime": 1786870552.8637102, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "82efb97a359f5c7290bf2513d14686be", "semantic_hash": "" }, "backend/README.md": { "mtime": 1783764561.6013825, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "f9b30a57e215bc0b63868065fc71a1ac", "semantic_hash": "" }, "docs/04-setup-and-deployment.md": { "mtime": 1783764561.773295, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "140bba5a1f9e94796ca3dd70fa900ace", "semantic_hash": "" }, "docs/05-devops-and-monitoring.md": { "mtime": 1783764561.774446, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "7dade1c1d477d70ced55a7580b812127", "semantic_hash": "" }, "docs/06-testing.md": { "mtime": 1783764561.7749674, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "2ed3cd7f39157774928e65d5cc0588d0", "semantic_hash": "" }, "docs/README.md": { "mtime": 1786885876.8169968, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "64dfe035bc8fdb4b42f7af8336bf4ab3", "semantic_hash": "" }, "docs/audit/00-repository-map.md": { "mtime": 1786799852.2981741, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "5343b55148ced4eed7f13aa32b689936", "semantic_hash": "" }, "docs/audit/01-system-discovery.md": { "mtime": 1786799852.2991743, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "5fcfb853f894f8697b6badb692dfe249", "semantic_hash": "" }, "docs/audit/02-audit-plan.md": { "mtime": 1786799852.3001754, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "d6a5dbf5ddc5fc174e8a041e835481db", "semantic_hash": "" }, "docs/audit/03-baseline-command-plan.md": { "mtime": 1786799852.3001754, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "7d40f368e9ed0f27fa2ef5ad01249ad2", "semantic_hash": "" }, "docs/audit/04-open-questions.md": { "mtime": 1786799852.301682, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "773b455bb84b5df87cfbaa76dfa951f0", "semantic_hash": "" }, "docs/audit/06-storefront-audit.md": { "mtime": 1786799852.3036914, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "7c3aff371cdb919bb885bf4a6f625780", "semantic_hash": "" }, "docs/audit/07-backend-audit.md": { "mtime": 1786799852.30469, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "53927123ba5acca71e57780ca9bd34f9", "semantic_hash": "" }, "docs/audit/08-admin-features-audit.md": { "mtime": 1786799852.3059514, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "d4da7eb2396ad939251ccc541f1fd165", "semantic_hash": "" }, "docs/audit/09-database-audit.md": { "mtime": 1786799852.3069694, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "bdd7e4c3b4723b2006053563ac345819", "semantic_hash": "" }, "docs/audit/11-code-quality-audit.md": { "mtime": 1786799852.308957, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "c48e39113f2334fae743488668ecf618", "semantic_hash": "" }, "docs/audit/12-testing-audit.md": { "mtime": 1786799852.3099525, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "0d1570f5138328d090a43edc1f7bc4f0", "semantic_hash": "" }, "docs/audit/13-devops-audit.md": { "mtime": 1786799852.3109539, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "986acddf4e09ccbe2b8b8f6806bc01d5", "semantic_hash": "" }, "docs/audit/14-documentation-audit.md": { "mtime": 1786799852.311952, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "d1f8496a0dae10993495691dc58098ef", "semantic_hash": "" }, "docs/audit/16-deep-audit-summary.md": { "mtime": 1786799852.313067, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "f17a01bf7b59276d28c6948fd14eafd2", "semantic_hash": "" }, "docs/audit/18-compiler-diagnostic-dispositions.md": { "mtime": 1786799852.315065, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "5b402b064300709c7723a63885894c29", "semantic_hash": "" }, "docs/audit/19-finding-verification-report.md": { "mtime": 1786799852.3160648, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "c3363af4c68792722ebadddc10319f14", "semantic_hash": "" }, "docs/audit/21-phase2-quality-gate-summary.md": { "mtime": 1786799852.318066, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "c336937acd576ee2efc36d67dbaf69e2", "semantic_hash": "" }, "docs/audit/22-tracked-first-party-files.txt": { "mtime": 1786799852.319066, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "3f66b26b7f4217a065ed3d3403fe40fd", "semantic_hash": "" }, "docs/audit/23-untracked-first-party-files.txt": { "mtime": 1786799852.319066, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "9fe0a15ea45d03f8e4ccd0ad786dd9fb", "semantic_hash": "" }, "docs/audit/24-omitted-file-inspection-report.md": { "mtime": 1786799852.3200657, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "6fb068c98fefc544e9ff687c1b3c0351", "semantic_hash": "" }, "docs/audit/26-phase2-integrity-repair-report.md": { "mtime": 1786799852.3220918, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "aecc17ca01002edfbdf472cf4f4aaa4c", "semantic_hash": "" }, "docs/audit/27-all-tracked-repository-files.txt": { "mtime": 1786799852.3230999, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "f35e68d28e4c31002698e68cc18242e3", "semantic_hash": "" }, "docs/audit/31-module-audit-closure.md": { "mtime": 1786799852.3276167, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "b66f589f8c3bd0b53b7d61626eec0985", "semantic_hash": "" }, "docs/audit/33-final-phase2-audit-closure.md": { "mtime": 1786799852.3286169, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "ca898e1caffc2764de11b6a10e84d1ea", "semantic_hash": "" }, "docs/audit/phase3-traceability-matrix.md": { "mtime": 1786799852.3449528, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "40cd32ed7fa433342aa547fa5aa21d86", "semantic_hash": "" }, "docs/audit/phase3.1-backlog-review.md": { "mtime": 1786799852.3459527, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "78810767668f7d90e980648ec8c17869", "semantic_hash": "" }, "docs/audit/phase3.1-change-log.md": { "mtime": 1786799852.3469548, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "eed1734c4a6d1d8464dd63f6cbc33e9f", "semantic_hash": "" }, "docs/audit/phase3.2-change-log.md": { "mtime": 1786799852.3479521, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "b13460f1fa8aaecd88bc007a2c5e2ecb", "semantic_hash": "" }, "docs/audit/phase3.2-implementation-readiness.md": { "mtime": 1786799852.3479521, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "ffe4bce7401d65f9d44e8740d3c2ccf6", "semantic_hash": "" }, "frontend/admin-panel/README.md": { "mtime": 1783764561.7789528, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "f6e3faf55d738cf2affe1b44195f27cf", "semantic_hash": "" }, "frontend/admin-panel/index.html": { "mtime": 1783764561.7805586, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "d836c7a6b7be6d5b04a925b7ad32e539", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/A-Iranian-Sans/A-Iranian-Sans/read me!.txt": { "mtime": 1783856792.435855, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "607f9ca43b12868e8880a0d85831a878", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/IranNastaliq/IranNastaliq/read me!.txt": { "mtime": 1783856792.445365, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "607f9ca43b12868e8880a0d85831a878", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/CHANGELOG.md": { "mtime": 1783856792.4546044, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "eaa55e166ec4a6b2ee875b746ef049a0", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md": { "mtime": 1783856792.5025032, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "0e4c260ce354bad51a6a184b5e236424", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/CHANGELOG.md": { "mtime": 1783856792.5480056, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "eeaf2bb0943a16d43493f706d0867d1f", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md": { "mtime": 1783856792.5951552, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "5f851eefeeb4bffff8c5427a289f934d", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/vazirmatn-v33.003/AUTHORS.txt": { "mtime": 1783856792.646666, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "a5c1ec085d5dae2319c659151ffce3f0", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md": { "mtime": 1783856792.6476717, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "e7227ba84ca88111166000065d1bdacb", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/vazirmatn-v33.003/OFL.txt": { "mtime": 1783856792.6486697, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "88985b4355a8a44627dde041f10aba75", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md": { "mtime": 1783856792.6486697, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "e9d11601fc4c77fe3d8d1961d9c5d420", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/vazirmatn-v33.003/\u0631\u0627\u0647\u0646\u0645\u0627.txt": { "mtime": 1783856792.971535, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "975634eaf84a797674b29e99c311f54a", "semantic_hash": "" }, "frontend/application/CLAUDE.md": { "mtime": 1783764561.8667445, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "5c27369b226fcf2be8a6cfe52224e767", "semantic_hash": "" }, "frontend/application/README.md": { "mtime": 1783764561.8673544, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "f15aaa42d5d299d091b1171097ea56ad", "semantic_hash": "" }, "frontend/application/public/fonts/A-Iranian-Sans/A-Iranian-Sans/read me!.txt": { "mtime": 1783856793.098052, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "607f9ca43b12868e8880a0d85831a878", "semantic_hash": "" }, "frontend/application/public/fonts/IranNastaliq/IranNastaliq/read me!.txt": { "mtime": 1783856793.1076603, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "607f9ca43b12868e8880a0d85831a878", "semantic_hash": "" }, "frontend/application/public/fonts/sahel-font-v3.4.0/CHANGELOG.md": { "mtime": 1783856793.1136606, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "eaa55e166ec4a6b2ee875b746ef049a0", "semantic_hash": "" }, "frontend/application/public/fonts/sahel-font-v3.4.0/README.md": { "mtime": 1783856793.1562517, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "0e4c260ce354bad51a6a184b5e236424", "semantic_hash": "" }, "frontend/application/public/fonts/vazirmatn-v33.003/\u0631\u0627\u0647\u0646\u0645\u0627.txt": { "mtime": 1783856793.6680968, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "975634eaf84a797674b29e99c311f54a", "semantic_hash": "" }, "prometheus.yml": { "mtime": 1783764562.0277793, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "45dc28cd8d9656e7141713ece5a7aa2c", "semantic_hash": "" }, "swagger.yml": { "mtime": 1786799852.8920915, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "34b5e7e5e1b19e6e3596ef669f8a0d0d", "semantic_hash": "" }, "canina.pdf": { "mtime": 1785148022.3708115, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "900fb024ec3b91912a512a96c2a0c0a0", "semantic_hash": "" }, "frontend/admin-panel/public/favicon.svg": { "mtime": 1783764561.7978015, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "7e840862161341271697daa99a40d76b", "semantic_hash": "" }, "frontend/admin-panel/public/icons.svg": { "mtime": 1783764561.7993202, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "3b4fcfcf393eca4d264dca4a4663bc37", "semantic_hash": "" }, "frontend/admin-panel/src/assets/hero.png": { "mtime": 1783764561.812863, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "aead493361b27e7510691c5d7072dfc1", "semantic_hash": "" }, "frontend/admin-panel/src/assets/react.svg": { "mtime": 1783764561.8139248, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "f0402b67b6ce880f65666bb49e841696", "semantic_hash": "" }, "frontend/admin-panel/src/assets/vite.svg": { "mtime": 1783764561.8149958, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "9960a24288958394ac50e57ff638b036", "semantic_hash": "" }, "frontend/application/public/assets/images/hero-section-image.png": { "mtime": 1783856793.0950441, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "a9f359cce82a5ab0a24830ed59a33047", "semantic_hash": "" }, "frontend/application/public/file.svg": { "mtime": 1783764562.0162137, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "d09f95206c3fa0bb9bd9fefabfd0ea71", "semantic_hash": "" }, "frontend/application/public/globe.svg": { "mtime": 1783764562.0167208, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "2aaafa6a49b6563925fe440891e32717", "semantic_hash": "" }, "frontend/application/public/next.svg": { "mtime": 1783764562.0182388, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "8e061864f388b47f33a1c3780831193e", "semantic_hash": "" }, "frontend/application/public/vercel.svg": { "mtime": 1783764562.019253, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "c0af2f507b369b085b35ef4bbe3bcf1e", "semantic_hash": "" }, "frontend/application/public/window.svg": { "mtime": 1783764562.019253, - "seen": 1787061607.459049, + "seen": 1787061914.376803, "ast_hash": "a2760511c65806022ad20adf74370ff3", "semantic_hash": "" }, ".claude/settings.json": { "mtime": 1786870552.8419228, "seen": 1787061607.4580417, - "ast_hash": "eefc106119ebd681cf90d199bcdd55d0", + "ast_hash": "", "semantic_hash": "" }, ".agents/rules/graphify.md": { "mtime": 1786870552.830271, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "f1e53ecc9194573d3c28fc116c743a2e", "semantic_hash": "" }, ".agents/workflows/graphify.md": { "mtime": 1786870552.8323984, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "6d73634a678cf1e1c71930adf80bd1f0", "semantic_hash": "" }, "backend/src/payment/dto/initiate-payment.dto.ts": { "mtime": 1786870552.8742464, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "a097fcbb5846e7cd00e7cb2cefc060bb", "semantic_hash": "a097fcbb5846e7cd00e7cb2cefc060bb" }, "backend/src/payment/dto/verify-payment.dto.ts": { "mtime": 1786894580.126858, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "f6db4b79ca261e36334ef84f39b8e87c", "semantic_hash": "f6db4b79ca261e36334ef84f39b8e87c" }, "backend/src/payment/payment.controller.ts": { "mtime": 1786891855.3438442, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "9fd84400d5182ccac226eba14f9e64ed", "semantic_hash": "9fd84400d5182ccac226eba14f9e64ed" }, "backend/src/payment/payment.module.ts": { "mtime": 1786870552.8777573, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "662492e920bf40b388a81951a720680f", "semantic_hash": "662492e920bf40b388a81951a720680f" }, "backend/src/payment/payment.service.ts": { "mtime": 1786892646.0367486, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "3e8f87f412cd79638962d0391c9d0760", "semantic_hash": "3e8f87f412cd79638962d0391c9d0760" }, "backend/src/payment/zibal.service.ts": { "mtime": 1786891855.3500419, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "cb4a2c5211a9e36dd3530ea3c7c92a00", "semantic_hash": "cb4a2c5211a9e36dd3530ea3c7c92a00" }, "frontend/application/app/payment/verify/page.tsx": { "mtime": 1786891855.3560786, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "68d1923f04a3300b7b6dca6023ab357e", "semantic_hash": "68d1923f04a3300b7b6dca6023ab357e" }, "frontend/admin-panel/src/pages/SmsSettingsPage.tsx": { - "mtime": 1786892646.04375, - "seen": 1787061607.4580417, - "ast_hash": "63fa1af3663205792fafa0895e0aa132", - "semantic_hash": "63fa1af3663205792fafa0895e0aa132" + "mtime": 1787061851.0757167, + "seen": 1787061914.3764744, + "ast_hash": "fc5e0b7ad9d038ec1a25fe0d176f0a1d", + "semantic_hash": "" }, "AGENTS.md": { "mtime": 1786870552.8627086, - "seen": 1787061607.4580417, + "seen": 1787061914.376803, "ast_hash": "9b31786b637be3c13978bec4c2330752", "semantic_hash": "" }, "backend/src/payment/dto/admin-transaction-filter.dto.ts": { "mtime": 1786870552.873241, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "2ff5b8eb7f19cf5f6df0415011993b48", "semantic_hash": "2ff5b8eb7f19cf5f6df0415011993b48" }, "frontend/admin-panel/src/pages/Transactions.tsx": { "mtime": 1786894580.1501417, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "5dad685df48f819d8046ec8f03af2ad7", "semantic_hash": "5dad685df48f819d8046ec8f03af2ad7" }, "backend/src/payment/interfaces/payment-gateway.interface.ts": { "mtime": 1786870552.8767512, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "930a5f06cdec431d842bf9b12618eed5", "semantic_hash": "930a5f06cdec431d842bf9b12618eed5" }, "frontend/application/components/catalog/CatalogPageSpread.tsx": { "mtime": 1786885876.9791617, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "ee3ca1b91560e8f0fcf4c3385da4a0e2", "semantic_hash": "ee3ca1b91560e8f0fcf4c3385da4a0e2" }, "frontend/application/components/catalog/FlipbookCatalog.tsx": { "mtime": 1786885876.982162, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "eb46a7868a6b96139ca06b0ef4174dfb", "semantic_hash": "eb46a7868a6b96139ca06b0ef4174dfb" }, "frontend/application/components/catalog/ProductDetailModal.tsx": { "mtime": 1786872121.572482, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "c95d3b01c3b379a6b3fce75788e96e21", "semantic_hash": "c95d3b01c3b379a6b3fce75788e96e21" }, "backend/scripts/generate-openapi.d.ts": { "mtime": 1786883225.7774837, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "e2ebd7ddedcadeeadbf819c35985c768", "semantic_hash": "e2ebd7ddedcadeeadbf819c35985c768" }, "backend/scripts/generate-openapi.js": { "mtime": 1786883225.77912, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "f7c2607fc067b04e7cb7716490ea1169", "semantic_hash": "f7c2607fc067b04e7cb7716490ea1169" }, "backend/src/admin/dto/user.dto.ts": { "mtime": 1786883225.7858465, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "5d8704e9131ff0454131ba7893fb4750", "semantic_hash": "5d8704e9131ff0454131ba7893fb4750" }, "backend/src/admin/ssl.controller.ts": { "mtime": 1786877667.007048, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "f1a968f6a6014c2c28aa5a7b74082068", "semantic_hash": "f1a968f6a6014c2c28aa5a7b74082068" }, "backend/src/admin/ssl.service.ts": { "mtime": 1786877667.0090635, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "55bee4587be36c0aa59bba43d70adcf3", "semantic_hash": "55bee4587be36c0aa59bba43d70adcf3" }, "backend/src/auth/auth.constants.ts": { "mtime": 1786883225.7878554, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "43d939e02d6478415c027585d1e0c7fd", "semantic_hash": "43d939e02d6478415c027585d1e0c7fd" }, "backend/src/common/utils/phone.utils.ts": { "mtime": 1786883225.801396, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "a4c682b767823a624163b9430f1db7d1", "semantic_hash": "a4c682b767823a624163b9430f1db7d1" }, "backend/src/reviews/dto/create-review.dto.ts": { "mtime": 1786944769.513302, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "641d10cd957bc32ec94ac70f67920ce7", "semantic_hash": "641d10cd957bc32ec94ac70f67920ce7" }, "backend/src/reviews/dto/update-review.dto.ts": { "mtime": 1786944769.5153143, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "fdde33c52225e747421e70adce5e47fd", "semantic_hash": "fdde33c52225e747421e70adce5e47fd" }, "backend/src/reviews/reviews.controller.ts": { "mtime": 1786944769.516312, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "25538b0ceb81aa984f9da7ae7cc6d404", "semantic_hash": "25538b0ceb81aa984f9da7ae7cc6d404" }, "backend/src/reviews/reviews.module.ts": { "mtime": 1786944769.5173109, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "7f5cb88dda0a902c24c48edb34647428", "semantic_hash": "7f5cb88dda0a902c24c48edb34647428" }, "backend/src/reviews/reviews.service.ts": { "mtime": 1786944769.518311, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "fb2b6e040095a6c5be85f90ecedfa3e5", "semantic_hash": "fb2b6e040095a6c5be85f90ecedfa3e5" }, "backend/src/settings/default-ui-texts.ts": { "mtime": 1786946249.9614189, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "00a99e61910189d6e6ffd3ffd9177378", "semantic_hash": "00a99e61910189d6e6ffd3ffd9177378" }, "backend/src/settings/dto/sms-log-query.dto.ts": { "mtime": 1786883225.8054564, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "a83913527d36178a2ea1959bafa1056e", "semantic_hash": "a83913527d36178a2ea1959bafa1056e" }, "backend/src/tickets/dto/create-ticket.dto.ts": { "mtime": 1786890779.3192952, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "8176cf810b4908d89c8d1c5b911ebf5f", "semantic_hash": "8176cf810b4908d89c8d1c5b911ebf5f" }, "backend/src/tickets/dto/ticket-query.dto.ts": { "mtime": 1786890779.3192952, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "216462a3e762431ea607ba1ea9188eb3", "semantic_hash": "216462a3e762431ea607ba1ea9188eb3" }, "backend/src/tickets/tickets.controller.ts": { "mtime": 1786890779.3212986, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "c500da7cf819cd122178e64bc08d9c99", "semantic_hash": "c500da7cf819cd122178e64bc08d9c99" }, "backend/src/tickets/tickets.module.ts": { "mtime": 1786890779.3222969, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "0b3e226a18679b4bf37016c27b874ae9", "semantic_hash": "0b3e226a18679b4bf37016c27b874ae9" }, "backend/src/tickets/tickets.service.ts": { "mtime": 1786890779.3232956, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "98c52a5c182544c16c8df166b7d17533", "semantic_hash": "98c52a5c182544c16c8df166b7d17533" }, "frontend/admin-panel/src/pages/Reviews.tsx": { "mtime": 1786944769.5238168, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "df5fdf55da3249b951ca10a8f39e5dd3", "semantic_hash": "df5fdf55da3249b951ca10a8f39e5dd3" }, "frontend/admin-panel/src/pages/SslSettingsPage.tsx": { "mtime": 1786877667.0190136, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "6e48e726f4b6d450e414c3a3b2e9319f", "semantic_hash": "6e48e726f4b6d450e414c3a3b2e9319f" }, "frontend/admin-panel/src/pages/Tickets.tsx": { "mtime": 1786890779.3272989, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "cb9fe819e626f65531d02e58fedeeb18", "semantic_hash": "cb9fe819e626f65531d02e58fedeeb18" }, "frontend/application/components/BannerPlacement.tsx": { "mtime": 1786946249.9719338, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "ee89459c3156c726321a7b1eeeb06ddb", "semantic_hash": "ee89459c3156c726321a7b1eeeb06ddb" }, "frontend/application/components/BrandLogo.tsx": { "mtime": 1786946249.972931, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "87a073812481acdc9c6f6eb771ec53c2", "semantic_hash": "87a073812481acdc9c6f6eb771ec53c2" }, "frontend/application/components/ProductReviews.tsx": { "mtime": 1787048863.6917748, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "814a762e9710ce872a7467ea0dd8e716", "semantic_hash": "" }, "frontend/application/lib/services/ticketService.ts": { "mtime": 1786890779.3409019, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "6fcf9ed78ca9194e01333602a1989947", "semantic_hash": "6fcf9ed78ca9194e01333602a1989947" }, "frontend/admin-panel/src/components/ui/PriceInput.tsx": { "mtime": 1786948119.7711625, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "09a84a9f29f735448d05e4327c0304b3", "semantic_hash": "09a84a9f29f735448d05e4327c0304b3" }, "frontend/admin-panel/src/components/ui/Badge.tsx": { "mtime": 1786954681.8228974, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "de496b3f7b795cbe4c782d8d1204f170", "semantic_hash": "de496b3f7b795cbe4c782d8d1204f170" }, "frontend/admin-panel/src/components/ui/FormField.tsx": { "mtime": 1786954681.823527, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "265c887af876e10153f2ac32844194c2", "semantic_hash": "265c887af876e10153f2ac32844194c2" }, "frontend/admin-panel/src/components/ui/ImagePreviewModal.tsx": { "mtime": 1786954681.824535, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "ada78d41f18a3dcce5e806a2ab252d30", "semantic_hash": "ada78d41f18a3dcce5e806a2ab252d30" }, "frontend/admin-panel/src/components/ui/Input.tsx": { "mtime": 1786954681.825536, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "b3c0b6ae3bec10c6ac070ae60e804e28", "semantic_hash": "b3c0b6ae3bec10c6ac070ae60e804e28" }, "frontend/admin-panel/src/components/ui/Select.tsx": { "mtime": 1786954681.8285375, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "a06e97672e210fdff460252966d2ab09", "semantic_hash": "a06e97672e210fdff460252966d2ab09" }, "frontend/admin-panel/src/components/ui/Textarea.tsx": { "mtime": 1786954681.8285375, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "bbbdbaa3a2aeb68e7e406d555129fb79", "semantic_hash": "bbbdbaa3a2aeb68e7e406d555129fb79" }, "frontend/admin-panel/src/components/ui/ToggleSwitch.tsx": { "mtime": 1786954681.830045, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "f212eaa6017ac07b37356612883b2884", "semantic_hash": "f212eaa6017ac07b37356612883b2884" }, "backend/prisma/tsconfig.json": { "mtime": 1786961195.3002362, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "a12c81b60c5e9fdb3c1aba03ac7ecb27", "semantic_hash": "a12c81b60c5e9fdb3c1aba03ac7ecb27" }, "backend/src/admin/dto/product.dto.ts": { "mtime": 1787040318.6712074, - "seen": 1787061607.4580417, + "seen": 1787061914.3754742, "ast_hash": "df8b0fbefcf3082ceee46389f4c60169", "semantic_hash": "" }, "backend/src/doctors/doctors.controller.ts": { "mtime": 1786971396.0315642, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "db4c90b7c4b73f6dfc584b6ff31e42ed", "semantic_hash": "" }, "backend/src/doctors/doctors.module.ts": { "mtime": 1786971396.0355752, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "6850f9203296ff749b5d7de975d3c6f7", "semantic_hash": "" }, "backend/src/doctors/doctors.service.ts": { "mtime": 1786971396.0385625, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "3b7c637abf68eeda699f02519d9ece13", "semantic_hash": "" }, "frontend/admin-panel/src/pages/DoctorsManager.tsx": { "mtime": 1786971396.0633516, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "84aab57aa9e07ef36d99080abbded324", "semantic_hash": "" }, "frontend/application/components/TestimonialsSection.tsx": { "mtime": 1786972155.9794908, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "4bdc4d79735d27c26470fc59fc05253a", "semantic_hash": "" }, "frontend/application/components/VideoModalPlayer.tsx": { "mtime": 1787061337.6364226, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "dad37eb462b526cd5a70cdd07e3a55ac", "semantic_hash": "" }, "frontend/application/components/PodcastPlayerModal.tsx": { "mtime": 1787055297.1930568, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "987b080b76dba9fcdc3c4d4af6b3a859", "semantic_hash": "" }, "frontend/application/components/PodcastInlinePlayer.tsx": { "mtime": 1787055297.1900518, - "seen": 1787061607.4580417, + "seen": 1787061914.3764744, "ast_hash": "ad5eaef74fa077323eb74e31000ad7d8", "semantic_hash": "" } diff --git a/graphify-out/GRAPH_REPORT.md b/graphify-out/GRAPH_REPORT.md index e6091a2..68f8e07 100644 --- a/graphify-out/GRAPH_REPORT.md +++ b/graphify-out/GRAPH_REPORT.md @@ -1,40 +1,40 @@ # Graph Report - canina (2026-08-18) ## Corpus Check -- 511 files · ~734,987 words +- 513 files · ~735,468 words - Verdict: corpus is large enough that graph structure adds value. ## Summary -- 3638 nodes · 6178 edges · 306 communities (192 shown, 114 thin omitted) +- 3649 nodes · 6191 edges · 315 communities (197 shown, 118 thin omitted) - Extraction: 96% EXTRACTED · 4% INFERRED · 0% AMBIGUOUS · INFERRED: 230 edges (avg confidence: 0.79) - Token cost: 0 input · 0 output ## Graph Freshness -- Built from commit: `16c1ecdf` +- Built from commit: `f430c493` - 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) -- ApiOperation +- OrdersService - productService.ts - CmsController - app.module.ts - reviews.controller.ts - tickets.controller.ts - UserDashboard.tsx -- MediaSelector.tsx +- Spinner.tsx - admin.module.ts - PetProfile.tsx - DoctorsService - useSettingsStore - adminRoutes.tsx - PrismaService -- BlogsController +- .findAll - ProductsService - lib/services/api.ts - CreateVideoDto - src/services/api.ts -- pets/pets.controller.ts +- auth.service.ts - BE-001 - Roles - FE-001 @@ -58,13 +58,13 @@ - SslController - PodcastPlayerModal.tsx - IngredientsService -- RedisService +- AuthService - MediaController -- Pagination.tsx +- Transactions.tsx - SmsService -- OrdersService -- PrescriptionsService -- SmartAdvisorService +- OrdersController +- PrescriptionsController +- SmartAdvisorController - TestimonialsService - Role & Core Objective - ContactService @@ -73,7 +73,7 @@ - Media.tsx - compilerOptions - PetsController -- PaginationDto +- BlogsController - dependencies - compilerOptions - HomeClient.tsx @@ -85,7 +85,7 @@ - Operational Rules & Boundaries - Operational Rules & Boundaries - WikiController -- AdminQueryDto +- ApiOperation - PetsController - seo.module.ts - admin.service.ts @@ -113,15 +113,15 @@ - Operational Rules & Boundaries - exclude - jest -- AdminController +- AdminService - Comprehensive Change Log - Operational Rules & Boundaries -- AdminService +- Body - devDependencies - ProductDto -- auth.controller.ts +- .adminLogin - 1. Summary of Integrity Repairs Performed -- BlogsService +- PaginationDto - Operational Rules & Boundaries - Operational Rules & Boundaries - Operational Rules & Boundaries @@ -156,11 +156,11 @@ - InitiatePaymentDto - System Discovery - Product Requirement Document (PRD) -- WikiController +- pagination.dto.ts - globals - @nestjs/cli - Baseline Command Plan & Reconciled Command History -- Spinner.tsx +- SmsSettingsPage.tsx - ErrorPages.tsx - with-vpn.sh - Architecture Specification @@ -189,7 +189,7 @@ - 🎨 Frontend & Admin Panel Technical Review (06_dev_frontend) - 🚀 SEO & Content Strategy Review (12_seo_content) - @types/node -- ZibalCallbackQueryDto +- .handleZibalCallback - seed-ui-texts.ts - seed-wiki.ts - update-blog.dto.ts @@ -247,7 +247,7 @@ - eslint-plugin-react-refresh - @tailwindcss/postcss - typescript -- @nestjs/core +- RegisterDto - @testing-library/react - @types/react - typescript @@ -258,7 +258,7 @@ - ts-loader - passport-jwt - @types/bcrypt -- MetricsController +- RedisService - blog.entity.ts - home.entity.ts - wiki.entity.ts @@ -305,7 +305,16 @@ - @types/bcryptjs - typescript-eslint - @eslint/eslintrc +- RouteErrorBoundary +- .findAll +- AdminLoginDto +- VerifyOtpDto +- .deleteScientificTerm +- PetsService +- AuthController - tailwindcss +- ValidateCouponDto +- reflect-metadata ## God Nodes (most connected - your core abstractions) 1. `PrismaService` - 81 edges @@ -340,11 +349,11 @@ - **Rastikerdar Font Ecosystem** — frontend_application_public_fonts_shabnam_font_v5_0_1_readme, frontend_application_public_fonts_vazirmatn_v33_003_readme, vazir_font [EXTRACTED 0.95] - **Canina Deployment Stack** — scripts_compose_prod, scripts_compose_stage [EXTRACTED 1.00] -## Communities (306 total, 114 thin omitted) +## Communities (315 total, 118 thin omitted) -### Community 0 - "ApiOperation" -Cohesion: 0.16 -Nodes (3): ApiOperation, Body, Put +### Community 0 - "OrdersService" +Cohesion: 0.12 +Nodes (15): CreateOrderDto, OrderItemDto, ApiProperty, ApiPropertyOptional, IsArray, IsNotEmpty, IsNumber, IsOptional (+7 more) ### Community 1 - "productService.ts" Cohesion: 0.06 @@ -356,7 +365,7 @@ Nodes (24): CmsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controlle ### Community 3 - "app.module.ts" Cohesion: 0.08 -Nodes (32): B2BModule, Module, BannersModule, Module, CmsModule, Module, SmsModule, Global (+24 more) +Nodes (31): B2BModule, Module, BannersModule, Module, CmsModule, Module, SmsModule, Global (+23 more) ### Community 4 - "reviews.controller.ts" Cohesion: 0.07 @@ -364,43 +373,43 @@ Nodes (31): CreateReviewDto, ApiProperty, IsInt, IsNotEmpty, IsOptional, IsStrin ### Community 5 - "tickets.controller.ts" Cohesion: 0.09 -Nodes (29): AdminUpdateTicketDto, CreateTicketDto, ReplyTicketDto, ApiProperty, ApiPropertyOptional, IsNotEmpty, IsOptional, IsString (+21 more) +Nodes (31): AdminUpdateTicketDto, CreateTicketDto, ReplyTicketDto, ApiProperty, ApiPropertyOptional, IsNotEmpty, IsOptional, IsString (+23 more) ### Community 6 - "UserDashboard.tsx" Cohesion: 0.09 Nodes (28): VerifyContent(), AddressModal(), AddressModalProps, BackButton(), BackButtonProps, DeleteConfirmModal(), DeleteConfirmModalProps, HeaderButton() (+20 more) -### Community 7 - "MediaSelector.tsx" -Cohesion: 0.08 -Nodes (25): ConfirmModal(), ConfirmModalProps, getFileType(), Media, MediaSelector(), MediaSelectorProps, BlogPost, Category (+17 more) +### Community 7 - "Spinner.tsx" +Cohesion: 0.11 +Nodes (22): ConfirmModal(), ConfirmModalProps, getFileType(), Media, MediaSelector(), MediaSelectorProps, Pagination(), PaginationProps (+14 more) ### Community 8 - "admin.module.ts" -Cohesion: 0.06 -Nodes (21): AdminModule, Module, PetQuery, PetsService, Injectable, ReportsController, ApiBearerAuth, ApiOperation (+13 more) +Cohesion: 0.07 +Nodes (17): AdminModule, Module, BlogQuery, BlogsService, Injectable, ReportsController, ApiBearerAuth, ApiOperation (+9 more) ### Community 9 - "PetProfile.tsx" Cohesion: 0.14 Nodes (12): FeaturedProducts(), OrderRowSkeleton(), PetProfileSkeleton(), ProductCardSkeleton(), Skeleton(), SkeletonProps, mockProducts, HealthLog (+4 more) ### Community 10 - "DoctorsService" -Cohesion: 0.12 -Nodes (16): DoctorsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+8 more) +Cohesion: 0.13 +Nodes (15): DoctorsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+7 more) ### Community 11 - "useSettingsStore" Cohesion: 0.14 Nodes (14): metadata, BrandLogo(), BrandLogoProps, EnamadBadge(), Footer(), Hero(), StatCounter(), MaintenancePage() (+6 more) ### Community 12 - "adminRoutes.tsx" -Cohesion: 0.10 -Nodes (14): App(), ContactInfoItem, ContactSubmission, CategoryDist, DashboardData, Ticket, TicketMessage, WholesaleRequest (+6 more) +Cohesion: 0.06 +Nodes (25): App(), ContactInfoItem, ContactSubmission, CategoryDist, DashboardData, SslStatus, Ticket, TicketMessage (+17 more) ### Community 13 - "PrismaService" -Cohesion: 0.08 -Nodes (17): AdminLoginInput, LoginInput, RegisterInput, MeliPayamakPattern, MeliPayamakResponse, SendPatternSmsOptions, SmsConfig, CreateContactSubmissionDto (+9 more) +Cohesion: 0.07 +Nodes (20): PetQuery, WikiQuery, B2BWholesaleOrderItem, MeliPayamakPattern, MeliPayamakResponse, SendPatternSmsOptions, SmsConfig, CreateContactSubmissionDto (+12 more) -### Community 14 - "BlogsController" -Cohesion: 0.21 -Nodes (9): BlogsController, ApiNotFoundResponse, ApiOkResponse, ApiOperation, ApiTags, Controller, Get, Param (+1 more) +### Community 14 - ".findAll" +Cohesion: 0.32 +Nodes (6): ApiNotFoundResponse, ApiOkResponse, ApiOperation, Get, Param, Query ### Community 15 - "ProductsService" Cohesion: 0.09 @@ -412,23 +421,23 @@ Nodes (18): metadata, ContactFormClient(), ContactInfoItem, Testimonial, Testimo ### Community 17 - "CreateVideoDto" Cohesion: 0.07 -Nodes (31): CreateVideoDto, ApiProperty, ApiPropertyOptional, IsBoolean, IsNotEmpty, IsOptional, IsString, UpdateVideoDto (+23 more) +Nodes (32): CreateVideoDto, ApiProperty, ApiPropertyOptional, IsBoolean, IsNotEmpty, IsOptional, IsString, UpdateVideoDto (+24 more) ### Community 18 - "src/services/api.ts" -Cohesion: 0.10 -Nodes (23): ProtectedRoute(), SEARCHABLE_PAGES, Topbar(), TopbarProps, Login(), B2BManager, SmartAdvisorManager, SystemSettingsPage (+15 more) +Cohesion: 0.08 +Nodes (28): ProtectedRoute(), SEARCHABLE_PAGES, Topbar(), TopbarProps, Login(), B2BManager, SeoSettingsPage, SmartAdvisorManager (+20 more) -### Community 19 - "pets/pets.controller.ts" -Cohesion: 0.12 -Nodes (15): CreatePetDto, ApiProperty, ApiPropertyOptional, IsArray, IsNotEmpty, IsNumber, IsOptional, IsString (+7 more) +### Community 19 - "auth.service.ts" +Cohesion: 0.14 +Nodes (13): AdminLoginInput, LoginInput, RegisterInput, LoginDto, ApiProperty, IsNotEmpty, IsString, MinLength (+5 more) ### Community 20 - "BE-001" Cohesion: 0.06 Nodes (32): Acceptance Criteria, Affected Application, Affected Files, Alternative Direction, BE-001, Category, Completion Statement, Confidence (+24 more) ### Community 21 - "Roles" -Cohesion: 0.21 -Nodes (15): Roles(), SettingsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete (+7 more) +Cohesion: 0.20 +Nodes (15): Roles(), SettingsController, ApiBearerAuth, ApiOkResponse, ApiOperation, ApiTags, Body, Controller (+7 more) ### Community 22 - "FE-001" Cohesion: 0.06 @@ -463,11 +472,11 @@ Cohesion: 0.14 Nodes (14): ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Get, Param, Post (+6 more) ### Community 30 - "main.ts" -Cohesion: 0.14 -Nodes (9): CustomHttpExceptionFilter, Catch, PrismaExceptionFilter, Catch, DecimalInterceptor, Injectable, ApiErrorResponse, ErrorDetailField (+1 more) +Cohesion: 0.11 +Nodes (11): AppModule, Module, CustomHttpExceptionFilter, Catch, PrismaExceptionFilter, Catch, DecimalInterceptor, Injectable (+3 more) ### Community 31 - "JwtAuthGuard" -Cohesion: 0.20 +Cohesion: 0.19 Nodes (7): JwtAuthGuard, Injectable, ROLES_KEY, RequestWithUser, RolesGuard, Injectable, UserReqPayload ### Community 32 - "ZibalService" @@ -483,8 +492,8 @@ Cohesion: 0.09 Nodes (17): CategoriesController, ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Body, Controller, Delete (+9 more) ### Community 35 - "B2BService" -Cohesion: 0.13 -Nodes (15): B2BController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Get, Param (+7 more) +Cohesion: 0.14 +Nodes (14): B2BController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Get, Param (+6 more) ### Community 36 - "What You Must Do When Invoked" Cohesion: 0.07 @@ -511,32 +520,28 @@ Cohesion: 0.40 Nodes (3): PLAYBACK_RATES, PodcastPlayerModal(), PodcastPlayerModalProps ### Community 42 - "IngredientsService" -Cohesion: 0.13 +Cohesion: 0.12 Nodes (14): IngredientsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+6 more) -### Community 43 - "RedisService" -Cohesion: 0.09 -Nodes (7): AppModule, Module, AuthService, Injectable, normalizeMobile(), RedisService, Injectable - ### Community 44 - "MediaController" Cohesion: 0.11 Nodes (16): MediaController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+8 more) -### Community 45 - "Pagination.tsx" +### Community 45 - "Transactions.tsx" +Cohesion: 0.33 +Nodes (4): GatewayHealth, Stats, Transaction, Transactions + +### Community 47 - "OrdersController" Cohesion: 0.13 -Nodes (11): Pagination(), PaginationProps, Pet, GatewayHealth, Stats, Transaction, ProductItem, WikiTerm (+3 more) +Nodes (16): OrdersController, ApiBadRequestResponse, ApiBearerAuth, ApiCreatedResponse, ApiNotFoundResponse, ApiOkResponse, ApiOperation, ApiTags (+8 more) -### Community 47 - "OrdersService" -Cohesion: 0.07 -Nodes (29): CreateOrderDto, OrderItemDto, ApiProperty, ApiPropertyOptional, IsArray, IsNotEmpty, IsNumber, IsOptional (+21 more) +### Community 48 - "PrescriptionsController" +Cohesion: 0.16 +Nodes (12): PrescriptionsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Get, Param (+4 more) -### Community 48 - "PrescriptionsService" +### Community 49 - "SmartAdvisorController" Cohesion: 0.14 -Nodes (14): PrescriptionsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Get, Param (+6 more) - -### Community 49 - "SmartAdvisorService" -Cohesion: 0.13 -Nodes (14): SmartAdvisorController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+6 more) +Nodes (12): SmartAdvisorController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+4 more) ### Community 50 - "TestimonialsService" Cohesion: 0.13 @@ -551,8 +556,8 @@ Cohesion: 0.13 Nodes (11): ContactController, Body, Controller, Get, Param, Post, Put, Query (+3 more) ### Community 53 - "PaymentController" -Cohesion: 0.20 -Nodes (17): PaymentController, ApiBadRequestResponse, ApiBearerAuth, ApiOkResponse, ApiOperation, ApiTags, Body, Controller (+9 more) +Cohesion: 0.25 +Nodes (13): PaymentController, ApiBadRequestResponse, ApiBearerAuth, ApiOkResponse, ApiOperation, ApiTags, Body, Controller (+5 more) ### Community 54 - "compilerOptions" Cohesion: 0.06 @@ -570,13 +575,13 @@ Nodes (23): compilerOptions, allowImportingTsExtensions, erasableSyntaxOnly, jsx Cohesion: 0.15 Nodes (11): PetsController, ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Controller, Delete, Get (+3 more) -### Community 58 - "PaginationDto" -Cohesion: 0.08 -Nodes (19): BlogsModule, Module, BlogsService, Injectable, PaginationDto, SortOrder, ApiPropertyOptional, IsEnum (+11 more) +### Community 58 - "BlogsController" +Cohesion: 0.20 +Nodes (7): BlogsController, ApiTags, Controller, BlogsModule, Module, BlogsService, Injectable ### Community 59 - "dependencies" Cohesion: 0.10 -Nodes (21): dependencies, bcrypt, class-transformer, class-validator, ioredis, @nestjs/common, @nestjs/passport, @nestjs/platform-express (+13 more) +Nodes (21): dependencies, bcrypt, class-transformer, class-validator, ioredis, @nestjs/common, @nestjs/core, @nestjs/passport (+13 more) ### Community 60 - "compilerOptions" Cohesion: 0.10 @@ -591,11 +596,11 @@ Cohesion: 0.13 Nodes (15): BlogsController, ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Body, Controller, Delete (+7 more) ### Community 63 - "SettingsService" -Cohesion: 0.09 -Nodes (4): SmsLogQuery, ApiOkResponse, SettingsService, Injectable +Cohesion: 0.11 +Nodes (3): SmsLogQuery, SettingsService, Injectable ### Community 64 - "BannersService" -Cohesion: 0.13 +Cohesion: 0.12 Nodes (15): BannersController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+7 more) ### Community 65 - "Required Review Group Closures" @@ -603,8 +608,8 @@ 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) ### Community 66 - "Coupons.tsx" -Cohesion: 0.12 -Nodes (14): formatPriceWithCommas(), PriceInput(), PriceInputProps, toEnglishDigits(), Coupon, CouponFormData, CouponModalProps, CouponTarget (+6 more) +Cohesion: 0.13 +Nodes (12): formatPriceWithCommas(), PriceInput(), PriceInputProps, toEnglishDigits(), Coupon, CouponFormData, CouponModalProps, CouponTarget (+4 more) ### Community 67 - "Operational Rules & Boundaries" Cohesion: 0.11 @@ -618,21 +623,21 @@ Nodes (18): 1. Framework-Aware Analysis, 2. DOM & Semantic Structure Analysis, 3 Cohesion: 0.13 Nodes (14): ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Body, Controller, Delete, Get (+6 more) -### Community 70 - "AdminQueryDto" -Cohesion: 0.16 -Nodes (7): ApiQuery, Get, Query, AdminQueryDto, ApiPropertyOptional, IsOptional, IsString +### Community 70 - "ApiOperation" +Cohesion: 0.13 +Nodes (8): ApiOperation, ApiQuery, Get, Query, AdminQueryDto, ApiPropertyOptional, IsOptional, IsString ### Community 71 - "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 72 - "seo.module.ts" Cohesion: 0.16 Nodes (10): SeoController, ApiOperation, ApiTags, Controller, Get, Param, SeoModule, Module (+2 more) ### Community 73 - "admin.service.ts" -Cohesion: 0.20 -Nodes (13): CouponInput, CouponTargetInput, PaginationQuery, CreateUserDto, ApiProperty, ApiPropertyOptional, IsEmail, IsNotEmpty (+5 more) +Cohesion: 0.17 +Nodes (14): CouponInput, CouponTargetInput, PaginationQuery, CreateUserDto, ApiProperty, ApiPropertyOptional, IsEmail, IsNotEmpty (+6 more) ### Community 74 - "🏢 AI Software Agency — Master Orchestration Protocol v3" Cohesion: 0.11 @@ -667,8 +672,8 @@ Cohesion: 0.13 Nodes (15): devDependencies, eslint, jsdom, tailwindcss, @tailwindcss/postcss, @types/node, @types/react-dom, @vitejs/plugin-react (+7 more) ### Community 82 - "api" -Cohesion: 0.29 -Nodes (6): Layout(), MenuGroup, Sidebar(), SidebarProps, SubMenuItem, api +Cohesion: 0.12 +Nodes (13): Layout(), MenuGroup, Sidebar(), SidebarProps, SubMenuItem, HeroBanner, VetTestimonial, ProductReview (+5 more) ### Community 83 - "Orders.tsx" Cohesion: 0.14 @@ -730,9 +735,9 @@ Nodes (8): exclude, extends, dist, node_modules, prisma, **/*spec.ts, test, ./ts Cohesion: 0.15 Nodes (13): jest, collectCoverageFrom, coverageDirectory, moduleFileExtensions, rootDir, testEnvironment, testRegex, transform (+5 more) -### Community 98 - "AdminController" -Cohesion: 0.17 -Nodes (7): AdminController, ApiBearerAuth, ApiTags, Controller, Delete, Param, UseGuards +### Community 98 - "AdminService" +Cohesion: 0.12 +Nodes (10): AdminController, ApiBearerAuth, ApiTags, Controller, Delete, Param, Put, UseGuards (+2 more) ### Community 99 - "Comprehensive Change Log" Cohesion: 0.15 @@ -742,10 +747,6 @@ Nodes (12): 10. `TASK-VERIFY-001`, 1. `TASK-SEC-001`, 2. `TASK-SEC-002`, 3. `TAS 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 101 - "AdminService" -Cohesion: 0.22 -Nodes (3): Post, AdminService, Injectable - ### Community 102 - "devDependencies" Cohesion: 0.22 Nodes (9): devDependencies, eslint-plugin-prettier, @types/passport-jwt, @types/supertest, typescript, typescript, eslint-plugin-prettier, @types/passport-jwt (+1 more) @@ -754,17 +755,17 @@ Nodes (9): devDependencies, eslint-plugin-prettier, @types/passport-jwt, @types/ Cohesion: 0.22 Nodes (7): ProductDto, ApiPropertyOptional, IsArray, IsBoolean, IsNumber, IsOptional, IsString -### Community 104 - "auth.controller.ts" -Cohesion: 0.06 -Nodes (42): AuthController, ApiBadRequestResponse, ApiBearerAuth, ApiOkResponse, ApiOperation, ApiTags, Body, Controller (+34 more) +### Community 104 - ".adminLogin" +Cohesion: 0.34 +Nodes (9): ApiBadRequestResponse, ApiBearerAuth, ApiOkResponse, ApiOperation, Body, Post, Req, UseGuards (+1 more) ### Community 105 - "1. Summary of Integrity Repairs Performed" Cohesion: 0.17 Nodes (11): 1.1 Authoritative Source File Inventory Rebuilt, 1.2 Raw Finding Dispositions Reconciled, 1.3 Finding Identifier Normalization, 1.4 Rejected Finding Cleanup, 1. Summary of Integrity Repairs Performed, 2. Final Verified Finding Metrics, 3. Reference and Compiler Integrity Results, 4. Quality Gate Conclusion (+3 more) -### Community 106 - "BlogsService" -Cohesion: 0.22 -Nodes (3): BlogQuery, BlogsService, Injectable +### Community 106 - "PaginationDto" +Cohesion: 0.20 +Nodes (8): PaginationDto, ApiPropertyOptional, IsEnum, IsInt, IsOptional, IsString, Min, Type ### Community 107 - "Operational Rules & Boundaries" Cohesion: 0.18 @@ -879,7 +880,7 @@ Cohesion: 0.25 Nodes (6): app_module_1, core_1, fs, path, swagger_1, yaml ### Community 137 - "AdminTransactionFilterDto" -Cohesion: 0.22 +Cohesion: 0.25 Nodes (7): AdminTransactionFilterDto, ApiPropertyOptional, IsIn, IsNumber, IsOptional, IsString, Type ### Community 138 - "InitiatePaymentDto" @@ -894,17 +895,17 @@ Nodes (7): Active Core Applications, Current Architecture, Evidence-Based Status 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) -### Community 141 - "WikiController" -Cohesion: 0.13 -Nodes (13): ApiNotFoundResponse, ApiOkResponse, ApiOperation, ApiTags, Controller, Get, Param, Query (+5 more) +### Community 141 - "pagination.dto.ts" +Cohesion: 0.17 +Nodes (8): SortOrder, ApiTags, Controller, WikiController, Module, WikiModule, Injectable, WikiService ### Community 144 - "Baseline Command Plan & Reconciled Command History" Cohesion: 0.29 Nodes (6): Attempted Command Execution Log, Backend `backend/package.json` Scripts, Baseline Command Plan & Reconciled Command History, Package Scripts Safety Analysis, Permitted Safe Checks for Phase 2, Root `package.json` Scripts -### Community 145 - "Spinner.tsx" -Cohesion: 0.10 -Nodes (15): Spinner(), ProductReview, Reviews(), toPersianDigits(), PatternItem, SmsConfigState, SmsLogItem, SmsLogStats (+7 more) +### Community 145 - "SmsSettingsPage.tsx" +Cohesion: 0.29 +Nodes (5): PatternItem, SmsConfigState, SmsLogItem, SmsLogStats, SmsSettingsPage ### Community 147 - "with-vpn.sh" Cohesion: 0.62 @@ -998,9 +999,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 174 - "ZibalCallbackQueryDto" -Cohesion: 0.40 -Nodes (4): ApiPropertyOptional, IsOptional, IsString, ZibalCallbackQueryDto +### Community 174 - ".handleZibalCallback" +Cohesion: 0.24 +Nodes (8): ApiPropertyOptional, IsOptional, IsString, ZibalCallbackQueryDto, Query, Res, Headers, Ip ### Community 180 - "graphify reference: add a URL and watch a folder" Cohesion: 0.50 @@ -1046,29 +1047,57 @@ 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 243 - "MetricsController" +### Community 232 - "RegisterDto" +Cohesion: 0.22 +Nodes (8): RegisterDto, ApiProperty, ApiPropertyOptional, IsEmail, IsNotEmpty, IsOptional, IsString, MinLength + +### Community 243 - "RedisService" +Cohesion: 0.10 +Nodes (10): ApiExcludeController, MetricsController, Controller, Get, Res, RedisModule, Global, Module (+2 more) + +### Community 305 - "RouteErrorBoundary" +Cohesion: 0.22 +Nodes (3): Props, RouteErrorBoundary, State + +### Community 306 - ".findAll" +Cohesion: 0.32 +Nodes (6): ApiNotFoundResponse, ApiOkResponse, ApiOperation, Get, Param, Query + +### Community 307 - "AdminLoginDto" Cohesion: 0.29 -Nodes (5): ApiExcludeController, MetricsController, Controller, Get, Res +Nodes (6): AdminLoginDto, ApiProperty, IsEmail, IsNotEmpty, IsString, MinLength + +### Community 308 - "VerifyOtpDto" +Cohesion: 0.33 +Nodes (6): ApiProperty, IsNotEmpty, IsString, Matches, VerifyOtpDto, Length + +### Community 311 - "AuthController" +Cohesion: 0.40 +Nodes (3): AuthController, ApiTags, Controller + +### Community 313 - "ValidateCouponDto" +Cohesion: 0.50 +Nodes (4): IsNotEmpty, IsNumber, IsString, ValidateCouponDto ## Knowledge Gaps -- **1240 isolated node(s):** `$schema`, `collection`, `sourceRoot`, `deleteOutDir`, `name` (+1235 more) +- **1242 isolated node(s):** `$schema`, `collection`, `sourceRoot`, `deleteOutDir`, `name` (+1237 more) These have ≤1 connection - possible missing edges or undocumented components. -- **114 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. ## Suggested Questions _Questions this graph is uniquely positioned to answer:_ -- **Why does `Roles()` connect `Roles` to `BannersService`, `CmsController`, `B2BService`, `reviews.controller.ts`, `tickets.controller.ts`, `SslController`, `IngredientsService`, `ProductsService`, `PrescriptionsService`, `SmartAdvisorService`, `TestimonialsService`, `ContactService`, `PaymentController`, `WholesaleService`, `JwtAuthGuard`?** +- **Why does `Roles()` connect `Roles` to `BannersService`, `CmsController`, `B2BService`, `reviews.controller.ts`, `tickets.controller.ts`, `SslController`, `IngredientsService`, `ProductsService`, `PrescriptionsController`, `SmartAdvisorController`, `TestimonialsService`, `ContactService`, `PaymentController`, `.deleteScientificTerm`, `WholesaleService`, `JwtAuthGuard`?** _High betweenness centrality (0.051) - this node is a cross-community bridge._ -- **Why does `ApiResponse` connect `src/services/api.ts` to `UsersService`, `PetsController`, `auth.controller.ts`, `WikiController`, `BlogsController`, `OrdersService`, `HomeController`, `ProductsService`?** - _High betweenness centrality (0.038) - this node is a cross-community bridge._ -- **Why does `JwtAuthGuard` connect `JwtAuthGuard` to `CmsController`, `reviews.controller.ts`, `tickets.controller.ts`, `UsersService`, `admin.module.ts`, `admin.service.ts`, `BlogsService`, `auth.controller.ts`, `DoctorsService`, `CreateVideoDto`, `pets/pets.controller.ts`, `PaginationDto`?** +- **Why does `ApiResponse` connect `src/services/api.ts` to `UsersService`, `PetsController`, `pagination.dto.ts`, `OrdersController`, `HomeController`, `ProductsService`, `AuthController`, `BlogsController`?** + _High betweenness centrality (0.039) - this node is a cross-community bridge._ +- **Why does `JwtAuthGuard` connect `JwtAuthGuard` to `OrdersService`, `CategoriesController`, `CmsController`, `app.module.ts`, `reviews.controller.ts`, `tickets.controller.ts`, `PetsController`, `admin.module.ts`, `admin.service.ts`, `UsersService`, `MediaController`, `ProductsService`, `CreateVideoDto`, `auth.service.ts`?** _High betweenness centrality (0.024) - this node is a cross-community bridge._ - **What connects `$schema`, `collection`, `sourceRoot` to the rest of the system?** - _1240 weakly-connected nodes found - possible documentation gaps or missing edges._ + _1242 weakly-connected nodes found - possible documentation gaps or missing edges._ +- **Should `OrdersService` be split into smaller, more focused modules?** + _Cohesion score 0.12307692307692308 - nodes in this community are weakly interconnected._ - **Should `productService.ts` be split into smaller, more focused modules?** _Cohesion score 0.05888376856118792 - nodes in this community are weakly interconnected._ - **Should `CmsController` be split into smaller, more focused modules?** - _Cohesion score 0.0899854862119013 - nodes in this community are weakly interconnected._ -- **Should `app.module.ts` be split into smaller, more focused modules?** - _Cohesion score 0.0797872340425532 - nodes in this community are weakly interconnected._ \ No newline at end of file + _Cohesion score 0.0899854862119013 - 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 7019273..73f198f 100644 --- a/graphify-out/cache/stat-index.json +++ b/graphify-out/cache/stat-index.json @@ -1 +1 @@ -{".ai_agency/AGENCY.md":{"size":8757,"mtime_ns":1785148021979607300,"indexed_at_ns":1786863693890454700,"word_count":1161,"hashes":{".ai_agency/agency.md":"88c7c13583a91fc7e41ce055fede9dce20f181e8d264557808989965e83a9030"}},".ai_agency/agents/00_intake.md":{"size":3819,"mtime_ns":1785148021984319000,"indexed_at_ns":1786863693892455200,"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":1786863693894964400,"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":1786863693896964700,"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":1786863693898470300,"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":1786863693899999300,"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":1786863693901997700,"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":1786863693902997800,"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":1786863693905070800,"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":1786863693907111900,"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":1786863693908113400,"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":1786863693910113400,"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":1786863693912113300,"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":1786863693913112900,"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":1786863693914617900,"word_count":34,"hashes":{".ai_agency/memory/agent_outputs/readme.txt":"49b19b781e865081a74a0a87282e6c266e373f443a79e0758ef60a6e644c6e04"}},".ai_agency/memory/backlog.json":{"size":10711,"mtime_ns":1785330750958890900,"indexed_at_ns":1786863680433252400,"word_count":981,"hashes":{".ai_agency/memory/backlog.json":"6bf3150a1877d03d03b368df21b84071381b1bb8cd03e3721fa9f8e6c38355be"}},".ai_agency/memory/scratchpad.md":{"size":1879,"mtime_ns":1785148022065114400,"indexed_at_ns":1786863693916623700,"word_count":249,"hashes":{".ai_agency/memory/scratchpad.md":"9d0f687cf8e95c6335f1efb070da8029878417c28117e3b89aa8536ad70a5b95"}},".ai_agency/memory/state.json":{"size":3654,"mtime_ns":1785330750963913800,"indexed_at_ns":1786863680437228800,"word_count":254,"hashes":{".ai_agency/memory/state.json":"1204676f8f295d89733888bb87936061b7a700df0cc936fbf08fd5269b534e8d"}},".ai_agency/orchestrate.py":{"size":6800,"mtime_ns":1785148022072662500,"indexed_at_ns":1786863680437736800,"word_count":644,"hashes":{".ai_agency/orchestrate.py":"90ec787fdd4c71f5203c56b6899aadcc26e6e0bad0cc576d2f982aa42eed42e1"}},".ai_agency/specs/api_contract.md":{"size":1515,"mtime_ns":1785148022077664900,"indexed_at_ns":1786863693918623100,"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":1786863693919623000,"word_count":99,"hashes":{".ai_agency/specs/architecture_spec.md":"6269043f6a144e8ac86ff1db7e014075185e5675a4a0ee23e99e70d88253b8af"}},".ai_agency/specs/prd.md":{"size":724,"mtime_ns":1785148022087251600,"indexed_at_ns":1786863693921188600,"word_count":96,"hashes":{".ai_agency/specs/prd.md":"1c6d5a0ec8a709a2b3aed28225f5fe148ad2d75851d45699187678d055947b11"}},".ai_agency/specs/project_health.md":{"size":444,"mtime_ns":1785148022098314600,"indexed_at_ns":1786863693923194300,"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":1786863693924698200,"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":1786863693926808400,"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":1786863693927808600,"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":1786863693929808600,"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":1786863693931808300,"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":1786863693932808200,"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":1786863693934808700,"word_count":150,"hashes":{".ai_agency/specs/reviews/ux_review.md":"b8a52f324e36fcc2d046cc903a05903057098a67a397ae6442d6c825091f4513"}},".claude/CLAUDE.md":{"size":226,"mtime_ns":1786870552838920200,"indexed_at_ns":1786877281839080500,"word_count":29,"hashes":{".claude/claude.md":"c6f7fc2f062904d246b700d446ba3ad03e77f41809b12eccfb5e090a11f4fad2"}},".claude/settings.json":{"size":479,"mtime_ns":1786870552841922800,"indexed_at_ns":1786877281619276700,"word_count":38,"hashes":{".claude/settings.json":"0aaafba2cbd7dd67f7d69fa2f01b747c9a72f56ee421a40825521f937caec82b"}},".claude/skills/graphify/SKILL.md":{"size":43292,"mtime_ns":1786870552845041000,"indexed_at_ns":1786877281840080600,"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":1786877281845602600,"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":1786877281848603000,"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":1786877281853109000,"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":1786877281857115900,"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":1786877281861116300,"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":1786877281864628400,"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":1786877281868248500,"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":1786877281872254900,"word_count":1196,"hashes":{".claude/skills/graphify/references/update.md":"0249cd6ceae6effdfc7371b51d00c462f51d95700101dcedd36255bab1b4ce7a"}},".gitea/scripts/with-vpn.sh":{"size":1794,"mtime_ns":1786799852126316200,"indexed_at_ns":1786863680441317700,"word_count":208,"hashes":{".gitea/scripts/with-vpn.sh":"9ec013d142e3cf5d7e5f09778fcb06b4b8ea7b394688f9f40b5e74298c76bcf0"}},".gitea/workflows/deploy.yml":{"size":705,"mtime_ns":1786799852129314900,"indexed_at_ns":1786863693953204100,"word_count":66,"hashes":{".gitea/workflows/deploy.yml":"16db5d3c44a232a7d06f48cd831f0029888fe09d01e077f8baa6179418de97c9"}},"BACKEND_INTEGRATION.md":{"size":15568,"mtime_ns":1786885876768825200,"indexed_at_ns":1786946194589947100,"word_count":1521,"hashes":{"backend_integration.md":"e2c5f48210f3f73ee2e2cbf9ac4bc2c487139573cbdc21a6c67cd13b2e8bd099"}},"CLAUDE.md":{"size":772,"mtime_ns":1786870552863710100,"indexed_at_ns":1786877281878765800,"word_count":106,"hashes":{"claude.md":"3612256e7473a2e5f67ef4778d4edeefb44794ef22bac5529bee9c87dc5d8f3d"}},"DATABASE_SCHEMA.md":{"size":15399,"mtime_ns":1786885876771342200,"indexed_at_ns":1786946194590946100,"word_count":1566,"hashes":{"database_schema.md":"60b4b0f4fd1468ab0eb26e4313c138c480f6f280b5c96ff4c0ee89f43ec531b8"}},"README.md":{"size":13117,"mtime_ns":1786885876775371800,"indexed_at_ns":1786946194591944700,"word_count":1310,"hashes":{"readme.md":"f6f40be609ed2adbc246437841b7b90d5506064a7f7a6babbf8195efdad3597d"}},"backend/README.md":{"size":5028,"mtime_ns":1783764561601382400,"indexed_at_ns":1786863693961627700,"word_count":472,"hashes":{"backend/readme.md":"c3edfd26252566ef2ddee12c91a874b59e03a1656894d3db25209a0e4031010a"}},"backend/eslint.config.mjs":{"size":1301,"mtime_ns":1786799852134389200,"indexed_at_ns":1786863534431014600,"word_count":86},"backend/nest-cli.json":{"size":171,"mtime_ns":1783764561602717300,"indexed_at_ns":1786863680442315200,"word_count":13,"hashes":{"backend/nest-cli.json":"bc5d809c5959501544235473a6c264c5f3ab1100522e852d0a06034f5f00cd6f"}},"backend/package.json":{"size":2799,"mtime_ns":1786799852141904400,"indexed_at_ns":1786863680444315800,"word_count":208,"hashes":{"backend/package.json":"21912a365ea8843084de1956d6e2b9648f640d87071d5fc5eff61c80a61232c0"}},"backend/prisma/migrations/20260526145407_init/migration.sql":{"size":8963,"mtime_ns":1783764561612007600,"indexed_at_ns":1786863680445315600,"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":1786863680446319100,"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":1786863534471369900,"word_count":2294},"backend/prisma/seed-blogs.ts":{"size":6950,"mtime_ns":1786885876777374000,"indexed_at_ns":1786946085670717300,"word_count":620},"backend/prisma/seed-custom.ts":{"size":3836,"mtime_ns":1786799852144902000,"indexed_at_ns":1786863534484541000,"word_count":371},"backend/prisma/seed-home.ts":{"size":3870,"mtime_ns":1786885876779371100,"indexed_at_ns":1786946085682250800,"word_count":374},"backend/prisma/seed-products-data.json":{"size":59220,"mtime_ns":1786885876782371300,"indexed_at_ns":1786946139466262600,"word_count":5730,"hashes":{"backend/prisma/seed-products-data.json":"9d1262f8264478eb43ec48f073f817d46fc193d666cd9364f3bb95c1629f25c7"}},"backend/prisma/seed-products.ts":{"size":28274,"mtime_ns":1786885876784888200,"indexed_at_ns":1786946085695895900,"word_count":2063},"backend/prisma/seed-ui-texts.ts":{"size":9197,"mtime_ns":1786885876787888600,"indexed_at_ns":1786946085704003400,"word_count":755},"backend/prisma/seed-wiki.ts":{"size":24019,"mtime_ns":1786961195297596000,"indexed_at_ns":1786961213057541000,"word_count":2292},"backend/prisma/seed.ts":{"size":30492,"mtime_ns":1786961195299227200,"indexed_at_ns":1786961213063052900,"word_count":2636},"backend/prisma/tsconfig.seed.json":{"size":194,"mtime_ns":1786955870751259200,"indexed_at_ns":1786961249766772200,"word_count":17,"hashes":{"backend/prisma/tsconfig.seed.json":"e178d23a09563a7a9b348d905bc70322115514c78a7afcc5a53db7d18e511583"}},"backend/scripts/generate-openapi.ts":{"size":1385,"mtime_ns":1786799852156390500,"indexed_at_ns":1786863534537298000,"word_count":128},"backend/src/admin/admin.controller.spec.ts":{"size":593,"mtime_ns":1786799852157399700,"indexed_at_ns":1786863534543362400,"word_count":59},"backend/src/admin/admin.controller.ts":{"size":9003,"mtime_ns":1787036696769152500,"indexed_at_ns":1787036699700276700,"word_count":898},"backend/src/admin/admin.module.ts":{"size":1420,"mtime_ns":1786877667005008400,"indexed_at_ns":1786946085768035200,"word_count":145},"backend/src/admin/admin.service.spec.ts":{"size":682,"mtime_ns":1786799852162911100,"indexed_at_ns":1786863534564065100,"word_count":72},"backend/src/admin/admin.service.ts":{"size":26209,"mtime_ns":1787040318668548600,"indexed_at_ns":1787048754765775400,"word_count":2695},"backend/src/admin/blogs.controller.ts":{"size":1840,"mtime_ns":1786799852170191700,"indexed_at_ns":1786863534578222000,"word_count":190},"backend/src/admin/blogs.service.ts":{"size":1810,"mtime_ns":1786799852171191000,"indexed_at_ns":1786863534584725500,"word_count":221},"backend/src/admin/categories.controller.ts":{"size":2187,"mtime_ns":1786799852174192500,"indexed_at_ns":1786863534590311100,"word_count":204},"backend/src/admin/categories.service.ts":{"size":2005,"mtime_ns":1786799852175194300,"indexed_at_ns":1786863534595817200,"word_count":223},"backend/src/admin/dto/admin-query.dto.ts":{"size":634,"mtime_ns":1786799852178706400,"indexed_at_ns":1786863534603325400,"word_count":60},"backend/src/admin/media.controller.ts":{"size":2339,"mtime_ns":1786876983648866300,"indexed_at_ns":1786877270905179000,"word_count":226},"backend/src/admin/media.service.ts":{"size":2713,"mtime_ns":1786876983651534500,"indexed_at_ns":1786877270914160400,"word_count":283},"backend/src/admin/pets.controller.ts":{"size":1195,"mtime_ns":1786799852186217200,"indexed_at_ns":1786863534621612800,"word_count":117},"backend/src/admin/pets.service.ts":{"size":1731,"mtime_ns":1786954681814243000,"indexed_at_ns":1786955470006205300,"word_count":193},"backend/src/admin/reports.controller.ts":{"size":664,"mtime_ns":1783764561642147000,"indexed_at_ns":1786863534634255100,"word_count":66},"backend/src/admin/reports.service.ts":{"size":3399,"mtime_ns":1786799852189730800,"indexed_at_ns":1786863534640768500,"word_count":388},"backend/src/admin/wiki.controller.ts":{"size":1814,"mtime_ns":1786799852191732300,"indexed_at_ns":1786863534647913700,"word_count":179},"backend/src/admin/wiki.service.ts":{"size":1767,"mtime_ns":1786799852193324200,"indexed_at_ns":1786863534654035100,"word_count":195},"backend/src/app.controller.spec.ts":{"size":617,"mtime_ns":1783764561644839700,"indexed_at_ns":1786863534660738600,"word_count":61},"backend/src/app.controller.ts":{"size":274,"mtime_ns":1783764561645849100,"indexed_at_ns":1786863534667244700,"word_count":31},"backend/src/app.module.ts":{"size":3822,"mtime_ns":1786971396024319300,"indexed_at_ns":1787036699843240900,"word_count":361},"backend/src/app.service.ts":{"size":142,"mtime_ns":1783764561648840500,"indexed_at_ns":1786863534680950600,"word_count":19},"backend/src/auth/auth.controller.spec.ts":{"size":1528,"mtime_ns":1785327951179468000,"indexed_at_ns":1786863534687029500,"word_count":149},"backend/src/auth/auth.controller.ts":{"size":4116,"mtime_ns":1786883225788847000,"indexed_at_ns":1786946085924796800,"word_count":384},"backend/src/auth/auth.module.ts":{"size":725,"mtime_ns":1786883225790847200,"indexed_at_ns":1786946085938388700,"word_count":80},"backend/src/auth/auth.service.spec.ts":{"size":4264,"mtime_ns":1786799852201843300,"indexed_at_ns":1786863534705627700,"word_count":379},"backend/src/auth/auth.service.ts":{"size":9662,"mtime_ns":1786895436208539300,"indexed_at_ns":1786946085966787500,"word_count":934},"backend/src/auth/dto/admin-login.dto.ts":{"size":772,"mtime_ns":1786799852205357700,"indexed_at_ns":1786863534720212600,"word_count":82},"backend/src/auth/dto/login.dto.ts":{"size":587,"mtime_ns":1783764561659109000,"indexed_at_ns":1786863534727735200,"word_count":63},"backend/src/auth/dto/register.dto.ts":{"size":1197,"mtime_ns":1785327951186476900,"indexed_at_ns":1786863534732751200,"word_count":115},"backend/src/auth/dto/send-otp.dto.ts":{"size":374,"mtime_ns":1783764561661106500,"indexed_at_ns":1786863534739271500,"word_count":39},"backend/src/auth/dto/verify-otp.dto.ts":{"size":594,"mtime_ns":1783764561662112100,"indexed_at_ns":1786863534745843500,"word_count":64},"backend/src/auth/jwt-auth.guard.ts":{"size":494,"mtime_ns":1786799852205862700,"indexed_at_ns":1786863534751350400,"word_count":58},"backend/src/auth/jwt.strategy.ts":{"size":1122,"mtime_ns":1786883225794343300,"indexed_at_ns":1786946086014858100,"word_count":116},"backend/src/auth/roles.decorator.ts":{"size":54,"mtime_ns":1786799852208379600,"indexed_at_ns":1786863534764578800,"word_count":4},"backend/src/auth/roles.guard.ts":{"size":46,"mtime_ns":1786799852209003400,"indexed_at_ns":1786863534770087500,"word_count":4},"backend/src/b2b/b2b.controller.ts":{"size":2684,"mtime_ns":1786799852212013200,"indexed_at_ns":1786863534777707900,"word_count":246},"backend/src/b2b/b2b.module.ts":{"size":342,"mtime_ns":1786799852212013200,"indexed_at_ns":1786863534783641300,"word_count":38},"backend/src/b2b/b2b.service.ts":{"size":2379,"mtime_ns":1786799852214009300,"indexed_at_ns":1786863534792157000,"word_count":243},"backend/src/banners/banners.controller.ts":{"size":1923,"mtime_ns":1786799852215010200,"indexed_at_ns":1786863534797707700,"word_count":169},"backend/src/banners/banners.module.ts":{"size":374,"mtime_ns":1786799852216010300,"indexed_at_ns":1786863534807022900,"word_count":38},"backend/src/banners/banners.service.ts":{"size":1394,"mtime_ns":1786799852216010300,"indexed_at_ns":1786863534813112700,"word_count":160},"backend/src/blogs/blogs.controller.ts":{"size":1197,"mtime_ns":1786799852218009900,"indexed_at_ns":1786863534819206600,"word_count":108},"backend/src/blogs/blogs.module.ts":{"size":248,"mtime_ns":1783764561665678100,"indexed_at_ns":1786863534825741600,"word_count":28},"backend/src/blogs/blogs.service.ts":{"size":1674,"mtime_ns":1786799852219010000,"indexed_at_ns":1786863534831743000,"word_count":191},"backend/src/blogs/dto/create-blog.dto.ts":{"size":30,"mtime_ns":1783764561671557000,"indexed_at_ns":1786863534838708700,"word_count":4},"backend/src/blogs/dto/update-blog.dto.ts":{"size":164,"mtime_ns":1783764561673712400,"indexed_at_ns":1786863534844735300,"word_count":18},"backend/src/blogs/entities/blog.entity.ts":{"size":21,"mtime_ns":1783764561675101100,"indexed_at_ns":1786863534850735400,"word_count":4},"backend/src/cms/cms.controller.ts":{"size":3521,"mtime_ns":1785327951196913100,"indexed_at_ns":1786863534858244500,"word_count":280},"backend/src/cms/cms.module.ts":{"size":342,"mtime_ns":1785148022206298000,"indexed_at_ns":1786863534864244300,"word_count":38},"backend/src/cms/cms.service.ts":{"size":2501,"mtime_ns":1785327951197940400,"indexed_at_ns":1786863534870502100,"word_count":256},"backend/src/cms/dto/cms.dto.ts":{"size":2357,"mtime_ns":1785327951199995500,"indexed_at_ns":1786863534877728700,"word_count":203},"backend/src/common/decorators/roles.decorator.ts":{"size":157,"mtime_ns":1786799852220522400,"indexed_at_ns":1786863534882729600,"word_count":20},"backend/src/common/dto/pagination.dto.ts":{"size":1188,"mtime_ns":1785327951201988900,"indexed_at_ns":1786863534889612500,"word_count":121},"backend/src/common/filters/http-exception.filter.ts":{"size":4924,"mtime_ns":1786883225795857800,"indexed_at_ns":1786946086136912900,"word_count":490},"backend/src/common/filters/prisma-exception.filter.ts":{"size":2412,"mtime_ns":1785330913143709100,"indexed_at_ns":1786863534903118900,"word_count":228},"backend/src/common/guards/roles.guard.spec.ts":{"size":2426,"mtime_ns":1786799852225556800,"indexed_at_ns":1786863534909695400,"word_count":223},"backend/src/common/guards/roles.guard.ts":{"size":1285,"mtime_ns":1786799852226565200,"indexed_at_ns":1786863534916198700,"word_count":120},"backend/src/common/interceptors/decimal.interceptor.spec.ts":{"size":1677,"mtime_ns":1786799852227565700,"indexed_at_ns":1786863534923711900,"word_count":164},"backend/src/common/interceptors/decimal.interceptor.ts":{"size":1094,"mtime_ns":1786799852227565700,"indexed_at_ns":1786863534929913300,"word_count":118},"backend/src/common/metrics.controller.ts":{"size":2093,"mtime_ns":1786799852229073100,"indexed_at_ns":1786863534936006600,"word_count":206},"backend/src/common/schemas/error-response.schema.ts":{"size":1680,"mtime_ns":1785330913144701500,"indexed_at_ns":1786863534942170300,"word_count":162},"backend/src/common/schemas/paginated-response.schema.ts":{"size":1108,"mtime_ns":1786799852230082200,"indexed_at_ns":1786863534949353300,"word_count":110},"backend/src/common/services/sms.service.ts":{"size":31949,"mtime_ns":1787061755720023100,"indexed_at_ns":1787061883233170500,"word_count":3028},"backend/src/common/sms.module.ts":{"size":204,"mtime_ns":1785330750996125100,"indexed_at_ns":1786863534962381000,"word_count":24},"backend/src/contact/contact.controller.ts":{"size":1990,"mtime_ns":1786799852234596200,"indexed_at_ns":1786863534967884500,"word_count":177},"backend/src/contact/contact.module.ts":{"size":365,"mtime_ns":1786799852236599000,"indexed_at_ns":1786863534974401800,"word_count":38},"backend/src/contact/contact.service.ts":{"size":4696,"mtime_ns":1786885876795420000,"indexed_at_ns":1786946086219243500,"word_count":451},"backend/src/home/dto/create-home.dto.ts":{"size":30,"mtime_ns":1783764561682365300,"indexed_at_ns":1786863534987087100,"word_count":4},"backend/src/home/dto/update-home.dto.ts":{"size":164,"mtime_ns":1783764561682365300,"indexed_at_ns":1786863534992600800,"word_count":18},"backend/src/home/entities/home.entity.ts":{"size":21,"mtime_ns":1783764561684884800,"indexed_at_ns":1786863534999171300,"word_count":4},"backend/src/home/home.controller.ts":{"size":757,"mtime_ns":1785327951212087300,"indexed_at_ns":1786863535004176100,"word_count":69},"backend/src/home/home.module.ts":{"size":241,"mtime_ns":1783764561687108000,"indexed_at_ns":1786863535011491500,"word_count":28},"backend/src/home/home.service.ts":{"size":1372,"mtime_ns":1785327951214087300,"indexed_at_ns":1786863535016491700,"word_count":144},"backend/src/ingredients/ingredients.controller.ts":{"size":1952,"mtime_ns":1786799852237596500,"indexed_at_ns":1786863535024117600,"word_count":165},"backend/src/ingredients/ingredients.module.ts":{"size":406,"mtime_ns":1786799852238596500,"indexed_at_ns":1786863535030195600,"word_count":38},"backend/src/ingredients/ingredients.service.ts":{"size":1526,"mtime_ns":1786799852240108300,"indexed_at_ns":1786863535035320500,"word_count":162},"backend/src/main.ts":{"size":3525,"mtime_ns":1786965281349754700,"indexed_at_ns":1787036700231456900,"word_count":305},"backend/src/orders/dto/create-order.dto.ts":{"size":1899,"mtime_ns":1785327951218626100,"indexed_at_ns":1786863535048494100,"word_count":162},"backend/src/orders/orders.controller.spec.ts":{"size":1910,"mtime_ns":1785327951219627700,"indexed_at_ns":1786863535055560000,"word_count":194},"backend/src/orders/orders.controller.ts":{"size":5898,"mtime_ns":1786944769507175300,"indexed_at_ns":1786946086292892000,"word_count":515},"backend/src/orders/orders.module.ts":{"size":255,"mtime_ns":1783764561697598200,"indexed_at_ns":1786863535066790700,"word_count":28},"backend/src/orders/orders.service.spec.ts":{"size":4974,"mtime_ns":1786799852246117900,"indexed_at_ns":1786863535074585400,"word_count":483},"backend/src/orders/orders.service.ts":{"size":17104,"mtime_ns":1786944769509227400,"indexed_at_ns":1786946086310565200,"word_count":1611},"backend/src/pets/dto/create-health-log.dto.ts":{"size":761,"mtime_ns":1785327951229443300,"indexed_at_ns":1786863535087660400,"word_count":69},"backend/src/pets/dto/create-pet.dto.ts":{"size":1143,"mtime_ns":1785327951230948800,"indexed_at_ns":1786863535094172300,"word_count":104},"backend/src/pets/dto/create-reminder.dto.ts":{"size":810,"mtime_ns":1785327951231958200,"indexed_at_ns":1786863535101315600,"word_count":71},"backend/src/pets/dto/update-pet.dto.ts":{"size":160,"mtime_ns":1783764561709557500,"indexed_at_ns":1786863535107396200,"word_count":18},"backend/src/pets/pets.controller.spec.ts":{"size":2544,"mtime_ns":1786799852248118800,"indexed_at_ns":1786863535113902500,"word_count":269},"backend/src/pets/pets.controller.ts":{"size":8427,"mtime_ns":1786894580128858000,"indexed_at_ns":1786946086395923600,"word_count":781},"backend/src/pets/pets.module.ts":{"size":241,"mtime_ns":1783764561714469800,"indexed_at_ns":1786863535125397200,"word_count":28},"backend/src/pets/pets.service.spec.ts":{"size":2961,"mtime_ns":1785327951238208000,"indexed_at_ns":1786863535132005000,"word_count":272},"backend/src/pets/pets.service.ts":{"size":6978,"mtime_ns":1786799852250117400,"indexed_at_ns":1786863535137713400,"word_count":710},"backend/src/prescriptions/prescriptions.controller.ts":{"size":2356,"mtime_ns":1786799852253748300,"indexed_at_ns":1786863535145222600,"word_count":232},"backend/src/prescriptions/prescriptions.module.ts":{"size":495,"mtime_ns":1786954681815809200,"indexed_at_ns":1786955470495218500,"word_count":45},"backend/src/prescriptions/prescriptions.service.ts":{"size":4635,"mtime_ns":1786954681816860600,"indexed_at_ns":1786955470500213500,"word_count":496},"backend/src/prisma/prisma.module.ts":{"size":210,"mtime_ns":1783764561718199800,"indexed_at_ns":1786863535164330600,"word_count":24},"backend/src/prisma/prisma.service.ts":{"size":4078,"mtime_ns":1786944769510794000,"indexed_at_ns":1786946086440649600,"word_count":411},"backend/src/products/dto/get-products.dto.ts":{"size":1320,"mtime_ns":1786799852260271600,"indexed_at_ns":1786863535176492100,"word_count":115},"backend/src/products/products.controller.spec.ts":{"size":1863,"mtime_ns":1785327951243280800,"indexed_at_ns":1786863535183613400,"word_count":166},"backend/src/products/products.controller.ts":{"size":2445,"mtime_ns":1786799852261281700,"indexed_at_ns":1786863535190428600,"word_count":209},"backend/src/products/products.module.ts":{"size":269,"mtime_ns":1783764561723672400,"indexed_at_ns":1786863535197280400,"word_count":28},"backend/src/products/products.service.spec.ts":{"size":1597,"mtime_ns":1786799852263279400,"indexed_at_ns":1786863535202917700,"word_count":154},"backend/src/products/products.service.ts":{"size":6906,"mtime_ns":1786954681818869900,"indexed_at_ns":1786955470543762900,"word_count":713},"backend/src/redis/redis.module.ts":{"size":205,"mtime_ns":1783764561727662100,"indexed_at_ns":1786863535217462500,"word_count":24},"backend/src/redis/redis.service.spec.ts":{"size":1525,"mtime_ns":1783764561728672300,"indexed_at_ns":1786863535222986600,"word_count":145},"backend/src/redis/redis.service.ts":{"size":1202,"mtime_ns":1786895436211834600,"indexed_at_ns":1786946086488155600,"word_count":132},"backend/src/seo/seo.controller.ts":{"size":904,"mtime_ns":1785327951247283200,"indexed_at_ns":1786863535236090400,"word_count":85},"backend/src/seo/seo.module.ts":{"size":342,"mtime_ns":1785148022268580900,"indexed_at_ns":1786863535243640100,"word_count":38},"backend/src/seo/seo.service.ts":{"size":2029,"mtime_ns":1785327951248280300,"indexed_at_ns":1786863535249760000,"word_count":182},"backend/src/settings/settings.controller.spec.ts":{"size":2977,"mtime_ns":1786799852267280300,"indexed_at_ns":1786863535257859100,"word_count":246},"backend/src/settings/settings.controller.ts":{"size":8955,"mtime_ns":1787061767723579500,"indexed_at_ns":1787061883578400700,"word_count":708},"backend/src/settings/settings.module.ts":{"size":382,"mtime_ns":1783764561735515700,"indexed_at_ns":1786863535272121400,"word_count":38},"backend/src/settings/settings.service.spec.ts":{"size":2728,"mtime_ns":1783764561736856500,"indexed_at_ns":1786863535278254000,"word_count":251},"backend/src/settings/settings.service.ts":{"size":14915,"mtime_ns":1787061761390208400,"indexed_at_ns":1787061883594006400,"word_count":1203},"backend/src/smart-advisor/smart-advisor.controller.ts":{"size":1821,"mtime_ns":1786799852275441500,"indexed_at_ns":1786863535292219400,"word_count":152},"backend/src/smart-advisor/smart-advisor.module.ts":{"size":416,"mtime_ns":1786799852276441700,"indexed_at_ns":1786863535298401600,"word_count":38},"backend/src/smart-advisor/smart-advisor.service.ts":{"size":1241,"mtime_ns":1786799852277440400,"indexed_at_ns":1786863535304944400,"word_count":131},"backend/src/testimonials/testimonials.controller.ts":{"size":1702,"mtime_ns":1786799852279441800,"indexed_at_ns":1786863535310995900,"word_count":143},"backend/src/testimonials/testimonials.module.ts":{"size":414,"mtime_ns":1786799852279441800,"indexed_at_ns":1786863535317805000,"word_count":38},"backend/src/testimonials/testimonials.service.ts":{"size":1100,"mtime_ns":1786799852281471300,"indexed_at_ns":1786863535324923000,"word_count":121},"backend/src/users/dto/address.dto.ts":{"size":1098,"mtime_ns":1783764561739871500,"indexed_at_ns":1786863535331380200,"word_count":99},"backend/src/users/dto/update-profile.dto.ts":{"size":1068,"mtime_ns":1786885876805472100,"indexed_at_ns":1786946086647803400,"word_count":98},"backend/src/users/users.controller.spec.ts":{"size":3333,"mtime_ns":1785327951253796500,"indexed_at_ns":1786863535346781600,"word_count":322},"backend/src/users/users.controller.ts":{"size":6854,"mtime_ns":1786799852282481500,"indexed_at_ns":1786863535353416500,"word_count":590},"backend/src/users/users.module.ts":{"size":275,"mtime_ns":1783764561748154400,"indexed_at_ns":1786863535360908700,"word_count":30},"backend/src/users/users.service.spec.ts":{"size":3817,"mtime_ns":1786799852283480600,"indexed_at_ns":1786863535367156600,"word_count":316},"backend/src/users/users.service.ts":{"size":8101,"mtime_ns":1786885876807471600,"indexed_at_ns":1786946086675276300,"word_count":774},"backend/src/videos/dto/create-video.dto.ts":{"size":1573,"mtime_ns":1786971396042093900,"indexed_at_ns":1787036700628093800,"word_count":127},"backend/src/videos/dto/get-videos-query.dto.ts":{"size":643,"mtime_ns":1786799852287643500,"indexed_at_ns":1786863535387813200,"word_count":77},"backend/src/videos/videos.controller.ts":{"size":1924,"mtime_ns":1786799852291153100,"indexed_at_ns":1786863535393635000,"word_count":173},"backend/src/videos/videos.module.ts":{"size":283,"mtime_ns":1785148022306583700,"indexed_at_ns":1786863535400714100,"word_count":30},"backend/src/videos/videos.service.ts":{"size":2732,"mtime_ns":1786971396047872400,"indexed_at_ns":1787036700649050000,"word_count":290},"backend/src/wholesale/dto/wholesale-apply.dto.ts":{"size":739,"mtime_ns":1785148022317622300,"indexed_at_ns":1786863535413220000,"word_count":66},"backend/src/wholesale/wholesale.controller.ts":{"size":2037,"mtime_ns":1786799852294177000,"indexed_at_ns":1786863535418912100,"word_count":160},"backend/src/wholesale/wholesale.module.ts":{"size":390,"mtime_ns":1785148022328746300,"indexed_at_ns":1786863535425686500,"word_count":38},"backend/src/wholesale/wholesale.service.ts":{"size":2627,"mtime_ns":1785330913149233300,"indexed_at_ns":1786863535431718700,"word_count":266},"backend/src/wiki/dto/create-wiki.dto.ts":{"size":30,"mtime_ns":1783764561752933200,"indexed_at_ns":1786863535439031200,"word_count":4},"backend/src/wiki/dto/update-wiki.dto.ts":{"size":164,"mtime_ns":1783764561753945200,"indexed_at_ns":1786863535446428400,"word_count":18},"backend/src/wiki/entities/wiki.entity.ts":{"size":21,"mtime_ns":1783764561755039400,"indexed_at_ns":1786863535452455400,"word_count":4},"backend/src/wiki/wiki.controller.ts":{"size":1219,"mtime_ns":1785327951272850400,"indexed_at_ns":1786863535458333000,"word_count":110},"backend/src/wiki/wiki.module.ts":{"size":241,"mtime_ns":1783764561756925000,"indexed_at_ns":1786863535464948400,"word_count":28},"backend/src/wiki/wiki.service.ts":{"size":1562,"mtime_ns":1786799852295173000,"indexed_at_ns":1786863535471010700,"word_count":174},"backend/test/app-audit-verification.e2e-spec.ts":{"size":6464,"mtime_ns":1786799852296174700,"indexed_at_ns":1786863535478067000,"word_count":569},"backend/test/app.e2e-spec.ts":{"size":981,"mtime_ns":1786799852297175000,"indexed_at_ns":1786863535484496000,"word_count":83},"backend/test/jest-e2e.json":{"size":183,"mtime_ns":1783764561762911800,"indexed_at_ns":1786863680450825300,"word_count":17,"hashes":{"backend/test/jest-e2e.json":"94091f560937212ad7027afcb77e62e6ac79e3e4cb401c3a16a56e7be4cac721"}},"backend/tsconfig.build.json":{"size":107,"mtime_ns":1783764561763447000,"indexed_at_ns":1786863680451826600,"word_count":10,"hashes":{"backend/tsconfig.build.json":"1f47c7dc3c8b5a15558654f45f21e0f553acc1680046f09dc24428e8538c4f9d"}},"backend/tsconfig.json":{"size":801,"mtime_ns":1786878091972378100,"indexed_at_ns":1786946139476821100,"word_count":57,"hashes":{"backend/tsconfig.json":"f545dfd832cb16f1a3cfc4f43f2f179c0a37dd473b3b433507957fbd964e28ce"}},"backend/uploads/1781288429353-508765350.jpg":{"size":110246,"mtime_ns":1783764561766257000,"indexed_at_ns":1786863694120021300,"word_count":3882,"hashes":{"backend/uploads/1781288429353-508765350.jpg":"c9e532f0482584a2edf76404b86ef82679e5387079d73c59f10234de24ad5074"}},"canina.md":{"size":21919,"mtime_ns":1786885876809472400,"indexed_at_ns":1786946194592944400,"word_count":1983,"hashes":{"canina.md":"a8967d10e744c46846c8bfc6cc7f9a0aae8c2175dfbe49ff9de75bc5dce87850"}},"canina.pdf":{"size":2858373,"mtime_ns":1785148022370811500,"indexed_at_ns":1786863694095027500,"word_count":0,"hashes":{"canina.pdf":"a52d90e6dffb96dae468ba96f76239762b341751a6455734d75fadd22f30c87c"}},"docker-compose.yml":{"size":2193,"mtime_ns":1786883225811564200,"indexed_at_ns":1786946194593946400,"word_count":127,"hashes":{"docker-compose.yml":"6e0091c4f1b3868a5e2321678c549f6c95cbf5fd266da06a144976295d8a2c64"}},"docs/01-introduction.md":{"size":5537,"mtime_ns":1786885876812474900,"indexed_at_ns":1786946194594944700,"word_count":523,"hashes":{"docs/01-introduction.md":"18176d1abd1352f12e1ccfa2c2cc84d4673b22b682b2aeb91b1a6bf4a607ae05"}},"docs/02-user-guide.md":{"size":4303,"mtime_ns":1786885876813985900,"indexed_at_ns":1786946194595944800,"word_count":422,"hashes":{"docs/02-user-guide.md":"a7842a7ac89eb8872028f50e9c907a0f2e7968c419a5f157c10c62dad8e85b00"}},"docs/03-developer-guide.md":{"size":6717,"mtime_ns":1783764561771660500,"indexed_at_ns":1786863693969714100,"word_count":678,"hashes":{"docs/03-developer-guide.md":"84a16e17d0433edd8631789bdec3bbd7e6f716059cd064843ed8087eea9e2eeb"}},"docs/04-setup-and-deployment.md":{"size":4023,"mtime_ns":1783764561773294900,"indexed_at_ns":1786863693970713900,"word_count":425,"hashes":{"docs/04-setup-and-deployment.md":"723c6016b1bb499fee2b9f63b2c06a9b12f8e4c664b36ea1431181c333bc814e"}},"docs/05-devops-and-monitoring.md":{"size":3590,"mtime_ns":1783764561774446100,"indexed_at_ns":1786863693972714000,"word_count":374,"hashes":{"docs/05-devops-and-monitoring.md":"53f1f45bbbdd3cf81cb4bc082ef4e49f506627f10f581d3c4b835028d02b5421"}},"docs/06-testing.md":{"size":4214,"mtime_ns":1783764561774967500,"indexed_at_ns":1786863693973713900,"word_count":457,"hashes":{"docs/06-testing.md":"69d50bd5e233f030d8076b55b69599cee201e1c393b7ee1beeb495c304fd4bd3"}},"docs/README.md":{"size":2740,"mtime_ns":1786885876816996700,"indexed_at_ns":1786946139726247300,"word_count":253,"hashes":{"docs/readme.md":"1b7ffde4b290e742802fc554f2dd2f7a2316fe25bd1cd328421ffa823b36f40f"}},"docs/audit/00-repository-map.md":{"size":3171,"mtime_ns":1786799852298174200,"indexed_at_ns":1786863693977222500,"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":1786863693979222500,"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":1786863693980222600,"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":1786863693982222800,"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":1786863693983784800,"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":1786863693984790400,"word_count":560,"hashes":{"docs/audit/05-architectural-audit.md":"8977a5c304b3fe86636579d498a459ac98359c34f1062bf731b02f4602c0e94f"}},"docs/audit/06-storefront-audit.md":{"size":4191,"mtime_ns":1786799852303691400,"indexed_at_ns":1786863693987299500,"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":1786863693989301000,"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":1786863693990300000,"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":1786863693992299700,"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":1786863693994299500,"word_count":678,"hashes":{"docs/audit/10-security-audit.md":"574df31423bd28b3cd58134e7c7e8780f4e2e46c760a372e0e2592c1e83bba4e"}},"docs/audit/11-code-quality-audit.md":{"size":3379,"mtime_ns":1786799852308957000,"indexed_at_ns":1786863693995299500,"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":1786863693997807500,"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":1786863693999375100,"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":1786863694001567900,"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":1786863680454829500,"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":1786863694003567300,"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":1786863680455826100,"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":1786863694005566900,"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":1786863694007070200,"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":1786863680457826600,"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":1786863694009077900,"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":1786863694010075200,"word_count":139,"hashes":{"docs/audit/22-tracked-first-party-files.txt":"ef7fc17de970cd3f397eea961bcaf76abff15589c0fa13f92b47d42e637231c6"}},"docs/audit/23-untracked-first-party-files.txt":{"size":59,"mtime_ns":1786799852319066000,"indexed_at_ns":1786863694012075400,"word_count":7,"hashes":{"docs/audit/23-untracked-first-party-files.txt":"ffa5caec5c75b4013f7c136efed9e944c705e756f4f26e53da73e871a02d704c"}},"docs/audit/24-omitted-file-inspection-report.md":{"size":2462,"mtime_ns":1786799852320065700,"indexed_at_ns":1786863694014075600,"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":1786863680458826600,"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":1786863694015640600,"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":1786863694017145600,"word_count":148,"hashes":{"docs/audit/27-all-tracked-repository-files.txt":"3f312a5c642e6a27446dc35a6c50dacd10e43c1cc9eeb637a49ba61343ce2b69"}},"docs/audit/28-full-repository-classification.json":{"size":27913,"mtime_ns":1786799852324099500,"indexed_at_ns":1786863680460331400,"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":1786863680462336500,"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":1786863680463336700,"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":1786863694019150200,"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":1786863680464337900,"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":1786863694020149300,"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":1786863680466336600,"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":1786863680467338400,"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":1786863680468337900,"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":1786863694022417300,"word_count":398,"hashes":{"docs/audit/adr-auth-001.md":"fd6a6e524d66c57e3f114899323509082af11aa30197a015e1255057c5c3ed98"}},"docs/audit/CROSS_BOUNDARY_DEPENDENCIES.md":{"size":2146,"mtime_ns":1786799852332642700,"indexed_at_ns":1786863694023417200,"word_count":239,"hashes":{"docs/audit/cross_boundary_dependencies.md":"56de72c42fdadf710e0837e0d330dfe36c772602d8f094d0a55dbc5bb16906f3"}},"docs/audit/FRONTEND_INTEGRATION_REQUIREMENTS.md":{"size":15322,"mtime_ns":1786885876820986100,"indexed_at_ns":1786946194617583300,"word_count":1579,"hashes":{"docs/audit/frontend_integration_requirements.md":"79bab062fc3587cffd0a9932b8615d4b822dba2ea24533531f258a0dac5f701f"}},"docs/audit/MASTER-TASK-BACKLOG.md":{"size":30107,"mtime_ns":1786799852335470200,"indexed_at_ns":1786863694026492300,"word_count":3510,"hashes":{"docs/audit/master-task-backlog.md":"6df14e8ae8eca2a7f1d9829a6e9891a89a8565eb5a7362186644208fe8454cdc"}},"docs/audit/audit-state.json":{"size":4135,"mtime_ns":1786799852337382200,"indexed_at_ns":1786863680470337000,"word_count":267,"hashes":{"docs/audit/audit-state.json":"4b804494570a2812170cb8dab35d15da659f57d6e637652328725e956f7d98aa"}},"docs/audit/build_manifest.js":{"size":4060,"mtime_ns":1786799852338393200,"indexed_at_ns":1786863535890477600,"word_count":348},"docs/audit/frontend-route-map.md":{"size":2558,"mtime_ns":1786799852339389800,"indexed_at_ns":1786863694027491500,"word_count":329,"hashes":{"docs/audit/frontend-route-map.md":"e9bf92a931f0727c8054230578943f0fd59cc3ef8f6ac5020155ca42edc93622"}},"docs/audit/generate_classification.js":{"size":2186,"mtime_ns":1786799852339389800,"indexed_at_ns":1786863535904305800,"word_count":204},"docs/audit/generate_evidence.js":{"size":3098,"mtime_ns":1786799852340390100,"indexed_at_ns":1786863535911173400,"word_count":253},"docs/audit/generate_ledger.js":{"size":7648,"mtime_ns":1786799852341897300,"indexed_at_ns":1786863535916686900,"word_count":620},"docs/audit/generate_manifest.js":{"size":6357,"mtime_ns":1786799852341897300,"indexed_at_ns":1786863535923771900,"word_count":489},"docs/audit/master-task-backlog.json":{"size":22336,"mtime_ns":1786799852342906700,"indexed_at_ns":1786863680470841000,"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":1786863694030823300,"word_count":736,"hashes":{"docs/audit/phase3-execution-plan.md":"ab3bc489bde4c86046d35f87c3fb1320acb4fb15d6a3de2e100b05b510aa23b8"}},"docs/audit/phase3-traceability-matrix.md":{"size":5237,"mtime_ns":1786799852344952800,"indexed_at_ns":1786863694031820000,"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":1786863694033821400,"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":1786863694035819500,"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":1786863694036820300,"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":1786863694039141500,"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":1786863535983025100,"word_count":559},"docs/audit/sync_honest_manifest.js":{"size":1213,"mtime_ns":1786799852349953100,"indexed_at_ns":1786863535988627700,"word_count":75},"docs/audit/sync_manifest.js":{"size":997,"mtime_ns":1786799852350953300,"indexed_at_ns":1786863535995415600,"word_count":62},"docs/audit/validate_evidence_grade.js":{"size":6141,"mtime_ns":1786799852351954100,"indexed_at_ns":1786863536001204900,"word_count":526},"docs/audit/validate_integrity.js":{"size":3408,"mtime_ns":1786799852352952400,"indexed_at_ns":1786863536007942000,"word_count":284},"docs/backlog.md":{"size":26175,"mtime_ns":1786799852356021600,"indexed_at_ns":1786863694040141700,"word_count":2834,"hashes":{"docs/backlog.md":"ce0d907773d5af5539aa04f7035555e47424d396ea6e3a821771ad00f813ccd6"}},"frontend/admin-panel/README.md":{"size":2425,"mtime_ns":1783764561778952800,"indexed_at_ns":1786863694042141900,"word_count":212,"hashes":{"frontend/admin-panel/readme.md":"3945c052249ebd020b013303d5921815b52d847bd36c748a03bfdc8eb2a390b8"}},"frontend/admin-panel/eslint.config.js":{"size":591,"mtime_ns":1785651092991236900,"indexed_at_ns":1786863536031757200,"word_count":48},"frontend/admin-panel/index.html":{"size":363,"mtime_ns":1783764561780558500,"indexed_at_ns":1786863694044141700,"word_count":28,"hashes":{"frontend/admin-panel/index.html":"ecdac8ac0b565720712afa18490bdfad1a643a6c50c1d0b93d12b7acbcf5e3c0"}},"frontend/admin-panel/package.json":{"size":1072,"mtime_ns":1785570791953119000,"indexed_at_ns":1786863680472845200,"word_count":84,"hashes":{"frontend/admin-panel/package.json":"6d61fb108392e86320c75b42e69ba7138bdc47bba4883fafbeb6e661cc5f51e4"}},"frontend/admin-panel/postcss.config.js":{"size":91,"mtime_ns":1783764561796281900,"indexed_at_ns":1786863536049792000,"word_count":11},"frontend/admin-panel/public/favicon.svg":{"size":9522,"mtime_ns":1783764561797801500,"indexed_at_ns":1786863694122123200,"word_count":491,"hashes":{"frontend/admin-panel/public/favicon.svg":"57a824acf3d4ba0b152537d3c0e79795502d3589ca99556a2155c81b6dea663a"}},"frontend/admin-panel/public/fonts/A-Iranian-Sans/A-Iranian-Sans/read me!.txt":{"size":281,"mtime_ns":1783856792435855000,"indexed_at_ns":1786863694045693300,"word_count":15,"hashes":{"frontend/admin-panel/public/fonts/a-iranian-sans/a-iranian-sans/read me!.txt":"06bcb5a03a381d231568aa217f4bfc1a4446a7cf6574daf93ee6de8830063c67"}},"frontend/admin-panel/public/fonts/IranNastaliq/IranNastaliq/read me!.txt":{"size":281,"mtime_ns":1783856792445365000,"indexed_at_ns":1786863694046698100,"word_count":15,"hashes":{"frontend/admin-panel/public/fonts/irannastaliq/irannastaliq/read me!.txt":"1653ec43d0db64c9a2d88dd8e064a64e83eee53a97b423ea7a40a865792b38c9"}},"frontend/admin-panel/public/fonts/sahel-font-v3.4.0/CHANGELOG.md":{"size":8519,"mtime_ns":1783856792454604400,"indexed_at_ns":1786863694048714800,"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":1786863694050719800,"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":1786863694123122700,"word_count":10881,"hashes":{"frontend/admin-panel/public/fonts/sahel-font-v3.4.0/sample-variable.gif":"38008ccacda40353e4f29e912e844ee659cde19dd209dfc1d5c3356e291293f5"}},"frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/CHANGELOG.md":{"size":7177,"mtime_ns":1783856792548005600,"indexed_at_ns":1786863694052719700,"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":1786863694054719200,"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":1786863694125692200,"word_count":2615,"hashes":{"frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/sample.png":"9cefee026dc2387d3c887064f2419098a4c9aadd466a42184e90fa30be5e15a7"}},"frontend/admin-panel/public/fonts/vazirmatn-v33.003/AUTHORS.txt":{"size":339,"mtime_ns":1783856792646666000,"indexed_at_ns":1786863694055720100,"word_count":55,"hashes":{"frontend/admin-panel/public/fonts/vazirmatn-v33.003/authors.txt":"e22592748c440a3169adec38d57aecfd813b4b98531bbe14df59076e177a452c"}},"frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md":{"size":38550,"mtime_ns":1783856792647671700,"indexed_at_ns":1786863694057719800,"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":1786863694060176900,"word_count":671,"hashes":{"frontend/admin-panel/public/fonts/vazirmatn-v33.003/ofl.txt":"8e7ede02bc5fcd7aa4d98a7692cd6f37ea85249c2a1a59574575f7ff57b2c984"}},"frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md":{"size":2339,"mtime_ns":1783856792648669800,"indexed_at_ns":1786863694061738100,"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":1786863694063234100,"word_count":14,"hashes":{"frontend/admin-panel/public/fonts/vazirmatn-v33.003/\u0631\u0627\u0647\u0646\u0645\u0627.txt":"3c26934ce909cddcd30f32691eac2429205e97f4851b76e0b706da0eb7812c66"}},"frontend/admin-panel/public/icons.svg":{"size":5031,"mtime_ns":1783764561799320300,"indexed_at_ns":1786863694127749600,"word_count":382,"hashes":{"frontend/admin-panel/public/icons.svg":"561374a6f3ff39c2881fc8ab6159875671b9acbaab617f4668819f5a24aa0a85"}},"frontend/admin-panel/src/App.tsx":{"size":1088,"mtime_ns":1786799852365481100,"indexed_at_ns":1786863539542562100,"word_count":99},"frontend/admin-panel/src/assets/hero.png":{"size":13057,"mtime_ns":1783764561812863000,"indexed_at_ns":1786863694128748000,"word_count":437,"hashes":{"frontend/admin-panel/src/assets/hero.png":"9350dcf76831435179214888056799d21b9ec6461f03bcad2fca68fb27dcccd9"}},"frontend/admin-panel/src/assets/react.svg":{"size":4126,"mtime_ns":1783764561813924700,"indexed_at_ns":1786863694131258000,"word_count":366,"hashes":{"frontend/admin-panel/src/assets/react.svg":"3ce66cfff5bb1ef0bc54b14d87fc434fdaa60e3e67406ca0475c8e355daf42c9"}},"frontend/admin-panel/src/assets/vite.svg":{"size":8709,"mtime_ns":1783764561814995700,"indexed_at_ns":1786863694133259500,"word_count":439,"hashes":{"frontend/admin-panel/src/assets/vite.svg":"a3813bb88b8e782e5a04d9d628d2540c4ca7719878f24c62bb3b655861178b41"}},"frontend/admin-panel/src/components/Layout.tsx":{"size":726,"mtime_ns":1784621786958594800,"indexed_at_ns":1786863539569270500,"word_count":69},"frontend/admin-panel/src/components/ProtectedRoute.tsx":{"size":2336,"mtime_ns":1786799852369164100,"indexed_at_ns":1786863539575600400,"word_count":210},"frontend/admin-panel/src/components/Sidebar.tsx":{"size":10931,"mtime_ns":1786971396054428200,"indexed_at_ns":1787036705235822800,"word_count":973},"frontend/admin-panel/src/components/Topbar.tsx":{"size":14971,"mtime_ns":1786954681821386200,"indexed_at_ns":1786955474679895700,"word_count":1219},"frontend/admin-panel/src/components/ui/ConfirmModal.tsx":{"size":2294,"mtime_ns":1786972191359099700,"indexed_at_ns":1787036705255577800,"word_count":192},"frontend/admin-panel/src/components/ui/MediaSelector.tsx":{"size":21604,"mtime_ns":1787038450536696800,"indexed_at_ns":1787048760373427600,"word_count":1686},"frontend/admin-panel/src/components/ui/Pagination.tsx":{"size":5510,"mtime_ns":1786799852387442100,"indexed_at_ns":1786863539611144600,"word_count":447},"frontend/admin-panel/src/components/ui/Skeleton.tsx":{"size":178,"mtime_ns":1783856792977535800,"indexed_at_ns":1786863539617717100,"word_count":22},"frontend/admin-panel/src/components/ui/Spinner.tsx":{"size":650,"mtime_ns":1783856792979049200,"indexed_at_ns":1786863539624368900,"word_count":67},"frontend/admin-panel/src/main.tsx":{"size":161,"mtime_ns":1783764561829333600,"indexed_at_ns":1786863539634800100,"word_count":16},"frontend/admin-panel/src/pages/B2BManager.tsx":{"size":25576,"mtime_ns":1786799852391440500,"indexed_at_ns":1786863539640800000,"word_count":1789},"frontend/admin-panel/src/pages/BannersManager.tsx":{"size":20315,"mtime_ns":1786946249965928600,"indexed_at_ns":1786948020244413900,"word_count":1492},"frontend/admin-panel/src/pages/Blogs.tsx":{"size":15530,"mtime_ns":1786799852395957300,"indexed_at_ns":1786863539656035900,"word_count":1186},"frontend/admin-panel/src/pages/CMS.tsx":{"size":10072,"mtime_ns":1786799852400957800,"indexed_at_ns":1786863539663141300,"word_count":805},"frontend/admin-panel/src/pages/Categories.tsx":{"size":15807,"mtime_ns":1786799852404978500,"indexed_at_ns":1786863539670140300,"word_count":1115},"frontend/admin-panel/src/pages/ContactSubmissions.tsx":{"size":12435,"mtime_ns":1786799852405538100,"indexed_at_ns":1786863539677731600,"word_count":859},"frontend/admin-panel/src/pages/Coupons.tsx":{"size":27717,"mtime_ns":1786948119773165300,"indexed_at_ns":1786954590024152800,"word_count":2106},"frontend/admin-panel/src/pages/Dashboard.tsx":{"size":6006,"mtime_ns":1786885876829510000,"indexed_at_ns":1786946090882930200,"word_count":534},"frontend/admin-panel/src/pages/FinancialSettingsPage.tsx":{"size":9238,"mtime_ns":1786948119774163200,"indexed_at_ns":1786954590036697800,"word_count":674},"frontend/admin-panel/src/pages/IngredientsManager.tsx":{"size":18511,"mtime_ns":1786885876833517400,"indexed_at_ns":1786946090899595600,"word_count":1338},"frontend/admin-panel/src/pages/Login.tsx":{"size":11551,"mtime_ns":1786885876837035500,"indexed_at_ns":1786946090906108900,"word_count":838},"frontend/admin-panel/src/pages/Media.tsx":{"size":30239,"mtime_ns":1787056319679248800,"indexed_at_ns":1787056412326949600,"word_count":2368},"frontend/admin-panel/src/pages/Orders.tsx":{"size":47103,"mtime_ns":1787061673975370400,"indexed_at_ns":1787061887699530000,"word_count":3576},"frontend/admin-panel/src/pages/Pets.tsx":{"size":17485,"mtime_ns":1786954681833053600,"indexed_at_ns":1786955474865216500,"word_count":1264},"frontend/admin-panel/src/pages/PrescriptionsManager.tsx":{"size":20017,"mtime_ns":1787056319685764000,"indexed_at_ns":1787056412348725300,"word_count":1478},"frontend/admin-panel/src/pages/Products.tsx":{"size":99995,"mtime_ns":1787055476777432800,"indexed_at_ns":1787056208068458200,"word_count":6721},"frontend/admin-panel/src/pages/Reports.tsx":{"size":13073,"mtime_ns":1786894580141383900,"indexed_at_ns":1786946090950888800,"word_count":972},"frontend/admin-panel/src/pages/SeoSettingsPage.tsx":{"size":7361,"mtime_ns":1786885876852117800,"indexed_at_ns":1786946090964021800,"word_count":549},"frontend/admin-panel/src/pages/Settings.tsx":{"size":41127,"mtime_ns":1786948119780100900,"indexed_at_ns":1786954590114257900,"word_count":2650},"frontend/admin-panel/src/pages/SmartAdvisorManager.tsx":{"size":14321,"mtime_ns":1786799852443027400,"indexed_at_ns":1786863539783943500,"word_count":1073},"frontend/admin-panel/src/pages/SystemSettingsPage.tsx":{"size":7931,"mtime_ns":1786799852444030300,"indexed_at_ns":1786863539790462300,"word_count":575},"frontend/admin-panel/src/pages/TestimonialsManager.tsx":{"size":18160,"mtime_ns":1786799852445028000,"indexed_at_ns":1786863539796971000,"word_count":1311},"frontend/admin-panel/src/pages/UITexts.tsx":{"size":21687,"mtime_ns":1786954681835053100,"indexed_at_ns":1786955474947729800,"word_count":1702},"frontend/admin-panel/src/pages/Users.tsx":{"size":42561,"mtime_ns":1786883225813571300,"indexed_at_ns":1786946091025818600,"word_count":2830},"frontend/admin-panel/src/pages/Videos.tsx":{"size":23808,"mtime_ns":1786971396066471600,"indexed_at_ns":1787036705525249500,"word_count":1711},"frontend/admin-panel/src/pages/WholesaleApplications.tsx":{"size":6505,"mtime_ns":1786799852457805400,"indexed_at_ns":1786863539828590300,"word_count":503},"frontend/admin-panel/src/pages/Wiki.tsx":{"size":14792,"mtime_ns":1786885876868308700,"indexed_at_ns":1786946091044162500,"word_count":1144},"frontend/admin-panel/src/routes/adminRoutes.tsx":{"size":4775,"mtime_ns":1786972155977491100,"indexed_at_ns":1787036705544279600,"word_count":508},"frontend/admin-panel/src/services/api.ts":{"size":5190,"mtime_ns":1786896758433963000,"indexed_at_ns":1786946091056675900,"word_count":479},"frontend/admin-panel/src/store/adminAuthStore.ts":{"size":666,"mtime_ns":1786799852469037000,"indexed_at_ns":1786863539858627200,"word_count":65},"frontend/admin-panel/src/types/admin.ts":{"size":4023,"mtime_ns":1787056319688287000,"indexed_at_ns":1787056412503135200,"word_count":442},"frontend/admin-panel/tailwind.config.js":{"size":182,"mtime_ns":1783764561861721300,"indexed_at_ns":1786863539871727500,"word_count":20},"frontend/admin-panel/tsconfig.app.json":{"size":633,"mtime_ns":1787055476779566300,"indexed_at_ns":1787056213292143800,"word_count":48,"hashes":{"frontend/admin-panel/tsconfig.app.json":"2d9838ee1119342fd03bf7644781b8b6aced2cbdc908ff186cdd6ab7ab9ba1c4"}},"frontend/admin-panel/tsconfig.json":{"size":119,"mtime_ns":1783764561863393600,"indexed_at_ns":1786863680475351500,"word_count":15,"hashes":{"frontend/admin-panel/tsconfig.json":"7a6c2e21b6eaa2355b4e2ed29db2a767499a88498bde745cdccf3ba8c7f64f2b"}},"frontend/admin-panel/tsconfig.node.json":{"size":591,"mtime_ns":1783764561863923100,"indexed_at_ns":1786863680476356300,"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":1786863539894474200,"word_count":18},"frontend/application/AGENTS.md":{"size":760,"mtime_ns":1786885876870317000,"indexed_at_ns":1786946194631269100,"word_count":91,"hashes":{"frontend/application/agents.md":"26c7594b16f52dcd1085a81ac2dd55a924bf9badc3d339789c5a52657ad86ea7"}},"frontend/application/CLAUDE.md":{"size":11,"mtime_ns":1783764561866744500,"indexed_at_ns":1786863694066612200,"word_count":1,"hashes":{"frontend/application/claude.md":"0776fbbe8c29c6dc861efa70683090a370ab56dc77c22cb9de74895b4c783320"}},"frontend/application/README.md":{"size":1450,"mtime_ns":1783764561867354300,"indexed_at_ns":1786863694067611900,"word_count":155,"hashes":{"frontend/application/readme.md":"dd829cdf325092d859080ac1db3cbf2cca3198e72834f0f228495ef3c49a2240"}},"frontend/application/app/ClientLayout.tsx":{"size":5386,"mtime_ns":1786891855353571400,"indexed_at_ns":1786946091118817200,"word_count":486},"frontend/application/app/HomeClient.tsx":{"size":13086,"mtime_ns":1786971396071630400,"indexed_at_ns":1787036705615435000,"word_count":839},"frontend/application/app/about/page.tsx":{"size":6019,"mtime_ns":1786885876874317800,"indexed_at_ns":1786946091130517900,"word_count":507},"frontend/application/app/blog/[slug]/page.tsx":{"size":6663,"mtime_ns":1786885876877317400,"indexed_at_ns":1786946091138538500,"word_count":521},"frontend/application/app/blog/page.tsx":{"size":2058,"mtime_ns":1786885876878823400,"indexed_at_ns":1786946091144595700,"word_count":214},"frontend/application/app/catalog/CatalogClient.tsx":{"size":1389,"mtime_ns":1786872121566485100,"indexed_at_ns":1786877276794688700,"word_count":129},"frontend/application/app/catalog/page.tsx":{"size":1000,"mtime_ns":1786885876880832300,"indexed_at_ns":1786946091157620100,"word_count":99},"frontend/application/app/checkout/page.tsx":{"size":125,"mtime_ns":1783764561876442900,"indexed_at_ns":1786863539973147200,"word_count":13},"frontend/application/app/checkout/success/[id]/page.tsx":{"size":231,"mtime_ns":1783764561878668300,"indexed_at_ns":1786863539980152400,"word_count":31},"frontend/application/app/contact/page.tsx":{"size":1923,"mtime_ns":1786885876884352900,"indexed_at_ns":1786946091174222400,"word_count":169},"frontend/application/app/dashboard/page.tsx":{"size":133,"mtime_ns":1783764561880281000,"indexed_at_ns":1786863539993347900,"word_count":13},"frontend/application/app/error.tsx":{"size":383,"mtime_ns":1785148022478709000,"indexed_at_ns":1786863539998855700,"word_count":50},"frontend/application/app/layout.tsx":{"size":4549,"mtime_ns":1787038450542232400,"indexed_at_ns":1787048760743990600,"word_count":396},"frontend/application/app/loading.tsx":{"size":1373,"mtime_ns":1785148022487650000,"indexed_at_ns":1786863540025491400,"word_count":122},"frontend/application/app/not-found.tsx":{"size":124,"mtime_ns":1783764561891411400,"indexed_at_ns":1786863540032490900,"word_count":15},"frontend/application/app/page.tsx":{"size":2357,"mtime_ns":1786885876888872400,"indexed_at_ns":1786946091217128300,"word_count":224},"frontend/application/app/privacy/page.tsx":{"size":4367,"mtime_ns":1786885876892884700,"indexed_at_ns":1786946091229212900,"word_count":361},"frontend/application/app/profile/page.tsx":{"size":122,"mtime_ns":1783764561895258400,"indexed_at_ns":1786863540054231400,"word_count":13},"frontend/application/app/robots.ts":{"size":732,"mtime_ns":1787038450545041700,"indexed_at_ns":1787048760779705300,"word_count":68},"frontend/application/app/search/page.tsx":{"size":569,"mtime_ns":1786885876894884000,"indexed_at_ns":1786946091253347100,"word_count":65},"frontend/application/app/shop/[slug]/page.tsx":{"size":4439,"mtime_ns":1786885876896885400,"indexed_at_ns":1786946091261392900,"word_count":388},"frontend/application/app/shop/page.tsx":{"size":2025,"mtime_ns":1786885876899395900,"indexed_at_ns":1786946091268392700,"word_count":211},"frontend/application/app/sitemap.ts":{"size":2040,"mtime_ns":1786799852565744400,"indexed_at_ns":1786863540085699800,"word_count":191},"frontend/application/app/track/page.tsx":{"size":129,"mtime_ns":1783764561901903300,"indexed_at_ns":1786863540091699600,"word_count":13},"frontend/application/app/trust-seals/page.tsx":{"size":6722,"mtime_ns":1786885876903404600,"indexed_at_ns":1786946091292478900,"word_count":528},"frontend/application/app/videos/page.tsx":{"size":117,"mtime_ns":1783764561902986700,"indexed_at_ns":1786863540105289000,"word_count":13},"frontend/application/app/wiki/[slug]/page.tsx":{"size":2325,"mtime_ns":1784033954808355000,"indexed_at_ns":1786863540118520300,"word_count":234},"frontend/application/app/wiki/page.tsx":{"size":1242,"mtime_ns":1786885876905476200,"indexed_at_ns":1786946091316862200,"word_count":122},"frontend/application/components/AddressModal.tsx":{"size":16148,"mtime_ns":1786799852571178400,"indexed_at_ns":1786863540130732600,"word_count":1109},"frontend/application/components/ArchivePage.tsx":{"size":35159,"mtime_ns":1786965281354276400,"indexed_at_ns":1787036705795226700,"word_count":2747},"frontend/application/components/AuthModal.tsx":{"size":44845,"mtime_ns":1786891855357691900,"indexed_at_ns":1786946091341971300,"word_count":2978},"frontend/application/components/B2BPortal.tsx":{"size":14014,"mtime_ns":1786894580156857600,"indexed_at_ns":1786946091352003200,"word_count":1094},"frontend/application/components/BackButton.tsx":{"size":1120,"mtime_ns":1786965281357277800,"indexed_at_ns":1787036705811698000,"word_count":117},"frontend/application/components/BlogPage.tsx":{"size":24632,"mtime_ns":1786965281359791500,"indexed_at_ns":1787036705822321700,"word_count":1511},"frontend/application/components/CartDrawer.tsx":{"size":20230,"mtime_ns":1786799852599390300,"indexed_at_ns":1786863540173272000,"word_count":1339},"frontend/application/components/CheckoutPage.tsx":{"size":49233,"mtime_ns":1786965281362524000,"indexed_at_ns":1787036705838034700,"word_count":3309},"frontend/application/components/ContactFormClient.tsx":{"size":10541,"mtime_ns":1786885876918218600,"indexed_at_ns":1786946091414963400,"word_count":775},"frontend/application/components/DeleteConfirmModal.tsx":{"size":2328,"mtime_ns":1786799852608752300,"indexed_at_ns":1786863540195843400,"word_count":195},"frontend/application/components/EnamadBadge.tsx":{"size":1516,"mtime_ns":1786799852612361900,"indexed_at_ns":1786863540202352600,"word_count":114},"frontend/application/components/ErrorBoundary.tsx":{"size":2617,"mtime_ns":1786799852614549600,"indexed_at_ns":1786863540208609600,"word_count":235},"frontend/application/components/ErrorPages.tsx":{"size":2809,"mtime_ns":1786885876920726400,"indexed_at_ns":1786946091441576800,"word_count":243},"frontend/application/components/FeaturedProducts.tsx":{"size":9923,"mtime_ns":1786799852624407000,"indexed_at_ns":1786863540221425100,"word_count":840},"frontend/application/components/Footer.tsx":{"size":12573,"mtime_ns":1786974487725686400,"indexed_at_ns":1787036705876142300,"word_count":847},"frontend/application/components/Header.tsx":{"size":28541,"mtime_ns":1787041925937035500,"indexed_at_ns":1787048760926003700,"word_count":2015},"frontend/application/components/HeaderButton.tsx":{"size":2242,"mtime_ns":1786799852637156100,"indexed_at_ns":1786863540242057800,"word_count":208},"frontend/application/components/Hero.tsx":{"size":18482,"mtime_ns":1787041925938035400,"indexed_at_ns":1787048760937546000,"word_count":1545},"frontend/application/components/IngredientWiki.tsx":{"size":20337,"mtime_ns":1786965281374206800,"indexed_at_ns":1787036705899368800,"word_count":1496},"frontend/application/components/LoginModal.tsx":{"size":13846,"mtime_ns":1786885876932267500,"indexed_at_ns":1786946091505536900,"word_count":1121},"frontend/application/components/MaintenancePage.tsx":{"size":3686,"mtime_ns":1786946249984693000,"indexed_at_ns":1786948020776802400,"word_count":313},"frontend/application/components/NetworkBanner.tsx":{"size":2350,"mtime_ns":1786799852662138900,"indexed_at_ns":1786863540279146900,"word_count":214},"frontend/application/components/OrderDetailsModal.tsx":{"size":36146,"mtime_ns":1787056525031027400,"indexed_at_ns":1787061531144841600,"word_count":2479},"frontend/application/components/OrderSuccess.tsx":{"size":6396,"mtime_ns":1786799852665542300,"indexed_at_ns":1786863540291787200,"word_count":521},"frontend/application/components/OrderTracking.tsx":{"size":9106,"mtime_ns":1786965281380189400,"indexed_at_ns":1787036705931705500,"word_count":663},"frontend/application/components/PetProfile.tsx":{"size":81062,"mtime_ns":1786965281382201600,"indexed_at_ns":1787036705936930900,"word_count":5716},"frontend/application/components/PrescriptionUploadModal.tsx":{"size":18907,"mtime_ns":1786965281385656300,"indexed_at_ns":1787036705943755800,"word_count":1331},"frontend/application/components/ProductPage.tsx":{"size":68478,"mtime_ns":1787055297195058900,"indexed_at_ns":1787055353519520300,"word_count":4863},"frontend/application/components/SafeImage.tsx":{"size":2142,"mtime_ns":1786971396074960500,"indexed_at_ns":1787036705963253100,"word_count":184},"frontend/application/components/SearchResultsPage.tsx":{"size":8335,"mtime_ns":1786799852701578200,"indexed_at_ns":1786863540335701600,"word_count":594},"frontend/application/components/SearchableSelect.tsx":{"size":4375,"mtime_ns":1785575516155554800,"indexed_at_ns":1786863540342211100,"word_count":336},"frontend/application/components/Skeleton.tsx":{"size":3084,"mtime_ns":1783764561943996900,"indexed_at_ns":1786863540349888700,"word_count":291},"frontend/application/components/SmartAdvisor.tsx":{"size":33571,"mtime_ns":1786894580167908400,"indexed_at_ns":1786946091629542000,"word_count":2534},"frontend/application/components/TickerBanner.tsx":{"size":1605,"mtime_ns":1786885876960835800,"indexed_at_ns":1786946091635653200,"word_count":140},"frontend/application/components/Tooltip.tsx":{"size":2771,"mtime_ns":1786885876964103200,"indexed_at_ns":1786946091641165300,"word_count":227},"frontend/application/components/TopUpModal.tsx":{"size":9142,"mtime_ns":1786890779336880900,"indexed_at_ns":1786946091647541000,"word_count":717},"frontend/application/components/UserDashboard.tsx":{"size":91855,"mtime_ns":1786965281395194200,"indexed_at_ns":1787036706011572900,"word_count":5838},"frontend/application/components/VetGallery.tsx":{"size":8242,"mtime_ns":1786971396084533700,"indexed_at_ns":1787036706016981900,"word_count":641},"frontend/application/components/VideosPage.tsx":{"size":7000,"mtime_ns":1787048863693787300,"indexed_at_ns":1787055187240955400,"word_count":531},"frontend/application/components/__tests__/CartDrawer.test.tsx":{"size":3197,"mtime_ns":1786799852761825800,"indexed_at_ns":1786863540412200800,"word_count":285},"frontend/application/components/__tests__/FeaturedProducts.test.tsx":{"size":3115,"mtime_ns":1786799852765632100,"indexed_at_ns":1786863540419710400,"word_count":242},"frontend/application/components/__tests__/Footer.test.tsx":{"size":1649,"mtime_ns":1786885876976595100,"indexed_at_ns":1786946091695116800,"word_count":139},"frontend/application/components/__tests__/Header.test.tsx":{"size":3277,"mtime_ns":1786799852770019100,"indexed_at_ns":1786863540434730400,"word_count":261},"frontend/application/components/__tests__/Hero.test.tsx":{"size":1980,"mtime_ns":1786799852776010800,"indexed_at_ns":1786863540442340400,"word_count":192},"frontend/application/components/__tests__/Tooltip.test.tsx":{"size":1508,"mtime_ns":1786799852784348900,"indexed_at_ns":1786863540450854900,"word_count":137},"frontend/application/eslint.config.mjs":{"size":465,"mtime_ns":1785651092993484500,"indexed_at_ns":1786863540456944500,"word_count":42},"frontend/application/lib/data/products.ts":{"size":103754,"mtime_ns":1787040318681263400,"indexed_at_ns":1787048761176614400,"word_count":9701},"frontend/application/lib/data/provinces.ts":{"size":2993,"mtime_ns":1785571725610676000,"indexed_at_ns":1786863540475337300,"word_count":203},"frontend/application/lib/data/scientificTerms.ts":{"size":18042,"mtime_ns":1786958978743097300,"indexed_at_ns":1786960870219714000,"word_count":1756},"frontend/application/lib/hooks/useNetworkStatus.ts":{"size":610,"mtime_ns":1786799852793488000,"indexed_at_ns":1786863540490904900,"word_count":59},"frontend/application/lib/services/api.ts":{"size":3694,"mtime_ns":1786954681844297300,"indexed_at_ns":1786955475523413700,"word_count":391},"frontend/application/lib/services/authService.ts":{"size":4524,"mtime_ns":1786885876986184800,"indexed_at_ns":1786946091788097500,"word_count":509},"frontend/application/lib/services/orderService.ts":{"size":2428,"mtime_ns":1786799852810726500,"indexed_at_ns":1786863540512358400,"word_count":279},"frontend/application/lib/services/productService.ts":{"size":13279,"mtime_ns":1787055297200644500,"indexed_at_ns":1787055353700737000,"word_count":1177},"frontend/application/lib/services/videoService.ts":{"size":1234,"mtime_ns":1786967385871970500,"indexed_at_ns":1787036706151302400,"word_count":144},"frontend/application/lib/store/__tests__/cartStore.test.ts":{"size":4430,"mtime_ns":1786799852822036900,"indexed_at_ns":1786863540533965000,"word_count":386},"frontend/application/lib/store/__tests__/settingsStore.test.ts":{"size":1949,"mtime_ns":1783856793043803200,"indexed_at_ns":1786863540540796300,"word_count":194},"frontend/application/lib/store/__tests__/userStore.test.ts":{"size":3639,"mtime_ns":1786799852825547700,"indexed_at_ns":1786863540547305500,"word_count":289},"frontend/application/lib/store/cartStore.ts":{"size":6972,"mtime_ns":1786895436235684300,"indexed_at_ns":1786946091844031100,"word_count":697},"frontend/application/lib/store/settingsStore.ts":{"size":3630,"mtime_ns":1786948119787096800,"indexed_at_ns":1786954590768008200,"word_count":371},"frontend/application/lib/store/uiStore.ts":{"size":872,"mtime_ns":1786799852833588000,"indexed_at_ns":1786863540568531000,"word_count":100},"frontend/application/lib/store/usePetStore.ts":{"size":8680,"mtime_ns":1786954681845300600,"indexed_at_ns":1786955475589806900,"word_count":850},"frontend/application/lib/store/userStore.ts":{"size":10236,"mtime_ns":1786885876994698300,"indexed_at_ns":1786946091871573500,"word_count":883},"frontend/application/lib/types.ts":{"size":2194,"mtime_ns":1786799852840111800,"indexed_at_ns":1786863540590778900,"word_count":237},"frontend/application/lib/utils.ts":{"size":478,"mtime_ns":1786799852847284000,"indexed_at_ns":1786863540596780000,"word_count":61},"frontend/application/next.config.ts":{"size":1932,"mtime_ns":1786971396095675600,"indexed_at_ns":1787036706220201800,"word_count":181},"frontend/application/package.json":{"size":844,"mtime_ns":1786799852863132300,"indexed_at_ns":1786863680477356100,"word_count":72,"hashes":{"frontend/application/package.json":"3ffd8078128454f22679add155e8304ffb9476e630e847cd895ffb1422db1b5f"}},"frontend/application/postcss.config.mjs":{"size":94,"mtime_ns":1783764561988252100,"indexed_at_ns":1786863540617596000,"word_count":13},"frontend/application/public/assets/images/hero-section-image.png":{"size":6990105,"mtime_ns":1783856793095044200,"indexed_at_ns":1786863694135258700,"word_count":267685,"hashes":{"frontend/application/public/assets/images/hero-section-image.png":"13c3a8c4b520c0f0500833b266f6e4755a2c0e86904dc89c1d0243136cd9e090"}},"frontend/application/public/assets/images/regenerated_image_1779109861747.png":{"size":2269101,"mtime_ns":1783764562014110300,"indexed_at_ns":1786863694155060900,"word_count":84979,"hashes":{"frontend/application/public/assets/images/regenerated_image_1779109861747.png":"1dad8a2330655c9068cefc35c7e69370d06305219d6a38d82630043805ac39a9"}},"frontend/application/public/file.svg":{"size":391,"mtime_ns":1783764562016213600,"indexed_at_ns":1786863694164180800,"word_count":50,"hashes":{"frontend/application/public/file.svg":"1119e2ef995a10263472a09138d843b9f5924e1f4b6f84d2168226327ace0be1"}},"frontend/application/public/fonts/A-Iranian-Sans/A-Iranian-Sans/read me!.txt":{"size":281,"mtime_ns":1783856793098052000,"indexed_at_ns":1786863694070120000,"word_count":15,"hashes":{"frontend/application/public/fonts/a-iranian-sans/a-iranian-sans/read me!.txt":"6c2a924fd200fa301020be822d33307191d295b2c6b7e731785c02929b6a0fb1"}},"frontend/application/public/fonts/IranNastaliq/IranNastaliq/read me!.txt":{"size":281,"mtime_ns":1783856793107660400,"indexed_at_ns":1786863694072123000,"word_count":15,"hashes":{"frontend/application/public/fonts/irannastaliq/irannastaliq/read me!.txt":"79166364479f09a129d20f508898f5a23d90937b337db1d2c2a64c2cda022e1f"}},"frontend/application/public/fonts/sahel-font-v3.4.0/CHANGELOG.md":{"size":8519,"mtime_ns":1783856793113660500,"indexed_at_ns":1786863694073120500,"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":1786863694075624200,"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":1786863694169221500,"word_count":10881,"hashes":{"frontend/application/public/fonts/sahel-font-v3.4.0/sample-variable.gif":"0825bc4a5adf33cea89ddbb0754a9951481f92beed22cc4ae9be5c59c8847c7f"}},"frontend/application/public/fonts/shabnam-font-v5.0.1/CHANGELOG.md":{"size":7177,"mtime_ns":1783856793230118600,"indexed_at_ns":1786863694077307600,"word_count":951,"hashes":{"frontend/application/public/fonts/shabnam-font-v5.0.1/changelog.md":"575542fd432a1b489570fce6eead03ca964b61d038ee9f3bd9181d6c07fec8b2"}},"frontend/application/public/fonts/shabnam-font-v5.0.1/README.md":{"size":3696,"mtime_ns":1783856793279542700,"indexed_at_ns":1786863694079312500,"word_count":283,"hashes":{"frontend/application/public/fonts/shabnam-font-v5.0.1/readme.md":"f9e5953869832730d4169ced95c5b978ef4d156f0114de6b27f37025fd5e7054"}},"frontend/application/public/fonts/shabnam-font-v5.0.1/sample.png":{"size":85019,"mtime_ns":1783856793315146800,"indexed_at_ns":1786863694176105400,"word_count":2615,"hashes":{"frontend/application/public/fonts/shabnam-font-v5.0.1/sample.png":"01816e4165a20a19dbd7c57390bc7d06119e51479c968568396df53bd3116fec"}},"frontend/application/public/fonts/vazirmatn-v33.003/AUTHORS.txt":{"size":339,"mtime_ns":1783856793316155600,"indexed_at_ns":1786863694080379500,"word_count":55,"hashes":{"frontend/application/public/fonts/vazirmatn-v33.003/authors.txt":"0c05de46944017b09527017814eae25279495af7920f59181720a034e84ab759"}},"frontend/application/public/fonts/vazirmatn-v33.003/CHANGELOG.md":{"size":38550,"mtime_ns":1783856793317690100,"indexed_at_ns":1786863694082379200,"word_count":5086,"hashes":{"frontend/application/public/fonts/vazirmatn-v33.003/changelog.md":"323e095d50626f73023efa85133687134ad8808333e908c41b9a3e61f225edbf"}},"frontend/application/public/fonts/vazirmatn-v33.003/OFL.txt":{"size":4391,"mtime_ns":1783856793319422000,"indexed_at_ns":1786863694084379300,"word_count":671,"hashes":{"frontend/application/public/fonts/vazirmatn-v33.003/ofl.txt":"756a84fec3f8eaf480849631710c21e3d503b11e50081b84fb4d31a4d970208a"}},"frontend/application/public/fonts/vazirmatn-v33.003/README.md":{"size":2339,"mtime_ns":1783856793320489000,"indexed_at_ns":1786863694085379400,"word_count":270,"hashes":{"frontend/application/public/fonts/vazirmatn-v33.003/readme.md":"cee7881a2b9d08b4fe358b683fdde88fa7f8fafb7f53852216a080d291460ca0"}},"frontend/application/public/fonts/vazirmatn-v33.003/\u0631\u0627\u0647\u0646\u0645\u0627.txt":{"size":211,"mtime_ns":1783856793668096800,"indexed_at_ns":1786863694087379500,"word_count":14,"hashes":{"frontend/application/public/fonts/vazirmatn-v33.003/\u0631\u0627\u0647\u0646\u0645\u0627.txt":"aa327615c816569057ced5f2c9993f791a1521e2bd4eab0ab992baf173159217"}},"frontend/application/public/globe.svg":{"size":1035,"mtime_ns":1783764562016720700,"indexed_at_ns":1786863694180121600,"word_count":154,"hashes":{"frontend/application/public/globe.svg":"93cd319cc2847a02f77034690697e90991e4e520dddb486c49db6d157f61a410"}},"frontend/application/public/next.svg":{"size":1375,"mtime_ns":1783764562018238900,"indexed_at_ns":1786863694181884500,"word_count":183,"hashes":{"frontend/application/public/next.svg":"b30f61c9863dba2a8d332f310e20fbca37330c1c68612d0f0b453a0b202e836a"}},"frontend/application/public/vercel.svg":{"size":128,"mtime_ns":1783764562019253000,"indexed_at_ns":1786863694184891200,"word_count":12,"hashes":{"frontend/application/public/vercel.svg":"c88132dfd92b424991c922c4121ed83833f9a07d7046def18dd3ccd44ac25e84"}},"frontend/application/public/window.svg":{"size":385,"mtime_ns":1783764562019253000,"indexed_at_ns":1786863694190022700,"word_count":63,"hashes":{"frontend/application/public/window.svg":"20a1be5f2149ff9ae12c5facdd302bc535ba215694bf31eea01cd014322d20fa"}},"frontend/application/tsconfig.json":{"size":750,"mtime_ns":1786799852865640000,"indexed_at_ns":1786863680478356000,"word_count":61,"hashes":{"frontend/application/tsconfig.json":"adcade0f962ec5888be99b4b1402d98812cfd570b0c5669bda73142b2cb9210d"}},"frontend/application/vitest.config.ts":{"size":244,"mtime_ns":1786799852868652900,"indexed_at_ns":1786863544320193300,"word_count":25},"frontend/application/vitest.setup.ts":{"size":532,"mtime_ns":1786799852870650700,"indexed_at_ns":1786863544326240200,"word_count":58},"metadata.json":{"size":334,"mtime_ns":1783856793672137200,"indexed_at_ns":1786863680479357400,"word_count":35,"hashes":{"metadata.json":"c44b4c4ba60752554ceae65e2f22bddb756cbeb25a4a31ee79160b6eb182255a"}},"package.json":{"size":992,"mtime_ns":1783856793674105800,"indexed_at_ns":1786863680481374200,"word_count":118,"hashes":{"package.json":"0157b70b08d4db87730d29b1da6749d719cc3f815c2c01d0c5cd29042f4d0bcf"}},"prometheus.yml":{"size":164,"mtime_ns":1783764562027779300,"indexed_at_ns":1786863694089379300,"word_count":13,"hashes":{"prometheus.yml":"6efadd3eaf7bcdf8e425488e92b4262447caba278f55a179b9bd4a12d5dfc721"}},"scripts/backup_db.sh":{"size":1362,"mtime_ns":1786799852876784600,"indexed_at_ns":1786863680482378900,"word_count":134,"hashes":{"scripts/backup_db.sh":"f90cf2d0c954f3eaca83566ccb365bff62fd97a2af0225816c19902ee4dfdd6c"}},"scripts/compose.prod.yml":{"size":2090,"mtime_ns":1786877667023527700,"indexed_at_ns":1786946194640744100,"word_count":117,"hashes":{"scripts/compose.prod.yml":"ec4c7444d425a241f744073f8c860282daa97a899b67b302bef2c2d0d92062f5"}},"scripts/compose.stage.yml":{"size":2481,"mtime_ns":1786883225890948000,"indexed_at_ns":1786946194641744700,"word_count":134,"hashes":{"scripts/compose.stage.yml":"84cdc3265d9a75ab71d28d033b18c0edc7738d768b01b1e5f4c6bd3dba3e020b"}},"scripts/deploy.sh":{"size":3353,"mtime_ns":1786972155980490900,"indexed_at_ns":1787036710457507400,"word_count":352,"hashes":{"scripts/deploy.sh":"06615e8fcd2c4244ce6b0f302fbebbff27551da50d1e3e1f8298b4a8b384a5b0"}},"scripts/open-browsers.js":{"size":1551,"mtime_ns":1783764562028780800,"indexed_at_ns":1786863544379330800,"word_count":202},"scripts/start-dev.js":{"size":1332,"mtime_ns":1783766217319524600,"indexed_at_ns":1786863544385074200,"word_count":148},"start.sh":{"size":26,"mtime_ns":1784033954813080300,"indexed_at_ns":1786863680484972600,"word_count":4,"hashes":{"start.sh":"694c258b963c309734a3316c770f5fef29703bc6f24754b04155fd8db94cf862"}},"swagger.yml":{"size":95785,"mtime_ns":1786799852892091600,"indexed_at_ns":1786863694094028500,"word_count":7031,"hashes":{"swagger.yml":"9ee34edd53820461e0a043109976532a305cb26a4ff9e265eb8a5883dd42dd53"}},".antigravity/instructions.md":{"size":226,"mtime_ns":1786870552833405800,"indexed_at_ns":1786877281836081000,"word_count":29,"hashes":{".antigravity/instructions.md":"8d8f5c1bbdbb7b8045e02b06a50e68d3fcfabfb2d65f8ac1cd86168dc8a8cc96"}},".antigravity/workflows/graphify.md":{"size":43292,"mtime_ns":1786870552837921500,"indexed_at_ns":1786877281837081200,"word_count":5442,"hashes":{".antigravity/workflows/graphify.md":"0c16b701a50d64f741f6de107c49584012a8dd7f5e922af9f79754540629e2fe"}},".agents/rules/graphify.md":{"size":933,"mtime_ns":1786870552830271100,"indexed_at_ns":1786877281724557600,"word_count":127,"hashes":{".agents/rules/graphify.md":"26f2577a68d808f7f33ec3e418b95b635aec180d93b22b975e9ae67c47e361c8"}},".agents/workflows/graphify.md":{"size":229,"mtime_ns":1786870552832398300,"indexed_at_ns":1786877281726150800,"word_count":37,"hashes":{".agents/workflows/graphify.md":"a81e2d017e0669c71099362b20854e4d9ed68753f1c240d0682120bdb9aa3c72"}},"backend/src/payment/dto/initiate-payment.dto.ts":{"size":775,"mtime_ns":1786870552874246400,"indexed_at_ns":1786877271375657600,"word_count":69},"backend/src/payment/dto/verify-payment.dto.ts":{"size":1421,"mtime_ns":1786894580126857900,"indexed_at_ns":1786946086330048800,"word_count":126},"backend/src/payment/payment.controller.ts":{"size":8567,"mtime_ns":1786891855343844100,"indexed_at_ns":1786946086341392100,"word_count":738},"backend/src/payment/payment.module.ts":{"size":511,"mtime_ns":1786870552877757300,"indexed_at_ns":1786877271399883800,"word_count":53},"backend/src/payment/payment.service.ts":{"size":29807,"mtime_ns":1786892646036748700,"indexed_at_ns":1786946086353461100,"word_count":2694},"backend/src/payment/zibal.service.ts":{"size":12238,"mtime_ns":1786891855350041800,"indexed_at_ns":1786946086361175000,"word_count":1211},"frontend/application/app/payment/verify/page.tsx":{"size":14338,"mtime_ns":1786891855356078600,"indexed_at_ns":1786946091223701800,"word_count":1094},"AGENTS.md":{"size":226,"mtime_ns":1786870552862708600,"indexed_at_ns":1786877281874765400,"word_count":29,"hashes":{"agents.md":"b664c2bb6d85e009d7495bcd9c3d52c419176473cd4e19362fd4256616076151"}},"frontend/admin-panel/src/pages/SmsSettingsPage.tsx":{"size":78751,"mtime_ns":1787061851075716800,"indexed_at_ns":1787061887769281400,"word_count":5417},"backend/src/payment/dto/admin-transaction-filter.dto.ts":{"size":2028,"mtime_ns":1786870552873240900,"indexed_at_ns":1786877271369346300,"word_count":191},"frontend/admin-panel/src/pages/Transactions.tsx":{"size":38091,"mtime_ns":1786894580150141800,"indexed_at_ns":1786946091012227900,"word_count":2640},"backend/src/payment/interfaces/payment-gateway.interface.ts":{"size":1330,"mtime_ns":1786870552876751100,"indexed_at_ns":1786877271387776900,"word_count":128},"frontend/application/components/catalog/CatalogPageSpread.tsx":{"size":24099,"mtime_ns":1786885876979161800,"indexed_at_ns":1786946091728992400,"word_count":1912},"frontend/application/components/catalog/FlipbookCatalog.tsx":{"size":32968,"mtime_ns":1786885876982161900,"indexed_at_ns":1786946091735990100,"word_count":2807},"frontend/application/components/catalog/ProductDetailModal.tsx":{"size":7763,"mtime_ns":1786872121572482100,"indexed_at_ns":1786877277178724400,"word_count":557},"backend/scripts/generate-openapi.d.ts":{"size":11,"mtime_ns":1786883225777483700,"indexed_at_ns":1786946085729741600,"word_count":2},"backend/scripts/generate-openapi.js":{"size":2965,"mtime_ns":1786883225779120000,"indexed_at_ns":1786946085735928200,"word_count":309},"backend/src/admin/dto/user.dto.ts":{"size":2793,"mtime_ns":1786883225785846400,"indexed_at_ns":1786946085817544400,"word_count":259},"backend/src/admin/ssl.controller.ts":{"size":3357,"mtime_ns":1786877667007047900,"indexed_at_ns":1786946085862558800,"word_count":296},"backend/src/admin/ssl.service.ts":{"size":6366,"mtime_ns":1786877667009063600,"indexed_at_ns":1786946085870189500,"word_count":595},"backend/src/auth/auth.constants.ts":{"size":462,"mtime_ns":1786883225787855500,"indexed_at_ns":1786946085910556000,"word_count":32},"backend/src/common/utils/phone.utils.ts":{"size":1089,"mtime_ns":1786883225801396000,"indexed_at_ns":1786946086201654400,"word_count":149},"backend/src/reviews/dto/create-review.dto.ts":{"size":895,"mtime_ns":1786944769513302000,"indexed_at_ns":1786946086494267400,"word_count":92},"backend/src/reviews/dto/update-review.dto.ts":{"size":519,"mtime_ns":1786944769515314300,"indexed_at_ns":1786946086499267300,"word_count":53},"backend/src/reviews/reviews.controller.ts":{"size":3221,"mtime_ns":1786944769516312000,"indexed_at_ns":1786946086504447100,"word_count":314},"backend/src/reviews/reviews.module.ts":{"size":374,"mtime_ns":1786944769517310800,"indexed_at_ns":1786946086510019800,"word_count":38},"backend/src/reviews/reviews.service.ts":{"size":6255,"mtime_ns":1786944769518311000,"indexed_at_ns":1786946086514718600,"word_count":684},"backend/src/settings/default-ui-texts.ts":{"size":10275,"mtime_ns":1786946249961418900,"indexed_at_ns":1786948015970729400,"word_count":819},"backend/src/settings/dto/sms-log-query.dto.ts":{"size":1306,"mtime_ns":1786883225805456300,"indexed_at_ns":1786946086541006400,"word_count":125},"backend/src/tickets/dto/create-ticket.dto.ts":{"size":2256,"mtime_ns":1786890779319295100,"indexed_at_ns":1786946086613116500,"word_count":201},"backend/src/tickets/dto/ticket-query.dto.ts":{"size":1074,"mtime_ns":1786890779319295100,"indexed_at_ns":1786946086618690800,"word_count":106},"backend/src/tickets/tickets.controller.ts":{"size":3095,"mtime_ns":1786890779321298500,"indexed_at_ns":1786946086625253800,"word_count":291},"backend/src/tickets/tickets.module.ts":{"size":374,"mtime_ns":1786890779322296800,"indexed_at_ns":1786946086630763500,"word_count":38},"backend/src/tickets/tickets.service.ts":{"size":7221,"mtime_ns":1786890779323295600,"indexed_at_ns":1786946086636270900,"word_count":779},"frontend/admin-panel/src/pages/Reviews.tsx":{"size":21507,"mtime_ns":1786944769523816800,"indexed_at_ns":1786946090956397100,"word_count":1540},"frontend/admin-panel/src/pages/SslSettingsPage.tsx":{"size":26036,"mtime_ns":1786877667019013700,"indexed_at_ns":1786946090988586900,"word_count":1913},"frontend/admin-panel/src/pages/Tickets.tsx":{"size":20881,"mtime_ns":1786890779327298800,"indexed_at_ns":1786946091006127300,"word_count":1511},"frontend/application/components/BannerPlacement.tsx":{"size":7607,"mtime_ns":1786946249971933900,"indexed_at_ns":1786948020684317000,"word_count":523},"frontend/application/components/BrandLogo.tsx":{"size":3103,"mtime_ns":1786946249972931000,"indexed_at_ns":1786948020695524700,"word_count":272},"frontend/application/components/ProductReviews.tsx":{"size":16108,"mtime_ns":1787048863691774800,"indexed_at_ns":1787055187036816200,"word_count":1194},"frontend/application/lib/services/ticketService.ts":{"size":1569,"mtime_ns":1786890779340901800,"indexed_at_ns":1786946091806644600,"word_count":170},"frontend/admin-panel/src/components/ui/PriceInput.tsx":{"size":2633,"mtime_ns":1786948119771162400,"indexed_at_ns":1786954589946615200,"word_count":267},"frontend/admin-panel/src/components/ui/Badge.tsx":{"size":1155,"mtime_ns":1786954681822897500,"indexed_at_ns":1786955474687409500,"word_count":122},"frontend/admin-panel/src/components/ui/FormField.tsx":{"size":1683,"mtime_ns":1786954681823527000,"indexed_at_ns":1786955474700715800,"word_count":148},"frontend/admin-panel/src/components/ui/ImagePreviewModal.tsx":{"size":3351,"mtime_ns":1786954681824534900,"indexed_at_ns":1786955474706795000,"word_count":270},"frontend/admin-panel/src/components/ui/Input.tsx":{"size":1747,"mtime_ns":1786954681825535900,"indexed_at_ns":1786955474713870800,"word_count":147},"frontend/admin-panel/src/components/ui/Select.tsx":{"size":1881,"mtime_ns":1786954681828537500,"indexed_at_ns":1786955474739346400,"word_count":160},"frontend/admin-panel/src/components/ui/Textarea.tsx":{"size":1287,"mtime_ns":1786954681828537500,"indexed_at_ns":1786955474757094100,"word_count":110},"frontend/admin-panel/src/components/ui/ToggleSwitch.tsx":{"size":1623,"mtime_ns":1786954681830044900,"indexed_at_ns":1786955474763662100,"word_count":143},"backend/prisma/tsconfig.json":{"size":194,"mtime_ns":1786961195300236300,"indexed_at_ns":1786961249762864500,"word_count":17,"hashes":{"backend/prisma/tsconfig.json":"0308b15b67bad714ff5f1b6b73f64ae46f98d5190cd6092abb1fb67885d67be1"}},"backend/src/admin/dto/product.dto.ts":{"size":5521,"mtime_ns":1787040318671207500,"indexed_at_ns":1787048754796479300,"word_count":447},"backend/src/doctors/doctors.controller.ts":{"size":1536,"mtime_ns":1786971396031564300,"indexed_at_ns":1787036700166586200,"word_count":143},"backend/src/doctors/doctors.module.ts":{"size":374,"mtime_ns":1786971396035575100,"indexed_at_ns":1787036700171585700,"word_count":38},"backend/src/doctors/doctors.service.ts":{"size":2399,"mtime_ns":1786971396038562600,"indexed_at_ns":1787036700176668100,"word_count":277},"frontend/admin-panel/src/pages/DoctorsManager.tsx":{"size":24007,"mtime_ns":1786971396063351700,"indexed_at_ns":1787036705397186000,"word_count":1765},"frontend/application/components/TestimonialsSection.tsx":{"size":6463,"mtime_ns":1786972155979490700,"indexed_at_ns":1787036705990518400,"word_count":494},"frontend/application/components/VideoModalPlayer.tsx":{"size":23237,"mtime_ns":1787061337636422600,"indexed_at_ns":1787061531297702800,"word_count":1737},"frontend/application/components/PodcastPlayerModal.tsx":{"size":18141,"mtime_ns":1787055297193056900,"indexed_at_ns":1787055353509243600,"word_count":1488},"frontend/application/components/PodcastInlinePlayer.tsx":{"size":17050,"mtime_ns":1787055297190051700,"indexed_at_ns":1787055353502731500,"word_count":1384}} \ No newline at end of file +{".ai_agency/AGENCY.md":{"size":8757,"mtime_ns":1785148021979607300,"indexed_at_ns":1786863693890454700,"word_count":1161,"hashes":{".ai_agency/agency.md":"88c7c13583a91fc7e41ce055fede9dce20f181e8d264557808989965e83a9030"}},".ai_agency/agents/00_intake.md":{"size":3819,"mtime_ns":1785148021984319000,"indexed_at_ns":1786863693892455200,"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":1786863693894964400,"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":1786863693896964700,"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":1786863693898470300,"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":1786863693899999300,"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":1786863693901997700,"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":1786863693902997800,"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":1786863693905070800,"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":1786863693907111900,"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":1786863693908113400,"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":1786863693910113400,"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":1786863693912113300,"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":1786863693913112900,"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":1786863693914617900,"word_count":34,"hashes":{".ai_agency/memory/agent_outputs/readme.txt":"49b19b781e865081a74a0a87282e6c266e373f443a79e0758ef60a6e644c6e04"}},".ai_agency/memory/backlog.json":{"size":10711,"mtime_ns":1785330750958890900,"indexed_at_ns":1786863680433252400,"word_count":981,"hashes":{".ai_agency/memory/backlog.json":"6bf3150a1877d03d03b368df21b84071381b1bb8cd03e3721fa9f8e6c38355be"}},".ai_agency/memory/scratchpad.md":{"size":1879,"mtime_ns":1785148022065114400,"indexed_at_ns":1786863693916623700,"word_count":249,"hashes":{".ai_agency/memory/scratchpad.md":"9d0f687cf8e95c6335f1efb070da8029878417c28117e3b89aa8536ad70a5b95"}},".ai_agency/memory/state.json":{"size":3654,"mtime_ns":1785330750963913800,"indexed_at_ns":1786863680437228800,"word_count":254,"hashes":{".ai_agency/memory/state.json":"1204676f8f295d89733888bb87936061b7a700df0cc936fbf08fd5269b534e8d"}},".ai_agency/orchestrate.py":{"size":6800,"mtime_ns":1785148022072662500,"indexed_at_ns":1786863680437736800,"word_count":644,"hashes":{".ai_agency/orchestrate.py":"90ec787fdd4c71f5203c56b6899aadcc26e6e0bad0cc576d2f982aa42eed42e1"}},".ai_agency/specs/api_contract.md":{"size":1515,"mtime_ns":1785148022077664900,"indexed_at_ns":1786863693918623100,"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":1786863693919623000,"word_count":99,"hashes":{".ai_agency/specs/architecture_spec.md":"6269043f6a144e8ac86ff1db7e014075185e5675a4a0ee23e99e70d88253b8af"}},".ai_agency/specs/prd.md":{"size":724,"mtime_ns":1785148022087251600,"indexed_at_ns":1786863693921188600,"word_count":96,"hashes":{".ai_agency/specs/prd.md":"1c6d5a0ec8a709a2b3aed28225f5fe148ad2d75851d45699187678d055947b11"}},".ai_agency/specs/project_health.md":{"size":444,"mtime_ns":1785148022098314600,"indexed_at_ns":1786863693923194300,"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":1786863693924698200,"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":1786863693926808400,"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":1786863693927808600,"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":1786863693929808600,"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":1786863693931808300,"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":1786863693932808200,"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":1786863693934808700,"word_count":150,"hashes":{".ai_agency/specs/reviews/ux_review.md":"b8a52f324e36fcc2d046cc903a05903057098a67a397ae6442d6c825091f4513"}},".claude/CLAUDE.md":{"size":226,"mtime_ns":1786870552838920200,"indexed_at_ns":1786877281839080500,"word_count":29,"hashes":{".claude/claude.md":"c6f7fc2f062904d246b700d446ba3ad03e77f41809b12eccfb5e090a11f4fad2"}},".claude/settings.json":{"size":479,"mtime_ns":1786870552841922800,"indexed_at_ns":1786877281619276700,"word_count":38,"hashes":{".claude/settings.json":"0aaafba2cbd7dd67f7d69fa2f01b747c9a72f56ee421a40825521f937caec82b"}},".claude/skills/graphify/SKILL.md":{"size":43292,"mtime_ns":1786870552845041000,"indexed_at_ns":1786877281840080600,"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":1786877281845602600,"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":1786877281848603000,"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":1786877281853109000,"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":1786877281857115900,"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":1786877281861116300,"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":1786877281864628400,"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":1786877281868248500,"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":1786877281872254900,"word_count":1196,"hashes":{".claude/skills/graphify/references/update.md":"0249cd6ceae6effdfc7371b51d00c462f51d95700101dcedd36255bab1b4ce7a"}},".gitea/scripts/with-vpn.sh":{"size":1794,"mtime_ns":1786799852126316200,"indexed_at_ns":1786863680441317700,"word_count":208,"hashes":{".gitea/scripts/with-vpn.sh":"9ec013d142e3cf5d7e5f09778fcb06b4b8ea7b394688f9f40b5e74298c76bcf0"}},".gitea/workflows/deploy.yml":{"size":705,"mtime_ns":1786799852129314900,"indexed_at_ns":1786863693953204100,"word_count":66,"hashes":{".gitea/workflows/deploy.yml":"16db5d3c44a232a7d06f48cd831f0029888fe09d01e077f8baa6179418de97c9"}},"BACKEND_INTEGRATION.md":{"size":15568,"mtime_ns":1786885876768825200,"indexed_at_ns":1786946194589947100,"word_count":1521,"hashes":{"backend_integration.md":"e2c5f48210f3f73ee2e2cbf9ac4bc2c487139573cbdc21a6c67cd13b2e8bd099"}},"CLAUDE.md":{"size":772,"mtime_ns":1786870552863710100,"indexed_at_ns":1786877281878765800,"word_count":106,"hashes":{"claude.md":"3612256e7473a2e5f67ef4778d4edeefb44794ef22bac5529bee9c87dc5d8f3d"}},"DATABASE_SCHEMA.md":{"size":15399,"mtime_ns":1786885876771342200,"indexed_at_ns":1786946194590946100,"word_count":1566,"hashes":{"database_schema.md":"60b4b0f4fd1468ab0eb26e4313c138c480f6f280b5c96ff4c0ee89f43ec531b8"}},"README.md":{"size":13117,"mtime_ns":1786885876775371800,"indexed_at_ns":1786946194591944700,"word_count":1310,"hashes":{"readme.md":"f6f40be609ed2adbc246437841b7b90d5506064a7f7a6babbf8195efdad3597d"}},"backend/README.md":{"size":5028,"mtime_ns":1783764561601382400,"indexed_at_ns":1786863693961627700,"word_count":472,"hashes":{"backend/readme.md":"c3edfd26252566ef2ddee12c91a874b59e03a1656894d3db25209a0e4031010a"}},"backend/eslint.config.mjs":{"size":1301,"mtime_ns":1786799852134389200,"indexed_at_ns":1786863534431014600,"word_count":86},"backend/nest-cli.json":{"size":171,"mtime_ns":1783764561602717300,"indexed_at_ns":1786863680442315200,"word_count":13,"hashes":{"backend/nest-cli.json":"bc5d809c5959501544235473a6c264c5f3ab1100522e852d0a06034f5f00cd6f"}},"backend/package.json":{"size":2799,"mtime_ns":1786799852141904400,"indexed_at_ns":1786863680444315800,"word_count":208,"hashes":{"backend/package.json":"21912a365ea8843084de1956d6e2b9648f640d87071d5fc5eff61c80a61232c0"}},"backend/prisma/migrations/20260526145407_init/migration.sql":{"size":8963,"mtime_ns":1783764561612007600,"indexed_at_ns":1786863680445315600,"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":1786863680446319100,"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":1786863534471369900,"word_count":2294},"backend/prisma/seed-blogs.ts":{"size":6950,"mtime_ns":1786885876777374000,"indexed_at_ns":1786946085670717300,"word_count":620},"backend/prisma/seed-custom.ts":{"size":3836,"mtime_ns":1786799852144902000,"indexed_at_ns":1786863534484541000,"word_count":371},"backend/prisma/seed-home.ts":{"size":3870,"mtime_ns":1786885876779371100,"indexed_at_ns":1786946085682250800,"word_count":374},"backend/prisma/seed-products-data.json":{"size":59220,"mtime_ns":1786885876782371300,"indexed_at_ns":1786946139466262600,"word_count":5730,"hashes":{"backend/prisma/seed-products-data.json":"9d1262f8264478eb43ec48f073f817d46fc193d666cd9364f3bb95c1629f25c7"}},"backend/prisma/seed-products.ts":{"size":28274,"mtime_ns":1786885876784888200,"indexed_at_ns":1786946085695895900,"word_count":2063},"backend/prisma/seed-ui-texts.ts":{"size":9197,"mtime_ns":1786885876787888600,"indexed_at_ns":1786946085704003400,"word_count":755},"backend/prisma/seed-wiki.ts":{"size":24019,"mtime_ns":1786961195297596000,"indexed_at_ns":1786961213057541000,"word_count":2292},"backend/prisma/seed.ts":{"size":30492,"mtime_ns":1786961195299227200,"indexed_at_ns":1786961213063052900,"word_count":2636},"backend/prisma/tsconfig.seed.json":{"size":194,"mtime_ns":1786955870751259200,"indexed_at_ns":1786961249766772200,"word_count":17,"hashes":{"backend/prisma/tsconfig.seed.json":"e178d23a09563a7a9b348d905bc70322115514c78a7afcc5a53db7d18e511583"}},"backend/scripts/generate-openapi.ts":{"size":1385,"mtime_ns":1786799852156390500,"indexed_at_ns":1786863534537298000,"word_count":128},"backend/src/admin/admin.controller.spec.ts":{"size":593,"mtime_ns":1786799852157399700,"indexed_at_ns":1786863534543362400,"word_count":59},"backend/src/admin/admin.controller.ts":{"size":9003,"mtime_ns":1787036696769152500,"indexed_at_ns":1787036699700276700,"word_count":898},"backend/src/admin/admin.module.ts":{"size":1420,"mtime_ns":1786877667005008400,"indexed_at_ns":1786946085768035200,"word_count":145},"backend/src/admin/admin.service.spec.ts":{"size":682,"mtime_ns":1786799852162911100,"indexed_at_ns":1786863534564065100,"word_count":72},"backend/src/admin/admin.service.ts":{"size":26209,"mtime_ns":1787040318668548600,"indexed_at_ns":1787048754765775400,"word_count":2695},"backend/src/admin/blogs.controller.ts":{"size":1840,"mtime_ns":1786799852170191700,"indexed_at_ns":1786863534578222000,"word_count":190},"backend/src/admin/blogs.service.ts":{"size":1810,"mtime_ns":1786799852171191000,"indexed_at_ns":1786863534584725500,"word_count":221},"backend/src/admin/categories.controller.ts":{"size":2187,"mtime_ns":1786799852174192500,"indexed_at_ns":1786863534590311100,"word_count":204},"backend/src/admin/categories.service.ts":{"size":2005,"mtime_ns":1786799852175194300,"indexed_at_ns":1786863534595817200,"word_count":223},"backend/src/admin/dto/admin-query.dto.ts":{"size":634,"mtime_ns":1786799852178706400,"indexed_at_ns":1786863534603325400,"word_count":60},"backend/src/admin/media.controller.ts":{"size":2339,"mtime_ns":1786876983648866300,"indexed_at_ns":1786877270905179000,"word_count":226},"backend/src/admin/media.service.ts":{"size":2713,"mtime_ns":1786876983651534500,"indexed_at_ns":1786877270914160400,"word_count":283},"backend/src/admin/pets.controller.ts":{"size":1195,"mtime_ns":1786799852186217200,"indexed_at_ns":1786863534621612800,"word_count":117},"backend/src/admin/pets.service.ts":{"size":1731,"mtime_ns":1786954681814243000,"indexed_at_ns":1786955470006205300,"word_count":193},"backend/src/admin/reports.controller.ts":{"size":664,"mtime_ns":1783764561642147000,"indexed_at_ns":1786863534634255100,"word_count":66},"backend/src/admin/reports.service.ts":{"size":3399,"mtime_ns":1786799852189730800,"indexed_at_ns":1786863534640768500,"word_count":388},"backend/src/admin/wiki.controller.ts":{"size":1814,"mtime_ns":1786799852191732300,"indexed_at_ns":1786863534647913700,"word_count":179},"backend/src/admin/wiki.service.ts":{"size":1767,"mtime_ns":1786799852193324200,"indexed_at_ns":1786863534654035100,"word_count":195},"backend/src/app.controller.spec.ts":{"size":617,"mtime_ns":1783764561644839700,"indexed_at_ns":1786863534660738600,"word_count":61},"backend/src/app.controller.ts":{"size":274,"mtime_ns":1783764561645849100,"indexed_at_ns":1786863534667244700,"word_count":31},"backend/src/app.module.ts":{"size":3822,"mtime_ns":1786971396024319300,"indexed_at_ns":1787036699843240900,"word_count":361},"backend/src/app.service.ts":{"size":142,"mtime_ns":1783764561648840500,"indexed_at_ns":1786863534680950600,"word_count":19},"backend/src/auth/auth.controller.spec.ts":{"size":1528,"mtime_ns":1785327951179468000,"indexed_at_ns":1786863534687029500,"word_count":149},"backend/src/auth/auth.controller.ts":{"size":4116,"mtime_ns":1786883225788847000,"indexed_at_ns":1786946085924796800,"word_count":384},"backend/src/auth/auth.module.ts":{"size":725,"mtime_ns":1786883225790847200,"indexed_at_ns":1786946085938388700,"word_count":80},"backend/src/auth/auth.service.spec.ts":{"size":4264,"mtime_ns":1786799852201843300,"indexed_at_ns":1786863534705627700,"word_count":379},"backend/src/auth/auth.service.ts":{"size":9662,"mtime_ns":1786895436208539300,"indexed_at_ns":1786946085966787500,"word_count":934},"backend/src/auth/dto/admin-login.dto.ts":{"size":772,"mtime_ns":1786799852205357700,"indexed_at_ns":1786863534720212600,"word_count":82},"backend/src/auth/dto/login.dto.ts":{"size":587,"mtime_ns":1783764561659109000,"indexed_at_ns":1786863534727735200,"word_count":63},"backend/src/auth/dto/register.dto.ts":{"size":1197,"mtime_ns":1785327951186476900,"indexed_at_ns":1786863534732751200,"word_count":115},"backend/src/auth/dto/send-otp.dto.ts":{"size":374,"mtime_ns":1783764561661106500,"indexed_at_ns":1786863534739271500,"word_count":39},"backend/src/auth/dto/verify-otp.dto.ts":{"size":594,"mtime_ns":1783764561662112100,"indexed_at_ns":1786863534745843500,"word_count":64},"backend/src/auth/jwt-auth.guard.ts":{"size":494,"mtime_ns":1786799852205862700,"indexed_at_ns":1786863534751350400,"word_count":58},"backend/src/auth/jwt.strategy.ts":{"size":1122,"mtime_ns":1786883225794343300,"indexed_at_ns":1786946086014858100,"word_count":116},"backend/src/auth/roles.decorator.ts":{"size":54,"mtime_ns":1786799852208379600,"indexed_at_ns":1786863534764578800,"word_count":4},"backend/src/auth/roles.guard.ts":{"size":46,"mtime_ns":1786799852209003400,"indexed_at_ns":1786863534770087500,"word_count":4},"backend/src/b2b/b2b.controller.ts":{"size":2684,"mtime_ns":1786799852212013200,"indexed_at_ns":1786863534777707900,"word_count":246},"backend/src/b2b/b2b.module.ts":{"size":342,"mtime_ns":1786799852212013200,"indexed_at_ns":1786863534783641300,"word_count":38},"backend/src/b2b/b2b.service.ts":{"size":2379,"mtime_ns":1786799852214009300,"indexed_at_ns":1786863534792157000,"word_count":243},"backend/src/banners/banners.controller.ts":{"size":1923,"mtime_ns":1786799852215010200,"indexed_at_ns":1786863534797707700,"word_count":169},"backend/src/banners/banners.module.ts":{"size":374,"mtime_ns":1786799852216010300,"indexed_at_ns":1786863534807022900,"word_count":38},"backend/src/banners/banners.service.ts":{"size":1394,"mtime_ns":1786799852216010300,"indexed_at_ns":1786863534813112700,"word_count":160},"backend/src/blogs/blogs.controller.ts":{"size":1197,"mtime_ns":1786799852218009900,"indexed_at_ns":1786863534819206600,"word_count":108},"backend/src/blogs/blogs.module.ts":{"size":248,"mtime_ns":1783764561665678100,"indexed_at_ns":1786863534825741600,"word_count":28},"backend/src/blogs/blogs.service.ts":{"size":1674,"mtime_ns":1786799852219010000,"indexed_at_ns":1786863534831743000,"word_count":191},"backend/src/blogs/dto/create-blog.dto.ts":{"size":30,"mtime_ns":1783764561671557000,"indexed_at_ns":1786863534838708700,"word_count":4},"backend/src/blogs/dto/update-blog.dto.ts":{"size":164,"mtime_ns":1783764561673712400,"indexed_at_ns":1786863534844735300,"word_count":18},"backend/src/blogs/entities/blog.entity.ts":{"size":21,"mtime_ns":1783764561675101100,"indexed_at_ns":1786863534850735400,"word_count":4},"backend/src/cms/cms.controller.ts":{"size":3521,"mtime_ns":1785327951196913100,"indexed_at_ns":1786863534858244500,"word_count":280},"backend/src/cms/cms.module.ts":{"size":342,"mtime_ns":1785148022206298000,"indexed_at_ns":1786863534864244300,"word_count":38},"backend/src/cms/cms.service.ts":{"size":2501,"mtime_ns":1785327951197940400,"indexed_at_ns":1786863534870502100,"word_count":256},"backend/src/cms/dto/cms.dto.ts":{"size":2357,"mtime_ns":1785327951199995500,"indexed_at_ns":1786863534877728700,"word_count":203},"backend/src/common/decorators/roles.decorator.ts":{"size":157,"mtime_ns":1786799852220522400,"indexed_at_ns":1786863534882729600,"word_count":20},"backend/src/common/dto/pagination.dto.ts":{"size":1188,"mtime_ns":1785327951201988900,"indexed_at_ns":1786863534889612500,"word_count":121},"backend/src/common/filters/http-exception.filter.ts":{"size":4924,"mtime_ns":1786883225795857800,"indexed_at_ns":1786946086136912900,"word_count":490},"backend/src/common/filters/prisma-exception.filter.ts":{"size":2412,"mtime_ns":1785330913143709100,"indexed_at_ns":1786863534903118900,"word_count":228},"backend/src/common/guards/roles.guard.spec.ts":{"size":2426,"mtime_ns":1786799852225556800,"indexed_at_ns":1786863534909695400,"word_count":223},"backend/src/common/guards/roles.guard.ts":{"size":1285,"mtime_ns":1786799852226565200,"indexed_at_ns":1786863534916198700,"word_count":120},"backend/src/common/interceptors/decimal.interceptor.spec.ts":{"size":1677,"mtime_ns":1786799852227565700,"indexed_at_ns":1786863534923711900,"word_count":164},"backend/src/common/interceptors/decimal.interceptor.ts":{"size":1094,"mtime_ns":1786799852227565700,"indexed_at_ns":1786863534929913300,"word_count":118},"backend/src/common/metrics.controller.ts":{"size":2093,"mtime_ns":1786799852229073100,"indexed_at_ns":1786863534936006600,"word_count":206},"backend/src/common/schemas/error-response.schema.ts":{"size":1680,"mtime_ns":1785330913144701500,"indexed_at_ns":1786863534942170300,"word_count":162},"backend/src/common/schemas/paginated-response.schema.ts":{"size":1108,"mtime_ns":1786799852230082200,"indexed_at_ns":1786863534949353300,"word_count":110},"backend/src/common/services/sms.service.ts":{"size":31949,"mtime_ns":1787062000629772900,"indexed_at_ns":1787062067169592600,"word_count":3028},"backend/src/common/sms.module.ts":{"size":204,"mtime_ns":1785330750996125100,"indexed_at_ns":1786863534962381000,"word_count":24},"backend/src/contact/contact.controller.ts":{"size":1990,"mtime_ns":1786799852234596200,"indexed_at_ns":1786863534967884500,"word_count":177},"backend/src/contact/contact.module.ts":{"size":365,"mtime_ns":1786799852236599000,"indexed_at_ns":1786863534974401800,"word_count":38},"backend/src/contact/contact.service.ts":{"size":4696,"mtime_ns":1786885876795420000,"indexed_at_ns":1786946086219243500,"word_count":451},"backend/src/home/dto/create-home.dto.ts":{"size":30,"mtime_ns":1783764561682365300,"indexed_at_ns":1786863534987087100,"word_count":4},"backend/src/home/dto/update-home.dto.ts":{"size":164,"mtime_ns":1783764561682365300,"indexed_at_ns":1786863534992600800,"word_count":18},"backend/src/home/entities/home.entity.ts":{"size":21,"mtime_ns":1783764561684884800,"indexed_at_ns":1786863534999171300,"word_count":4},"backend/src/home/home.controller.ts":{"size":757,"mtime_ns":1785327951212087300,"indexed_at_ns":1786863535004176100,"word_count":69},"backend/src/home/home.module.ts":{"size":241,"mtime_ns":1783764561687108000,"indexed_at_ns":1786863535011491500,"word_count":28},"backend/src/home/home.service.ts":{"size":1372,"mtime_ns":1785327951214087300,"indexed_at_ns":1786863535016491700,"word_count":144},"backend/src/ingredients/ingredients.controller.ts":{"size":1952,"mtime_ns":1786799852237596500,"indexed_at_ns":1786863535024117600,"word_count":165},"backend/src/ingredients/ingredients.module.ts":{"size":406,"mtime_ns":1786799852238596500,"indexed_at_ns":1786863535030195600,"word_count":38},"backend/src/ingredients/ingredients.service.ts":{"size":1526,"mtime_ns":1786799852240108300,"indexed_at_ns":1786863535035320500,"word_count":162},"backend/src/main.ts":{"size":3525,"mtime_ns":1786965281349754700,"indexed_at_ns":1787036700231456900,"word_count":305},"backend/src/orders/dto/create-order.dto.ts":{"size":1899,"mtime_ns":1785327951218626100,"indexed_at_ns":1786863535048494100,"word_count":162},"backend/src/orders/orders.controller.spec.ts":{"size":1910,"mtime_ns":1785327951219627700,"indexed_at_ns":1786863535055560000,"word_count":194},"backend/src/orders/orders.controller.ts":{"size":5898,"mtime_ns":1786944769507175300,"indexed_at_ns":1786946086292892000,"word_count":515},"backend/src/orders/orders.module.ts":{"size":255,"mtime_ns":1783764561697598200,"indexed_at_ns":1786863535066790700,"word_count":28},"backend/src/orders/orders.service.spec.ts":{"size":4974,"mtime_ns":1786799852246117900,"indexed_at_ns":1786863535074585400,"word_count":483},"backend/src/orders/orders.service.ts":{"size":17104,"mtime_ns":1786944769509227400,"indexed_at_ns":1786946086310565200,"word_count":1611},"backend/src/pets/dto/create-health-log.dto.ts":{"size":761,"mtime_ns":1785327951229443300,"indexed_at_ns":1786863535087660400,"word_count":69},"backend/src/pets/dto/create-pet.dto.ts":{"size":1143,"mtime_ns":1785327951230948800,"indexed_at_ns":1786863535094172300,"word_count":104},"backend/src/pets/dto/create-reminder.dto.ts":{"size":810,"mtime_ns":1785327951231958200,"indexed_at_ns":1786863535101315600,"word_count":71},"backend/src/pets/dto/update-pet.dto.ts":{"size":160,"mtime_ns":1783764561709557500,"indexed_at_ns":1786863535107396200,"word_count":18},"backend/src/pets/pets.controller.spec.ts":{"size":2544,"mtime_ns":1786799852248118800,"indexed_at_ns":1786863535113902500,"word_count":269},"backend/src/pets/pets.controller.ts":{"size":8427,"mtime_ns":1786894580128858000,"indexed_at_ns":1786946086395923600,"word_count":781},"backend/src/pets/pets.module.ts":{"size":241,"mtime_ns":1783764561714469800,"indexed_at_ns":1786863535125397200,"word_count":28},"backend/src/pets/pets.service.spec.ts":{"size":2961,"mtime_ns":1785327951238208000,"indexed_at_ns":1786863535132005000,"word_count":272},"backend/src/pets/pets.service.ts":{"size":6978,"mtime_ns":1786799852250117400,"indexed_at_ns":1786863535137713400,"word_count":710},"backend/src/prescriptions/prescriptions.controller.ts":{"size":2356,"mtime_ns":1786799852253748300,"indexed_at_ns":1786863535145222600,"word_count":232},"backend/src/prescriptions/prescriptions.module.ts":{"size":495,"mtime_ns":1786954681815809200,"indexed_at_ns":1786955470495218500,"word_count":45},"backend/src/prescriptions/prescriptions.service.ts":{"size":4635,"mtime_ns":1786954681816860600,"indexed_at_ns":1786955470500213500,"word_count":496},"backend/src/prisma/prisma.module.ts":{"size":210,"mtime_ns":1783764561718199800,"indexed_at_ns":1786863535164330600,"word_count":24},"backend/src/prisma/prisma.service.ts":{"size":4078,"mtime_ns":1786944769510794000,"indexed_at_ns":1786946086440649600,"word_count":411},"backend/src/products/dto/get-products.dto.ts":{"size":1320,"mtime_ns":1786799852260271600,"indexed_at_ns":1786863535176492100,"word_count":115},"backend/src/products/products.controller.spec.ts":{"size":1863,"mtime_ns":1785327951243280800,"indexed_at_ns":1786863535183613400,"word_count":166},"backend/src/products/products.controller.ts":{"size":2445,"mtime_ns":1786799852261281700,"indexed_at_ns":1786863535190428600,"word_count":209},"backend/src/products/products.module.ts":{"size":269,"mtime_ns":1783764561723672400,"indexed_at_ns":1786863535197280400,"word_count":28},"backend/src/products/products.service.spec.ts":{"size":1597,"mtime_ns":1786799852263279400,"indexed_at_ns":1786863535202917700,"word_count":154},"backend/src/products/products.service.ts":{"size":6906,"mtime_ns":1786954681818869900,"indexed_at_ns":1786955470543762900,"word_count":713},"backend/src/redis/redis.module.ts":{"size":205,"mtime_ns":1783764561727662100,"indexed_at_ns":1786863535217462500,"word_count":24},"backend/src/redis/redis.service.spec.ts":{"size":1525,"mtime_ns":1783764561728672300,"indexed_at_ns":1786863535222986600,"word_count":145},"backend/src/redis/redis.service.ts":{"size":1202,"mtime_ns":1786895436211834600,"indexed_at_ns":1786946086488155600,"word_count":132},"backend/src/seo/seo.controller.ts":{"size":904,"mtime_ns":1785327951247283200,"indexed_at_ns":1786863535236090400,"word_count":85},"backend/src/seo/seo.module.ts":{"size":342,"mtime_ns":1785148022268580900,"indexed_at_ns":1786863535243640100,"word_count":38},"backend/src/seo/seo.service.ts":{"size":2029,"mtime_ns":1785327951248280300,"indexed_at_ns":1786863535249760000,"word_count":182},"backend/src/settings/settings.controller.spec.ts":{"size":2977,"mtime_ns":1786799852267280300,"indexed_at_ns":1786863535257859100,"word_count":246},"backend/src/settings/settings.controller.ts":{"size":8955,"mtime_ns":1787062000630832800,"indexed_at_ns":1787062067523844500,"word_count":708},"backend/src/settings/settings.module.ts":{"size":382,"mtime_ns":1783764561735515700,"indexed_at_ns":1786863535272121400,"word_count":38},"backend/src/settings/settings.service.spec.ts":{"size":2728,"mtime_ns":1783764561736856500,"indexed_at_ns":1786863535278254000,"word_count":251},"backend/src/settings/settings.service.ts":{"size":14915,"mtime_ns":1787062000631903000,"indexed_at_ns":1787062067539461700,"word_count":1203},"backend/src/smart-advisor/smart-advisor.controller.ts":{"size":1821,"mtime_ns":1786799852275441500,"indexed_at_ns":1786863535292219400,"word_count":152},"backend/src/smart-advisor/smart-advisor.module.ts":{"size":416,"mtime_ns":1786799852276441700,"indexed_at_ns":1786863535298401600,"word_count":38},"backend/src/smart-advisor/smart-advisor.service.ts":{"size":1241,"mtime_ns":1786799852277440400,"indexed_at_ns":1786863535304944400,"word_count":131},"backend/src/testimonials/testimonials.controller.ts":{"size":1702,"mtime_ns":1786799852279441800,"indexed_at_ns":1786863535310995900,"word_count":143},"backend/src/testimonials/testimonials.module.ts":{"size":414,"mtime_ns":1786799852279441800,"indexed_at_ns":1786863535317805000,"word_count":38},"backend/src/testimonials/testimonials.service.ts":{"size":1100,"mtime_ns":1786799852281471300,"indexed_at_ns":1786863535324923000,"word_count":121},"backend/src/users/dto/address.dto.ts":{"size":1098,"mtime_ns":1783764561739871500,"indexed_at_ns":1786863535331380200,"word_count":99},"backend/src/users/dto/update-profile.dto.ts":{"size":1068,"mtime_ns":1786885876805472100,"indexed_at_ns":1786946086647803400,"word_count":98},"backend/src/users/users.controller.spec.ts":{"size":3333,"mtime_ns":1785327951253796500,"indexed_at_ns":1786863535346781600,"word_count":322},"backend/src/users/users.controller.ts":{"size":6854,"mtime_ns":1786799852282481500,"indexed_at_ns":1786863535353416500,"word_count":590},"backend/src/users/users.module.ts":{"size":275,"mtime_ns":1783764561748154400,"indexed_at_ns":1786863535360908700,"word_count":30},"backend/src/users/users.service.spec.ts":{"size":3817,"mtime_ns":1786799852283480600,"indexed_at_ns":1786863535367156600,"word_count":316},"backend/src/users/users.service.ts":{"size":8101,"mtime_ns":1786885876807471600,"indexed_at_ns":1786946086675276300,"word_count":774},"backend/src/videos/dto/create-video.dto.ts":{"size":1573,"mtime_ns":1786971396042093900,"indexed_at_ns":1787036700628093800,"word_count":127},"backend/src/videos/dto/get-videos-query.dto.ts":{"size":643,"mtime_ns":1786799852287643500,"indexed_at_ns":1786863535387813200,"word_count":77},"backend/src/videos/videos.controller.ts":{"size":1924,"mtime_ns":1786799852291153100,"indexed_at_ns":1786863535393635000,"word_count":173},"backend/src/videos/videos.module.ts":{"size":283,"mtime_ns":1785148022306583700,"indexed_at_ns":1786863535400714100,"word_count":30},"backend/src/videos/videos.service.ts":{"size":2732,"mtime_ns":1786971396047872400,"indexed_at_ns":1787036700649050000,"word_count":290},"backend/src/wholesale/dto/wholesale-apply.dto.ts":{"size":739,"mtime_ns":1785148022317622300,"indexed_at_ns":1786863535413220000,"word_count":66},"backend/src/wholesale/wholesale.controller.ts":{"size":2037,"mtime_ns":1786799852294177000,"indexed_at_ns":1786863535418912100,"word_count":160},"backend/src/wholesale/wholesale.module.ts":{"size":390,"mtime_ns":1785148022328746300,"indexed_at_ns":1786863535425686500,"word_count":38},"backend/src/wholesale/wholesale.service.ts":{"size":2627,"mtime_ns":1785330913149233300,"indexed_at_ns":1786863535431718700,"word_count":266},"backend/src/wiki/dto/create-wiki.dto.ts":{"size":30,"mtime_ns":1783764561752933200,"indexed_at_ns":1786863535439031200,"word_count":4},"backend/src/wiki/dto/update-wiki.dto.ts":{"size":164,"mtime_ns":1783764561753945200,"indexed_at_ns":1786863535446428400,"word_count":18},"backend/src/wiki/entities/wiki.entity.ts":{"size":21,"mtime_ns":1783764561755039400,"indexed_at_ns":1786863535452455400,"word_count":4},"backend/src/wiki/wiki.controller.ts":{"size":1219,"mtime_ns":1785327951272850400,"indexed_at_ns":1786863535458333000,"word_count":110},"backend/src/wiki/wiki.module.ts":{"size":241,"mtime_ns":1783764561756925000,"indexed_at_ns":1786863535464948400,"word_count":28},"backend/src/wiki/wiki.service.ts":{"size":1562,"mtime_ns":1786799852295173000,"indexed_at_ns":1786863535471010700,"word_count":174},"backend/test/app-audit-verification.e2e-spec.ts":{"size":6464,"mtime_ns":1786799852296174700,"indexed_at_ns":1786863535478067000,"word_count":569},"backend/test/app.e2e-spec.ts":{"size":981,"mtime_ns":1786799852297175000,"indexed_at_ns":1786863535484496000,"word_count":83},"backend/test/jest-e2e.json":{"size":183,"mtime_ns":1783764561762911800,"indexed_at_ns":1786863680450825300,"word_count":17,"hashes":{"backend/test/jest-e2e.json":"94091f560937212ad7027afcb77e62e6ac79e3e4cb401c3a16a56e7be4cac721"}},"backend/tsconfig.build.json":{"size":107,"mtime_ns":1783764561763447000,"indexed_at_ns":1786863680451826600,"word_count":10,"hashes":{"backend/tsconfig.build.json":"1f47c7dc3c8b5a15558654f45f21e0f553acc1680046f09dc24428e8538c4f9d"}},"backend/tsconfig.json":{"size":801,"mtime_ns":1786878091972378100,"indexed_at_ns":1786946139476821100,"word_count":57,"hashes":{"backend/tsconfig.json":"f545dfd832cb16f1a3cfc4f43f2f179c0a37dd473b3b433507957fbd964e28ce"}},"backend/uploads/1781288429353-508765350.jpg":{"size":110246,"mtime_ns":1783764561766257000,"indexed_at_ns":1786863694120021300,"word_count":3882,"hashes":{"backend/uploads/1781288429353-508765350.jpg":"c9e532f0482584a2edf76404b86ef82679e5387079d73c59f10234de24ad5074"}},"canina.md":{"size":21919,"mtime_ns":1786885876809472400,"indexed_at_ns":1786946194592944400,"word_count":1983,"hashes":{"canina.md":"a8967d10e744c46846c8bfc6cc7f9a0aae8c2175dfbe49ff9de75bc5dce87850"}},"canina.pdf":{"size":2858373,"mtime_ns":1785148022370811500,"indexed_at_ns":1786863694095027500,"word_count":0,"hashes":{"canina.pdf":"a52d90e6dffb96dae468ba96f76239762b341751a6455734d75fadd22f30c87c"}},"docker-compose.yml":{"size":2193,"mtime_ns":1786883225811564200,"indexed_at_ns":1786946194593946400,"word_count":127,"hashes":{"docker-compose.yml":"6e0091c4f1b3868a5e2321678c549f6c95cbf5fd266da06a144976295d8a2c64"}},"docs/01-introduction.md":{"size":5537,"mtime_ns":1786885876812474900,"indexed_at_ns":1786946194594944700,"word_count":523,"hashes":{"docs/01-introduction.md":"18176d1abd1352f12e1ccfa2c2cc84d4673b22b682b2aeb91b1a6bf4a607ae05"}},"docs/02-user-guide.md":{"size":4303,"mtime_ns":1786885876813985900,"indexed_at_ns":1786946194595944800,"word_count":422,"hashes":{"docs/02-user-guide.md":"a7842a7ac89eb8872028f50e9c907a0f2e7968c419a5f157c10c62dad8e85b00"}},"docs/03-developer-guide.md":{"size":6717,"mtime_ns":1783764561771660500,"indexed_at_ns":1786863693969714100,"word_count":678,"hashes":{"docs/03-developer-guide.md":"84a16e17d0433edd8631789bdec3bbd7e6f716059cd064843ed8087eea9e2eeb"}},"docs/04-setup-and-deployment.md":{"size":4023,"mtime_ns":1783764561773294900,"indexed_at_ns":1786863693970713900,"word_count":425,"hashes":{"docs/04-setup-and-deployment.md":"723c6016b1bb499fee2b9f63b2c06a9b12f8e4c664b36ea1431181c333bc814e"}},"docs/05-devops-and-monitoring.md":{"size":3590,"mtime_ns":1783764561774446100,"indexed_at_ns":1786863693972714000,"word_count":374,"hashes":{"docs/05-devops-and-monitoring.md":"53f1f45bbbdd3cf81cb4bc082ef4e49f506627f10f581d3c4b835028d02b5421"}},"docs/06-testing.md":{"size":4214,"mtime_ns":1783764561774967500,"indexed_at_ns":1786863693973713900,"word_count":457,"hashes":{"docs/06-testing.md":"69d50bd5e233f030d8076b55b69599cee201e1c393b7ee1beeb495c304fd4bd3"}},"docs/README.md":{"size":2740,"mtime_ns":1786885876816996700,"indexed_at_ns":1786946139726247300,"word_count":253,"hashes":{"docs/readme.md":"1b7ffde4b290e742802fc554f2dd2f7a2316fe25bd1cd328421ffa823b36f40f"}},"docs/audit/00-repository-map.md":{"size":3171,"mtime_ns":1786799852298174200,"indexed_at_ns":1786863693977222500,"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":1786863693979222500,"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":1786863693980222600,"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":1786863693982222800,"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":1786863693983784800,"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":1786863693984790400,"word_count":560,"hashes":{"docs/audit/05-architectural-audit.md":"8977a5c304b3fe86636579d498a459ac98359c34f1062bf731b02f4602c0e94f"}},"docs/audit/06-storefront-audit.md":{"size":4191,"mtime_ns":1786799852303691400,"indexed_at_ns":1786863693987299500,"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":1786863693989301000,"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":1786863693990300000,"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":1786863693992299700,"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":1786863693994299500,"word_count":678,"hashes":{"docs/audit/10-security-audit.md":"574df31423bd28b3cd58134e7c7e8780f4e2e46c760a372e0e2592c1e83bba4e"}},"docs/audit/11-code-quality-audit.md":{"size":3379,"mtime_ns":1786799852308957000,"indexed_at_ns":1786863693995299500,"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":1786863693997807500,"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":1786863693999375100,"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":1786863694001567900,"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":1786863680454829500,"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":1786863694003567300,"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":1786863680455826100,"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":1786863694005566900,"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":1786863694007070200,"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":1786863680457826600,"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":1786863694009077900,"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":1786863694010075200,"word_count":139,"hashes":{"docs/audit/22-tracked-first-party-files.txt":"ef7fc17de970cd3f397eea961bcaf76abff15589c0fa13f92b47d42e637231c6"}},"docs/audit/23-untracked-first-party-files.txt":{"size":59,"mtime_ns":1786799852319066000,"indexed_at_ns":1786863694012075400,"word_count":7,"hashes":{"docs/audit/23-untracked-first-party-files.txt":"ffa5caec5c75b4013f7c136efed9e944c705e756f4f26e53da73e871a02d704c"}},"docs/audit/24-omitted-file-inspection-report.md":{"size":2462,"mtime_ns":1786799852320065700,"indexed_at_ns":1786863694014075600,"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":1786863680458826600,"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":1786863694015640600,"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":1786863694017145600,"word_count":148,"hashes":{"docs/audit/27-all-tracked-repository-files.txt":"3f312a5c642e6a27446dc35a6c50dacd10e43c1cc9eeb637a49ba61343ce2b69"}},"docs/audit/28-full-repository-classification.json":{"size":27913,"mtime_ns":1786799852324099500,"indexed_at_ns":1786863680460331400,"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":1786863680462336500,"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":1786863680463336700,"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":1786863694019150200,"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":1786863680464337900,"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":1786863694020149300,"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":1786863680466336600,"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":1786863680467338400,"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":1786863680468337900,"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":1786863694022417300,"word_count":398,"hashes":{"docs/audit/adr-auth-001.md":"fd6a6e524d66c57e3f114899323509082af11aa30197a015e1255057c5c3ed98"}},"docs/audit/CROSS_BOUNDARY_DEPENDENCIES.md":{"size":2146,"mtime_ns":1786799852332642700,"indexed_at_ns":1786863694023417200,"word_count":239,"hashes":{"docs/audit/cross_boundary_dependencies.md":"56de72c42fdadf710e0837e0d330dfe36c772602d8f094d0a55dbc5bb16906f3"}},"docs/audit/FRONTEND_INTEGRATION_REQUIREMENTS.md":{"size":15322,"mtime_ns":1786885876820986100,"indexed_at_ns":1786946194617583300,"word_count":1579,"hashes":{"docs/audit/frontend_integration_requirements.md":"79bab062fc3587cffd0a9932b8615d4b822dba2ea24533531f258a0dac5f701f"}},"docs/audit/MASTER-TASK-BACKLOG.md":{"size":30107,"mtime_ns":1786799852335470200,"indexed_at_ns":1786863694026492300,"word_count":3510,"hashes":{"docs/audit/master-task-backlog.md":"6df14e8ae8eca2a7f1d9829a6e9891a89a8565eb5a7362186644208fe8454cdc"}},"docs/audit/audit-state.json":{"size":4135,"mtime_ns":1786799852337382200,"indexed_at_ns":1786863680470337000,"word_count":267,"hashes":{"docs/audit/audit-state.json":"4b804494570a2812170cb8dab35d15da659f57d6e637652328725e956f7d98aa"}},"docs/audit/build_manifest.js":{"size":4060,"mtime_ns":1786799852338393200,"indexed_at_ns":1786863535890477600,"word_count":348},"docs/audit/frontend-route-map.md":{"size":2558,"mtime_ns":1786799852339389800,"indexed_at_ns":1786863694027491500,"word_count":329,"hashes":{"docs/audit/frontend-route-map.md":"e9bf92a931f0727c8054230578943f0fd59cc3ef8f6ac5020155ca42edc93622"}},"docs/audit/generate_classification.js":{"size":2186,"mtime_ns":1786799852339389800,"indexed_at_ns":1786863535904305800,"word_count":204},"docs/audit/generate_evidence.js":{"size":3098,"mtime_ns":1786799852340390100,"indexed_at_ns":1786863535911173400,"word_count":253},"docs/audit/generate_ledger.js":{"size":7648,"mtime_ns":1786799852341897300,"indexed_at_ns":1786863535916686900,"word_count":620},"docs/audit/generate_manifest.js":{"size":6357,"mtime_ns":1786799852341897300,"indexed_at_ns":1786863535923771900,"word_count":489},"docs/audit/master-task-backlog.json":{"size":22336,"mtime_ns":1786799852342906700,"indexed_at_ns":1786863680470841000,"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":1786863694030823300,"word_count":736,"hashes":{"docs/audit/phase3-execution-plan.md":"ab3bc489bde4c86046d35f87c3fb1320acb4fb15d6a3de2e100b05b510aa23b8"}},"docs/audit/phase3-traceability-matrix.md":{"size":5237,"mtime_ns":1786799852344952800,"indexed_at_ns":1786863694031820000,"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":1786863694033821400,"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":1786863694035819500,"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":1786863694036820300,"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":1786863694039141500,"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":1786863535983025100,"word_count":559},"docs/audit/sync_honest_manifest.js":{"size":1213,"mtime_ns":1786799852349953100,"indexed_at_ns":1786863535988627700,"word_count":75},"docs/audit/sync_manifest.js":{"size":997,"mtime_ns":1786799852350953300,"indexed_at_ns":1786863535995415600,"word_count":62},"docs/audit/validate_evidence_grade.js":{"size":6141,"mtime_ns":1786799852351954100,"indexed_at_ns":1786863536001204900,"word_count":526},"docs/audit/validate_integrity.js":{"size":3408,"mtime_ns":1786799852352952400,"indexed_at_ns":1786863536007942000,"word_count":284},"docs/backlog.md":{"size":26175,"mtime_ns":1786799852356021600,"indexed_at_ns":1786863694040141700,"word_count":2834,"hashes":{"docs/backlog.md":"ce0d907773d5af5539aa04f7035555e47424d396ea6e3a821771ad00f813ccd6"}},"frontend/admin-panel/README.md":{"size":2425,"mtime_ns":1783764561778952800,"indexed_at_ns":1786863694042141900,"word_count":212,"hashes":{"frontend/admin-panel/readme.md":"3945c052249ebd020b013303d5921815b52d847bd36c748a03bfdc8eb2a390b8"}},"frontend/admin-panel/eslint.config.js":{"size":591,"mtime_ns":1785651092991236900,"indexed_at_ns":1786863536031757200,"word_count":48},"frontend/admin-panel/index.html":{"size":363,"mtime_ns":1783764561780558500,"indexed_at_ns":1786863694044141700,"word_count":28,"hashes":{"frontend/admin-panel/index.html":"ecdac8ac0b565720712afa18490bdfad1a643a6c50c1d0b93d12b7acbcf5e3c0"}},"frontend/admin-panel/package.json":{"size":1072,"mtime_ns":1785570791953119000,"indexed_at_ns":1786863680472845200,"word_count":84,"hashes":{"frontend/admin-panel/package.json":"6d61fb108392e86320c75b42e69ba7138bdc47bba4883fafbeb6e661cc5f51e4"}},"frontend/admin-panel/postcss.config.js":{"size":91,"mtime_ns":1783764561796281900,"indexed_at_ns":1786863536049792000,"word_count":11},"frontend/admin-panel/public/favicon.svg":{"size":9522,"mtime_ns":1783764561797801500,"indexed_at_ns":1786863694122123200,"word_count":491,"hashes":{"frontend/admin-panel/public/favicon.svg":"57a824acf3d4ba0b152537d3c0e79795502d3589ca99556a2155c81b6dea663a"}},"frontend/admin-panel/public/fonts/A-Iranian-Sans/A-Iranian-Sans/read me!.txt":{"size":281,"mtime_ns":1783856792435855000,"indexed_at_ns":1786863694045693300,"word_count":15,"hashes":{"frontend/admin-panel/public/fonts/a-iranian-sans/a-iranian-sans/read me!.txt":"06bcb5a03a381d231568aa217f4bfc1a4446a7cf6574daf93ee6de8830063c67"}},"frontend/admin-panel/public/fonts/IranNastaliq/IranNastaliq/read me!.txt":{"size":281,"mtime_ns":1783856792445365000,"indexed_at_ns":1786863694046698100,"word_count":15,"hashes":{"frontend/admin-panel/public/fonts/irannastaliq/irannastaliq/read me!.txt":"1653ec43d0db64c9a2d88dd8e064a64e83eee53a97b423ea7a40a865792b38c9"}},"frontend/admin-panel/public/fonts/sahel-font-v3.4.0/CHANGELOG.md":{"size":8519,"mtime_ns":1783856792454604400,"indexed_at_ns":1786863694048714800,"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":1786863694050719800,"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":1786863694123122700,"word_count":10881,"hashes":{"frontend/admin-panel/public/fonts/sahel-font-v3.4.0/sample-variable.gif":"38008ccacda40353e4f29e912e844ee659cde19dd209dfc1d5c3356e291293f5"}},"frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/CHANGELOG.md":{"size":7177,"mtime_ns":1783856792548005600,"indexed_at_ns":1786863694052719700,"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":1786863694054719200,"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":1786863694125692200,"word_count":2615,"hashes":{"frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/sample.png":"9cefee026dc2387d3c887064f2419098a4c9aadd466a42184e90fa30be5e15a7"}},"frontend/admin-panel/public/fonts/vazirmatn-v33.003/AUTHORS.txt":{"size":339,"mtime_ns":1783856792646666000,"indexed_at_ns":1786863694055720100,"word_count":55,"hashes":{"frontend/admin-panel/public/fonts/vazirmatn-v33.003/authors.txt":"e22592748c440a3169adec38d57aecfd813b4b98531bbe14df59076e177a452c"}},"frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md":{"size":38550,"mtime_ns":1783856792647671700,"indexed_at_ns":1786863694057719800,"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":1786863694060176900,"word_count":671,"hashes":{"frontend/admin-panel/public/fonts/vazirmatn-v33.003/ofl.txt":"8e7ede02bc5fcd7aa4d98a7692cd6f37ea85249c2a1a59574575f7ff57b2c984"}},"frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md":{"size":2339,"mtime_ns":1783856792648669800,"indexed_at_ns":1786863694061738100,"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":1786863694063234100,"word_count":14,"hashes":{"frontend/admin-panel/public/fonts/vazirmatn-v33.003/\u0631\u0627\u0647\u0646\u0645\u0627.txt":"3c26934ce909cddcd30f32691eac2429205e97f4851b76e0b706da0eb7812c66"}},"frontend/admin-panel/public/icons.svg":{"size":5031,"mtime_ns":1783764561799320300,"indexed_at_ns":1786863694127749600,"word_count":382,"hashes":{"frontend/admin-panel/public/icons.svg":"561374a6f3ff39c2881fc8ab6159875671b9acbaab617f4668819f5a24aa0a85"}},"frontend/admin-panel/src/App.tsx":{"size":1088,"mtime_ns":1786799852365481100,"indexed_at_ns":1786863539542562100,"word_count":99},"frontend/admin-panel/src/assets/hero.png":{"size":13057,"mtime_ns":1783764561812863000,"indexed_at_ns":1786863694128748000,"word_count":437,"hashes":{"frontend/admin-panel/src/assets/hero.png":"9350dcf76831435179214888056799d21b9ec6461f03bcad2fca68fb27dcccd9"}},"frontend/admin-panel/src/assets/react.svg":{"size":4126,"mtime_ns":1783764561813924700,"indexed_at_ns":1786863694131258000,"word_count":366,"hashes":{"frontend/admin-panel/src/assets/react.svg":"3ce66cfff5bb1ef0bc54b14d87fc434fdaa60e3e67406ca0475c8e355daf42c9"}},"frontend/admin-panel/src/assets/vite.svg":{"size":8709,"mtime_ns":1783764561814995700,"indexed_at_ns":1786863694133259500,"word_count":439,"hashes":{"frontend/admin-panel/src/assets/vite.svg":"a3813bb88b8e782e5a04d9d628d2540c4ca7719878f24c62bb3b655861178b41"}},"frontend/admin-panel/src/components/Layout.tsx":{"size":726,"mtime_ns":1784621786958594800,"indexed_at_ns":1786863539569270500,"word_count":69},"frontend/admin-panel/src/components/ProtectedRoute.tsx":{"size":2336,"mtime_ns":1786799852369164100,"indexed_at_ns":1786863539575600400,"word_count":210},"frontend/admin-panel/src/components/Sidebar.tsx":{"size":10931,"mtime_ns":1786971396054428200,"indexed_at_ns":1787036705235822800,"word_count":973},"frontend/admin-panel/src/components/Topbar.tsx":{"size":14971,"mtime_ns":1786954681821386200,"indexed_at_ns":1786955474679895700,"word_count":1219},"frontend/admin-panel/src/components/ui/ConfirmModal.tsx":{"size":2294,"mtime_ns":1786972191359099700,"indexed_at_ns":1787036705255577800,"word_count":192},"frontend/admin-panel/src/components/ui/MediaSelector.tsx":{"size":21604,"mtime_ns":1787038450536696800,"indexed_at_ns":1787048760373427600,"word_count":1686},"frontend/admin-panel/src/components/ui/Pagination.tsx":{"size":5510,"mtime_ns":1786799852387442100,"indexed_at_ns":1786863539611144600,"word_count":447},"frontend/admin-panel/src/components/ui/Skeleton.tsx":{"size":178,"mtime_ns":1783856792977535800,"indexed_at_ns":1786863539617717100,"word_count":22},"frontend/admin-panel/src/components/ui/Spinner.tsx":{"size":650,"mtime_ns":1783856792979049200,"indexed_at_ns":1786863539624368900,"word_count":67},"frontend/admin-panel/src/main.tsx":{"size":161,"mtime_ns":1783764561829333600,"indexed_at_ns":1786863539634800100,"word_count":16},"frontend/admin-panel/src/pages/B2BManager.tsx":{"size":25576,"mtime_ns":1786799852391440500,"indexed_at_ns":1786863539640800000,"word_count":1789},"frontend/admin-panel/src/pages/BannersManager.tsx":{"size":20315,"mtime_ns":1786946249965928600,"indexed_at_ns":1786948020244413900,"word_count":1492},"frontend/admin-panel/src/pages/Blogs.tsx":{"size":15530,"mtime_ns":1786799852395957300,"indexed_at_ns":1786863539656035900,"word_count":1186},"frontend/admin-panel/src/pages/CMS.tsx":{"size":10072,"mtime_ns":1786799852400957800,"indexed_at_ns":1786863539663141300,"word_count":805},"frontend/admin-panel/src/pages/Categories.tsx":{"size":15807,"mtime_ns":1786799852404978500,"indexed_at_ns":1786863539670140300,"word_count":1115},"frontend/admin-panel/src/pages/ContactSubmissions.tsx":{"size":12435,"mtime_ns":1786799852405538100,"indexed_at_ns":1786863539677731600,"word_count":859},"frontend/admin-panel/src/pages/Coupons.tsx":{"size":27717,"mtime_ns":1786948119773165300,"indexed_at_ns":1786954590024152800,"word_count":2106},"frontend/admin-panel/src/pages/Dashboard.tsx":{"size":6006,"mtime_ns":1786885876829510000,"indexed_at_ns":1786946090882930200,"word_count":534},"frontend/admin-panel/src/pages/FinancialSettingsPage.tsx":{"size":9238,"mtime_ns":1786948119774163200,"indexed_at_ns":1786954590036697800,"word_count":674},"frontend/admin-panel/src/pages/IngredientsManager.tsx":{"size":18511,"mtime_ns":1786885876833517400,"indexed_at_ns":1786946090899595600,"word_count":1338},"frontend/admin-panel/src/pages/Login.tsx":{"size":11551,"mtime_ns":1786885876837035500,"indexed_at_ns":1786946090906108900,"word_count":838},"frontend/admin-panel/src/pages/Media.tsx":{"size":30239,"mtime_ns":1787056319679248800,"indexed_at_ns":1787056412326949600,"word_count":2368},"frontend/admin-panel/src/pages/Orders.tsx":{"size":47103,"mtime_ns":1787061673975370400,"indexed_at_ns":1787061887699530000,"word_count":3576},"frontend/admin-panel/src/pages/Pets.tsx":{"size":17485,"mtime_ns":1786954681833053600,"indexed_at_ns":1786955474865216500,"word_count":1264},"frontend/admin-panel/src/pages/PrescriptionsManager.tsx":{"size":20017,"mtime_ns":1787056319685764000,"indexed_at_ns":1787056412348725300,"word_count":1478},"frontend/admin-panel/src/pages/Products.tsx":{"size":99995,"mtime_ns":1787055476777432800,"indexed_at_ns":1787056208068458200,"word_count":6721},"frontend/admin-panel/src/pages/Reports.tsx":{"size":13073,"mtime_ns":1786894580141383900,"indexed_at_ns":1786946090950888800,"word_count":972},"frontend/admin-panel/src/pages/SeoSettingsPage.tsx":{"size":7361,"mtime_ns":1786885876852117800,"indexed_at_ns":1786946090964021800,"word_count":549},"frontend/admin-panel/src/pages/Settings.tsx":{"size":41127,"mtime_ns":1786948119780100900,"indexed_at_ns":1786954590114257900,"word_count":2650},"frontend/admin-panel/src/pages/SmartAdvisorManager.tsx":{"size":14321,"mtime_ns":1786799852443027400,"indexed_at_ns":1786863539783943500,"word_count":1073},"frontend/admin-panel/src/pages/SystemSettingsPage.tsx":{"size":7931,"mtime_ns":1786799852444030300,"indexed_at_ns":1786863539790462300,"word_count":575},"frontend/admin-panel/src/pages/TestimonialsManager.tsx":{"size":18160,"mtime_ns":1786799852445028000,"indexed_at_ns":1786863539796971000,"word_count":1311},"frontend/admin-panel/src/pages/UITexts.tsx":{"size":21687,"mtime_ns":1786954681835053100,"indexed_at_ns":1786955474947729800,"word_count":1702},"frontend/admin-panel/src/pages/Users.tsx":{"size":42561,"mtime_ns":1786883225813571300,"indexed_at_ns":1786946091025818600,"word_count":2830},"frontend/admin-panel/src/pages/Videos.tsx":{"size":23808,"mtime_ns":1786971396066471600,"indexed_at_ns":1787036705525249500,"word_count":1711},"frontend/admin-panel/src/pages/WholesaleApplications.tsx":{"size":6505,"mtime_ns":1786799852457805400,"indexed_at_ns":1786863539828590300,"word_count":503},"frontend/admin-panel/src/pages/Wiki.tsx":{"size":14792,"mtime_ns":1786885876868308700,"indexed_at_ns":1786946091044162500,"word_count":1144},"frontend/admin-panel/src/routes/adminRoutes.tsx":{"size":5358,"mtime_ns":1787062043501084700,"indexed_at_ns":1787062072078452600,"word_count":525},"frontend/admin-panel/src/services/api.ts":{"size":5190,"mtime_ns":1786896758433963000,"indexed_at_ns":1786946091056675900,"word_count":479},"frontend/admin-panel/src/store/adminAuthStore.ts":{"size":666,"mtime_ns":1786799852469037000,"indexed_at_ns":1786863539858627200,"word_count":65},"frontend/admin-panel/src/types/admin.ts":{"size":4023,"mtime_ns":1787056319688287000,"indexed_at_ns":1787056412503135200,"word_count":442},"frontend/admin-panel/tailwind.config.js":{"size":182,"mtime_ns":1783764561861721300,"indexed_at_ns":1786863539871727500,"word_count":20},"frontend/admin-panel/tsconfig.app.json":{"size":633,"mtime_ns":1787055476779566300,"indexed_at_ns":1787056213292143800,"word_count":48,"hashes":{"frontend/admin-panel/tsconfig.app.json":"2d9838ee1119342fd03bf7644781b8b6aced2cbdc908ff186cdd6ab7ab9ba1c4"}},"frontend/admin-panel/tsconfig.json":{"size":119,"mtime_ns":1783764561863393600,"indexed_at_ns":1786863680475351500,"word_count":15,"hashes":{"frontend/admin-panel/tsconfig.json":"7a6c2e21b6eaa2355b4e2ed29db2a767499a88498bde745cdccf3ba8c7f64f2b"}},"frontend/admin-panel/tsconfig.node.json":{"size":591,"mtime_ns":1783764561863923100,"indexed_at_ns":1786863680476356300,"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":1786863539894474200,"word_count":18},"frontend/application/AGENTS.md":{"size":760,"mtime_ns":1786885876870317000,"indexed_at_ns":1786946194631269100,"word_count":91,"hashes":{"frontend/application/agents.md":"26c7594b16f52dcd1085a81ac2dd55a924bf9badc3d339789c5a52657ad86ea7"}},"frontend/application/CLAUDE.md":{"size":11,"mtime_ns":1783764561866744500,"indexed_at_ns":1786863694066612200,"word_count":1,"hashes":{"frontend/application/claude.md":"0776fbbe8c29c6dc861efa70683090a370ab56dc77c22cb9de74895b4c783320"}},"frontend/application/README.md":{"size":1450,"mtime_ns":1783764561867354300,"indexed_at_ns":1786863694067611900,"word_count":155,"hashes":{"frontend/application/readme.md":"dd829cdf325092d859080ac1db3cbf2cca3198e72834f0f228495ef3c49a2240"}},"frontend/application/app/ClientLayout.tsx":{"size":5386,"mtime_ns":1786891855353571400,"indexed_at_ns":1786946091118817200,"word_count":486},"frontend/application/app/HomeClient.tsx":{"size":13086,"mtime_ns":1786971396071630400,"indexed_at_ns":1787036705615435000,"word_count":839},"frontend/application/app/about/page.tsx":{"size":6019,"mtime_ns":1786885876874317800,"indexed_at_ns":1786946091130517900,"word_count":507},"frontend/application/app/blog/[slug]/page.tsx":{"size":6663,"mtime_ns":1786885876877317400,"indexed_at_ns":1786946091138538500,"word_count":521},"frontend/application/app/blog/page.tsx":{"size":2058,"mtime_ns":1786885876878823400,"indexed_at_ns":1786946091144595700,"word_count":214},"frontend/application/app/catalog/CatalogClient.tsx":{"size":1389,"mtime_ns":1786872121566485100,"indexed_at_ns":1786877276794688700,"word_count":129},"frontend/application/app/catalog/page.tsx":{"size":1000,"mtime_ns":1786885876880832300,"indexed_at_ns":1786946091157620100,"word_count":99},"frontend/application/app/checkout/page.tsx":{"size":125,"mtime_ns":1783764561876442900,"indexed_at_ns":1786863539973147200,"word_count":13},"frontend/application/app/checkout/success/[id]/page.tsx":{"size":231,"mtime_ns":1783764561878668300,"indexed_at_ns":1786863539980152400,"word_count":31},"frontend/application/app/contact/page.tsx":{"size":1923,"mtime_ns":1786885876884352900,"indexed_at_ns":1786946091174222400,"word_count":169},"frontend/application/app/dashboard/page.tsx":{"size":133,"mtime_ns":1783764561880281000,"indexed_at_ns":1786863539993347900,"word_count":13},"frontend/application/app/error.tsx":{"size":383,"mtime_ns":1785148022478709000,"indexed_at_ns":1786863539998855700,"word_count":50},"frontend/application/app/layout.tsx":{"size":4549,"mtime_ns":1787038450542232400,"indexed_at_ns":1787048760743990600,"word_count":396},"frontend/application/app/loading.tsx":{"size":1373,"mtime_ns":1785148022487650000,"indexed_at_ns":1786863540025491400,"word_count":122},"frontend/application/app/not-found.tsx":{"size":124,"mtime_ns":1783764561891411400,"indexed_at_ns":1786863540032490900,"word_count":15},"frontend/application/app/page.tsx":{"size":2357,"mtime_ns":1786885876888872400,"indexed_at_ns":1786946091217128300,"word_count":224},"frontend/application/app/privacy/page.tsx":{"size":4367,"mtime_ns":1786885876892884700,"indexed_at_ns":1786946091229212900,"word_count":361},"frontend/application/app/profile/page.tsx":{"size":122,"mtime_ns":1783764561895258400,"indexed_at_ns":1786863540054231400,"word_count":13},"frontend/application/app/robots.ts":{"size":732,"mtime_ns":1787038450545041700,"indexed_at_ns":1787048760779705300,"word_count":68},"frontend/application/app/search/page.tsx":{"size":569,"mtime_ns":1786885876894884000,"indexed_at_ns":1786946091253347100,"word_count":65},"frontend/application/app/shop/[slug]/page.tsx":{"size":4439,"mtime_ns":1786885876896885400,"indexed_at_ns":1786946091261392900,"word_count":388},"frontend/application/app/shop/page.tsx":{"size":2025,"mtime_ns":1786885876899395900,"indexed_at_ns":1786946091268392700,"word_count":211},"frontend/application/app/sitemap.ts":{"size":2040,"mtime_ns":1786799852565744400,"indexed_at_ns":1786863540085699800,"word_count":191},"frontend/application/app/track/page.tsx":{"size":129,"mtime_ns":1783764561901903300,"indexed_at_ns":1786863540091699600,"word_count":13},"frontend/application/app/trust-seals/page.tsx":{"size":6722,"mtime_ns":1786885876903404600,"indexed_at_ns":1786946091292478900,"word_count":528},"frontend/application/app/videos/page.tsx":{"size":117,"mtime_ns":1783764561902986700,"indexed_at_ns":1786863540105289000,"word_count":13},"frontend/application/app/wiki/[slug]/page.tsx":{"size":2325,"mtime_ns":1784033954808355000,"indexed_at_ns":1786863540118520300,"word_count":234},"frontend/application/app/wiki/page.tsx":{"size":1242,"mtime_ns":1786885876905476200,"indexed_at_ns":1786946091316862200,"word_count":122},"frontend/application/components/AddressModal.tsx":{"size":16148,"mtime_ns":1786799852571178400,"indexed_at_ns":1786863540130732600,"word_count":1109},"frontend/application/components/ArchivePage.tsx":{"size":35159,"mtime_ns":1786965281354276400,"indexed_at_ns":1787036705795226700,"word_count":2747},"frontend/application/components/AuthModal.tsx":{"size":44845,"mtime_ns":1786891855357691900,"indexed_at_ns":1786946091341971300,"word_count":2978},"frontend/application/components/B2BPortal.tsx":{"size":14014,"mtime_ns":1786894580156857600,"indexed_at_ns":1786946091352003200,"word_count":1094},"frontend/application/components/BackButton.tsx":{"size":1120,"mtime_ns":1786965281357277800,"indexed_at_ns":1787036705811698000,"word_count":117},"frontend/application/components/BlogPage.tsx":{"size":24632,"mtime_ns":1786965281359791500,"indexed_at_ns":1787036705822321700,"word_count":1511},"frontend/application/components/CartDrawer.tsx":{"size":20230,"mtime_ns":1786799852599390300,"indexed_at_ns":1786863540173272000,"word_count":1339},"frontend/application/components/CheckoutPage.tsx":{"size":49233,"mtime_ns":1786965281362524000,"indexed_at_ns":1787036705838034700,"word_count":3309},"frontend/application/components/ContactFormClient.tsx":{"size":10541,"mtime_ns":1786885876918218600,"indexed_at_ns":1786946091414963400,"word_count":775},"frontend/application/components/DeleteConfirmModal.tsx":{"size":2328,"mtime_ns":1786799852608752300,"indexed_at_ns":1786863540195843400,"word_count":195},"frontend/application/components/EnamadBadge.tsx":{"size":1516,"mtime_ns":1786799852612361900,"indexed_at_ns":1786863540202352600,"word_count":114},"frontend/application/components/ErrorBoundary.tsx":{"size":2617,"mtime_ns":1786799852614549600,"indexed_at_ns":1786863540208609600,"word_count":235},"frontend/application/components/ErrorPages.tsx":{"size":2809,"mtime_ns":1786885876920726400,"indexed_at_ns":1786946091441576800,"word_count":243},"frontend/application/components/FeaturedProducts.tsx":{"size":9923,"mtime_ns":1786799852624407000,"indexed_at_ns":1786863540221425100,"word_count":840},"frontend/application/components/Footer.tsx":{"size":12573,"mtime_ns":1786974487725686400,"indexed_at_ns":1787036705876142300,"word_count":847},"frontend/application/components/Header.tsx":{"size":28541,"mtime_ns":1787041925937035500,"indexed_at_ns":1787048760926003700,"word_count":2015},"frontend/application/components/HeaderButton.tsx":{"size":2242,"mtime_ns":1786799852637156100,"indexed_at_ns":1786863540242057800,"word_count":208},"frontend/application/components/Hero.tsx":{"size":18482,"mtime_ns":1787041925938035400,"indexed_at_ns":1787048760937546000,"word_count":1545},"frontend/application/components/IngredientWiki.tsx":{"size":20337,"mtime_ns":1786965281374206800,"indexed_at_ns":1787036705899368800,"word_count":1496},"frontend/application/components/LoginModal.tsx":{"size":13846,"mtime_ns":1786885876932267500,"indexed_at_ns":1786946091505536900,"word_count":1121},"frontend/application/components/MaintenancePage.tsx":{"size":3686,"mtime_ns":1786946249984693000,"indexed_at_ns":1786948020776802400,"word_count":313},"frontend/application/components/NetworkBanner.tsx":{"size":2350,"mtime_ns":1786799852662138900,"indexed_at_ns":1786863540279146900,"word_count":214},"frontend/application/components/OrderDetailsModal.tsx":{"size":36146,"mtime_ns":1787056525031027400,"indexed_at_ns":1787061531144841600,"word_count":2479},"frontend/application/components/OrderSuccess.tsx":{"size":6396,"mtime_ns":1786799852665542300,"indexed_at_ns":1786863540291787200,"word_count":521},"frontend/application/components/OrderTracking.tsx":{"size":9106,"mtime_ns":1786965281380189400,"indexed_at_ns":1787036705931705500,"word_count":663},"frontend/application/components/PetProfile.tsx":{"size":81062,"mtime_ns":1786965281382201600,"indexed_at_ns":1787036705936930900,"word_count":5716},"frontend/application/components/PrescriptionUploadModal.tsx":{"size":18907,"mtime_ns":1786965281385656300,"indexed_at_ns":1787036705943755800,"word_count":1331},"frontend/application/components/ProductPage.tsx":{"size":68478,"mtime_ns":1787055297195058900,"indexed_at_ns":1787055353519520300,"word_count":4863},"frontend/application/components/SafeImage.tsx":{"size":2142,"mtime_ns":1786971396074960500,"indexed_at_ns":1787036705963253100,"word_count":184},"frontend/application/components/SearchResultsPage.tsx":{"size":8335,"mtime_ns":1786799852701578200,"indexed_at_ns":1786863540335701600,"word_count":594},"frontend/application/components/SearchableSelect.tsx":{"size":4375,"mtime_ns":1785575516155554800,"indexed_at_ns":1786863540342211100,"word_count":336},"frontend/application/components/Skeleton.tsx":{"size":3084,"mtime_ns":1783764561943996900,"indexed_at_ns":1786863540349888700,"word_count":291},"frontend/application/components/SmartAdvisor.tsx":{"size":33571,"mtime_ns":1786894580167908400,"indexed_at_ns":1786946091629542000,"word_count":2534},"frontend/application/components/TickerBanner.tsx":{"size":1605,"mtime_ns":1786885876960835800,"indexed_at_ns":1786946091635653200,"word_count":140},"frontend/application/components/Tooltip.tsx":{"size":2771,"mtime_ns":1786885876964103200,"indexed_at_ns":1786946091641165300,"word_count":227},"frontend/application/components/TopUpModal.tsx":{"size":9142,"mtime_ns":1786890779336880900,"indexed_at_ns":1786946091647541000,"word_count":717},"frontend/application/components/UserDashboard.tsx":{"size":91855,"mtime_ns":1786965281395194200,"indexed_at_ns":1787036706011572900,"word_count":5838},"frontend/application/components/VetGallery.tsx":{"size":8242,"mtime_ns":1786971396084533700,"indexed_at_ns":1787036706016981900,"word_count":641},"frontend/application/components/VideosPage.tsx":{"size":7000,"mtime_ns":1787048863693787300,"indexed_at_ns":1787055187240955400,"word_count":531},"frontend/application/components/__tests__/CartDrawer.test.tsx":{"size":3197,"mtime_ns":1786799852761825800,"indexed_at_ns":1786863540412200800,"word_count":285},"frontend/application/components/__tests__/FeaturedProducts.test.tsx":{"size":3115,"mtime_ns":1786799852765632100,"indexed_at_ns":1786863540419710400,"word_count":242},"frontend/application/components/__tests__/Footer.test.tsx":{"size":1649,"mtime_ns":1786885876976595100,"indexed_at_ns":1786946091695116800,"word_count":139},"frontend/application/components/__tests__/Header.test.tsx":{"size":3277,"mtime_ns":1786799852770019100,"indexed_at_ns":1786863540434730400,"word_count":261},"frontend/application/components/__tests__/Hero.test.tsx":{"size":1980,"mtime_ns":1786799852776010800,"indexed_at_ns":1786863540442340400,"word_count":192},"frontend/application/components/__tests__/Tooltip.test.tsx":{"size":1508,"mtime_ns":1786799852784348900,"indexed_at_ns":1786863540450854900,"word_count":137},"frontend/application/eslint.config.mjs":{"size":465,"mtime_ns":1785651092993484500,"indexed_at_ns":1786863540456944500,"word_count":42},"frontend/application/lib/data/products.ts":{"size":103754,"mtime_ns":1787040318681263400,"indexed_at_ns":1787048761176614400,"word_count":9701},"frontend/application/lib/data/provinces.ts":{"size":2993,"mtime_ns":1785571725610676000,"indexed_at_ns":1786863540475337300,"word_count":203},"frontend/application/lib/data/scientificTerms.ts":{"size":18042,"mtime_ns":1786958978743097300,"indexed_at_ns":1786960870219714000,"word_count":1756},"frontend/application/lib/hooks/useNetworkStatus.ts":{"size":610,"mtime_ns":1786799852793488000,"indexed_at_ns":1786863540490904900,"word_count":59},"frontend/application/lib/services/api.ts":{"size":3694,"mtime_ns":1786954681844297300,"indexed_at_ns":1786955475523413700,"word_count":391},"frontend/application/lib/services/authService.ts":{"size":4524,"mtime_ns":1786885876986184800,"indexed_at_ns":1786946091788097500,"word_count":509},"frontend/application/lib/services/orderService.ts":{"size":2428,"mtime_ns":1786799852810726500,"indexed_at_ns":1786863540512358400,"word_count":279},"frontend/application/lib/services/productService.ts":{"size":13279,"mtime_ns":1787055297200644500,"indexed_at_ns":1787055353700737000,"word_count":1177},"frontend/application/lib/services/videoService.ts":{"size":1234,"mtime_ns":1786967385871970500,"indexed_at_ns":1787036706151302400,"word_count":144},"frontend/application/lib/store/__tests__/cartStore.test.ts":{"size":4430,"mtime_ns":1786799852822036900,"indexed_at_ns":1786863540533965000,"word_count":386},"frontend/application/lib/store/__tests__/settingsStore.test.ts":{"size":1949,"mtime_ns":1783856793043803200,"indexed_at_ns":1786863540540796300,"word_count":194},"frontend/application/lib/store/__tests__/userStore.test.ts":{"size":3639,"mtime_ns":1786799852825547700,"indexed_at_ns":1786863540547305500,"word_count":289},"frontend/application/lib/store/cartStore.ts":{"size":6972,"mtime_ns":1786895436235684300,"indexed_at_ns":1786946091844031100,"word_count":697},"frontend/application/lib/store/settingsStore.ts":{"size":3630,"mtime_ns":1786948119787096800,"indexed_at_ns":1786954590768008200,"word_count":371},"frontend/application/lib/store/uiStore.ts":{"size":872,"mtime_ns":1786799852833588000,"indexed_at_ns":1786863540568531000,"word_count":100},"frontend/application/lib/store/usePetStore.ts":{"size":8680,"mtime_ns":1786954681845300600,"indexed_at_ns":1786955475589806900,"word_count":850},"frontend/application/lib/store/userStore.ts":{"size":10236,"mtime_ns":1786885876994698300,"indexed_at_ns":1786946091871573500,"word_count":883},"frontend/application/lib/types.ts":{"size":2194,"mtime_ns":1786799852840111800,"indexed_at_ns":1786863540590778900,"word_count":237},"frontend/application/lib/utils.ts":{"size":478,"mtime_ns":1786799852847284000,"indexed_at_ns":1786863540596780000,"word_count":61},"frontend/application/next.config.ts":{"size":1932,"mtime_ns":1786971396095675600,"indexed_at_ns":1787036706220201800,"word_count":181},"frontend/application/package.json":{"size":844,"mtime_ns":1786799852863132300,"indexed_at_ns":1786863680477356100,"word_count":72,"hashes":{"frontend/application/package.json":"3ffd8078128454f22679add155e8304ffb9476e630e847cd895ffb1422db1b5f"}},"frontend/application/postcss.config.mjs":{"size":94,"mtime_ns":1783764561988252100,"indexed_at_ns":1786863540617596000,"word_count":13},"frontend/application/public/assets/images/hero-section-image.png":{"size":6990105,"mtime_ns":1783856793095044200,"indexed_at_ns":1786863694135258700,"word_count":267685,"hashes":{"frontend/application/public/assets/images/hero-section-image.png":"13c3a8c4b520c0f0500833b266f6e4755a2c0e86904dc89c1d0243136cd9e090"}},"frontend/application/public/assets/images/regenerated_image_1779109861747.png":{"size":2269101,"mtime_ns":1783764562014110300,"indexed_at_ns":1786863694155060900,"word_count":84979,"hashes":{"frontend/application/public/assets/images/regenerated_image_1779109861747.png":"1dad8a2330655c9068cefc35c7e69370d06305219d6a38d82630043805ac39a9"}},"frontend/application/public/file.svg":{"size":391,"mtime_ns":1783764562016213600,"indexed_at_ns":1786863694164180800,"word_count":50,"hashes":{"frontend/application/public/file.svg":"1119e2ef995a10263472a09138d843b9f5924e1f4b6f84d2168226327ace0be1"}},"frontend/application/public/fonts/A-Iranian-Sans/A-Iranian-Sans/read me!.txt":{"size":281,"mtime_ns":1783856793098052000,"indexed_at_ns":1786863694070120000,"word_count":15,"hashes":{"frontend/application/public/fonts/a-iranian-sans/a-iranian-sans/read me!.txt":"6c2a924fd200fa301020be822d33307191d295b2c6b7e731785c02929b6a0fb1"}},"frontend/application/public/fonts/IranNastaliq/IranNastaliq/read me!.txt":{"size":281,"mtime_ns":1783856793107660400,"indexed_at_ns":1786863694072123000,"word_count":15,"hashes":{"frontend/application/public/fonts/irannastaliq/irannastaliq/read me!.txt":"79166364479f09a129d20f508898f5a23d90937b337db1d2c2a64c2cda022e1f"}},"frontend/application/public/fonts/sahel-font-v3.4.0/CHANGELOG.md":{"size":8519,"mtime_ns":1783856793113660500,"indexed_at_ns":1786863694073120500,"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":1786863694075624200,"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":1786863694169221500,"word_count":10881,"hashes":{"frontend/application/public/fonts/sahel-font-v3.4.0/sample-variable.gif":"0825bc4a5adf33cea89ddbb0754a9951481f92beed22cc4ae9be5c59c8847c7f"}},"frontend/application/public/fonts/shabnam-font-v5.0.1/CHANGELOG.md":{"size":7177,"mtime_ns":1783856793230118600,"indexed_at_ns":1786863694077307600,"word_count":951,"hashes":{"frontend/application/public/fonts/shabnam-font-v5.0.1/changelog.md":"575542fd432a1b489570fce6eead03ca964b61d038ee9f3bd9181d6c07fec8b2"}},"frontend/application/public/fonts/shabnam-font-v5.0.1/README.md":{"size":3696,"mtime_ns":1783856793279542700,"indexed_at_ns":1786863694079312500,"word_count":283,"hashes":{"frontend/application/public/fonts/shabnam-font-v5.0.1/readme.md":"f9e5953869832730d4169ced95c5b978ef4d156f0114de6b27f37025fd5e7054"}},"frontend/application/public/fonts/shabnam-font-v5.0.1/sample.png":{"size":85019,"mtime_ns":1783856793315146800,"indexed_at_ns":1786863694176105400,"word_count":2615,"hashes":{"frontend/application/public/fonts/shabnam-font-v5.0.1/sample.png":"01816e4165a20a19dbd7c57390bc7d06119e51479c968568396df53bd3116fec"}},"frontend/application/public/fonts/vazirmatn-v33.003/AUTHORS.txt":{"size":339,"mtime_ns":1783856793316155600,"indexed_at_ns":1786863694080379500,"word_count":55,"hashes":{"frontend/application/public/fonts/vazirmatn-v33.003/authors.txt":"0c05de46944017b09527017814eae25279495af7920f59181720a034e84ab759"}},"frontend/application/public/fonts/vazirmatn-v33.003/CHANGELOG.md":{"size":38550,"mtime_ns":1783856793317690100,"indexed_at_ns":1786863694082379200,"word_count":5086,"hashes":{"frontend/application/public/fonts/vazirmatn-v33.003/changelog.md":"323e095d50626f73023efa85133687134ad8808333e908c41b9a3e61f225edbf"}},"frontend/application/public/fonts/vazirmatn-v33.003/OFL.txt":{"size":4391,"mtime_ns":1783856793319422000,"indexed_at_ns":1786863694084379300,"word_count":671,"hashes":{"frontend/application/public/fonts/vazirmatn-v33.003/ofl.txt":"756a84fec3f8eaf480849631710c21e3d503b11e50081b84fb4d31a4d970208a"}},"frontend/application/public/fonts/vazirmatn-v33.003/README.md":{"size":2339,"mtime_ns":1783856793320489000,"indexed_at_ns":1786863694085379400,"word_count":270,"hashes":{"frontend/application/public/fonts/vazirmatn-v33.003/readme.md":"cee7881a2b9d08b4fe358b683fdde88fa7f8fafb7f53852216a080d291460ca0"}},"frontend/application/public/fonts/vazirmatn-v33.003/\u0631\u0627\u0647\u0646\u0645\u0627.txt":{"size":211,"mtime_ns":1783856793668096800,"indexed_at_ns":1786863694087379500,"word_count":14,"hashes":{"frontend/application/public/fonts/vazirmatn-v33.003/\u0631\u0627\u0647\u0646\u0645\u0627.txt":"aa327615c816569057ced5f2c9993f791a1521e2bd4eab0ab992baf173159217"}},"frontend/application/public/globe.svg":{"size":1035,"mtime_ns":1783764562016720700,"indexed_at_ns":1786863694180121600,"word_count":154,"hashes":{"frontend/application/public/globe.svg":"93cd319cc2847a02f77034690697e90991e4e520dddb486c49db6d157f61a410"}},"frontend/application/public/next.svg":{"size":1375,"mtime_ns":1783764562018238900,"indexed_at_ns":1786863694181884500,"word_count":183,"hashes":{"frontend/application/public/next.svg":"b30f61c9863dba2a8d332f310e20fbca37330c1c68612d0f0b453a0b202e836a"}},"frontend/application/public/vercel.svg":{"size":128,"mtime_ns":1783764562019253000,"indexed_at_ns":1786863694184891200,"word_count":12,"hashes":{"frontend/application/public/vercel.svg":"c88132dfd92b424991c922c4121ed83833f9a07d7046def18dd3ccd44ac25e84"}},"frontend/application/public/window.svg":{"size":385,"mtime_ns":1783764562019253000,"indexed_at_ns":1786863694190022700,"word_count":63,"hashes":{"frontend/application/public/window.svg":"20a1be5f2149ff9ae12c5facdd302bc535ba215694bf31eea01cd014322d20fa"}},"frontend/application/tsconfig.json":{"size":750,"mtime_ns":1786799852865640000,"indexed_at_ns":1786863680478356000,"word_count":61,"hashes":{"frontend/application/tsconfig.json":"adcade0f962ec5888be99b4b1402d98812cfd570b0c5669bda73142b2cb9210d"}},"frontend/application/vitest.config.ts":{"size":244,"mtime_ns":1786799852868652900,"indexed_at_ns":1786863544320193300,"word_count":25},"frontend/application/vitest.setup.ts":{"size":532,"mtime_ns":1786799852870650700,"indexed_at_ns":1786863544326240200,"word_count":58},"metadata.json":{"size":334,"mtime_ns":1783856793672137200,"indexed_at_ns":1786863680479357400,"word_count":35,"hashes":{"metadata.json":"c44b4c4ba60752554ceae65e2f22bddb756cbeb25a4a31ee79160b6eb182255a"}},"package.json":{"size":992,"mtime_ns":1783856793674105800,"indexed_at_ns":1786863680481374200,"word_count":118,"hashes":{"package.json":"0157b70b08d4db87730d29b1da6749d719cc3f815c2c01d0c5cd29042f4d0bcf"}},"prometheus.yml":{"size":164,"mtime_ns":1783764562027779300,"indexed_at_ns":1786863694089379300,"word_count":13,"hashes":{"prometheus.yml":"6efadd3eaf7bcdf8e425488e92b4262447caba278f55a179b9bd4a12d5dfc721"}},"scripts/backup_db.sh":{"size":1362,"mtime_ns":1786799852876784600,"indexed_at_ns":1786863680482378900,"word_count":134,"hashes":{"scripts/backup_db.sh":"f90cf2d0c954f3eaca83566ccb365bff62fd97a2af0225816c19902ee4dfdd6c"}},"scripts/compose.prod.yml":{"size":2090,"mtime_ns":1786877667023527700,"indexed_at_ns":1786946194640744100,"word_count":117,"hashes":{"scripts/compose.prod.yml":"ec4c7444d425a241f744073f8c860282daa97a899b67b302bef2c2d0d92062f5"}},"scripts/compose.stage.yml":{"size":2481,"mtime_ns":1786883225890948000,"indexed_at_ns":1786946194641744700,"word_count":134,"hashes":{"scripts/compose.stage.yml":"84cdc3265d9a75ab71d28d033b18c0edc7738d768b01b1e5f4c6bd3dba3e020b"}},"scripts/deploy.sh":{"size":3353,"mtime_ns":1786972155980490900,"indexed_at_ns":1787036710457507400,"word_count":352,"hashes":{"scripts/deploy.sh":"06615e8fcd2c4244ce6b0f302fbebbff27551da50d1e3e1f8298b4a8b384a5b0"}},"scripts/open-browsers.js":{"size":1551,"mtime_ns":1783764562028780800,"indexed_at_ns":1786863544379330800,"word_count":202},"scripts/start-dev.js":{"size":1332,"mtime_ns":1783766217319524600,"indexed_at_ns":1786863544385074200,"word_count":148},"start.sh":{"size":26,"mtime_ns":1784033954813080300,"indexed_at_ns":1786863680484972600,"word_count":4,"hashes":{"start.sh":"694c258b963c309734a3316c770f5fef29703bc6f24754b04155fd8db94cf862"}},"swagger.yml":{"size":95785,"mtime_ns":1786799852892091600,"indexed_at_ns":1786863694094028500,"word_count":7031,"hashes":{"swagger.yml":"9ee34edd53820461e0a043109976532a305cb26a4ff9e265eb8a5883dd42dd53"}},".antigravity/instructions.md":{"size":226,"mtime_ns":1786870552833405800,"indexed_at_ns":1786877281836081000,"word_count":29,"hashes":{".antigravity/instructions.md":"8d8f5c1bbdbb7b8045e02b06a50e68d3fcfabfb2d65f8ac1cd86168dc8a8cc96"}},".antigravity/workflows/graphify.md":{"size":43292,"mtime_ns":1786870552837921500,"indexed_at_ns":1786877281837081200,"word_count":5442,"hashes":{".antigravity/workflows/graphify.md":"0c16b701a50d64f741f6de107c49584012a8dd7f5e922af9f79754540629e2fe"}},".agents/rules/graphify.md":{"size":933,"mtime_ns":1786870552830271100,"indexed_at_ns":1786877281724557600,"word_count":127,"hashes":{".agents/rules/graphify.md":"26f2577a68d808f7f33ec3e418b95b635aec180d93b22b975e9ae67c47e361c8"}},".agents/workflows/graphify.md":{"size":229,"mtime_ns":1786870552832398300,"indexed_at_ns":1786877281726150800,"word_count":37,"hashes":{".agents/workflows/graphify.md":"a81e2d017e0669c71099362b20854e4d9ed68753f1c240d0682120bdb9aa3c72"}},"backend/src/payment/dto/initiate-payment.dto.ts":{"size":775,"mtime_ns":1786870552874246400,"indexed_at_ns":1786877271375657600,"word_count":69},"backend/src/payment/dto/verify-payment.dto.ts":{"size":1421,"mtime_ns":1786894580126857900,"indexed_at_ns":1786946086330048800,"word_count":126},"backend/src/payment/payment.controller.ts":{"size":8567,"mtime_ns":1786891855343844100,"indexed_at_ns":1786946086341392100,"word_count":738},"backend/src/payment/payment.module.ts":{"size":511,"mtime_ns":1786870552877757300,"indexed_at_ns":1786877271399883800,"word_count":53},"backend/src/payment/payment.service.ts":{"size":29807,"mtime_ns":1786892646036748700,"indexed_at_ns":1786946086353461100,"word_count":2694},"backend/src/payment/zibal.service.ts":{"size":12238,"mtime_ns":1786891855350041800,"indexed_at_ns":1786946086361175000,"word_count":1211},"frontend/application/app/payment/verify/page.tsx":{"size":14338,"mtime_ns":1786891855356078600,"indexed_at_ns":1786946091223701800,"word_count":1094},"AGENTS.md":{"size":226,"mtime_ns":1786870552862708600,"indexed_at_ns":1786877281874765400,"word_count":29,"hashes":{"agents.md":"b664c2bb6d85e009d7495bcd9c3d52c419176473cd4e19362fd4256616076151"}},"frontend/admin-panel/src/pages/SmsSettingsPage.tsx":{"size":78751,"mtime_ns":1787062000634018500,"indexed_at_ns":1787062072001773700,"word_count":5417},"backend/src/payment/dto/admin-transaction-filter.dto.ts":{"size":2028,"mtime_ns":1786870552873240900,"indexed_at_ns":1786877271369346300,"word_count":191},"frontend/admin-panel/src/pages/Transactions.tsx":{"size":38091,"mtime_ns":1786894580150141800,"indexed_at_ns":1786946091012227900,"word_count":2640},"backend/src/payment/interfaces/payment-gateway.interface.ts":{"size":1330,"mtime_ns":1786870552876751100,"indexed_at_ns":1786877271387776900,"word_count":128},"frontend/application/components/catalog/CatalogPageSpread.tsx":{"size":24099,"mtime_ns":1786885876979161800,"indexed_at_ns":1786946091728992400,"word_count":1912},"frontend/application/components/catalog/FlipbookCatalog.tsx":{"size":32968,"mtime_ns":1786885876982161900,"indexed_at_ns":1786946091735990100,"word_count":2807},"frontend/application/components/catalog/ProductDetailModal.tsx":{"size":7763,"mtime_ns":1786872121572482100,"indexed_at_ns":1786877277178724400,"word_count":557},"backend/scripts/generate-openapi.d.ts":{"size":11,"mtime_ns":1786883225777483700,"indexed_at_ns":1786946085729741600,"word_count":2},"backend/scripts/generate-openapi.js":{"size":2965,"mtime_ns":1786883225779120000,"indexed_at_ns":1786946085735928200,"word_count":309},"backend/src/admin/dto/user.dto.ts":{"size":2793,"mtime_ns":1786883225785846400,"indexed_at_ns":1786946085817544400,"word_count":259},"backend/src/admin/ssl.controller.ts":{"size":3357,"mtime_ns":1786877667007047900,"indexed_at_ns":1786946085862558800,"word_count":296},"backend/src/admin/ssl.service.ts":{"size":6366,"mtime_ns":1786877667009063600,"indexed_at_ns":1786946085870189500,"word_count":595},"backend/src/auth/auth.constants.ts":{"size":462,"mtime_ns":1786883225787855500,"indexed_at_ns":1786946085910556000,"word_count":32},"backend/src/common/utils/phone.utils.ts":{"size":1089,"mtime_ns":1786883225801396000,"indexed_at_ns":1786946086201654400,"word_count":149},"backend/src/reviews/dto/create-review.dto.ts":{"size":895,"mtime_ns":1786944769513302000,"indexed_at_ns":1786946086494267400,"word_count":92},"backend/src/reviews/dto/update-review.dto.ts":{"size":519,"mtime_ns":1786944769515314300,"indexed_at_ns":1786946086499267300,"word_count":53},"backend/src/reviews/reviews.controller.ts":{"size":3221,"mtime_ns":1786944769516312000,"indexed_at_ns":1786946086504447100,"word_count":314},"backend/src/reviews/reviews.module.ts":{"size":374,"mtime_ns":1786944769517310800,"indexed_at_ns":1786946086510019800,"word_count":38},"backend/src/reviews/reviews.service.ts":{"size":6255,"mtime_ns":1786944769518311000,"indexed_at_ns":1786946086514718600,"word_count":684},"backend/src/settings/default-ui-texts.ts":{"size":10275,"mtime_ns":1786946249961418900,"indexed_at_ns":1786948015970729400,"word_count":819},"backend/src/settings/dto/sms-log-query.dto.ts":{"size":1306,"mtime_ns":1786883225805456300,"indexed_at_ns":1786946086541006400,"word_count":125},"backend/src/tickets/dto/create-ticket.dto.ts":{"size":2256,"mtime_ns":1786890779319295100,"indexed_at_ns":1786946086613116500,"word_count":201},"backend/src/tickets/dto/ticket-query.dto.ts":{"size":1074,"mtime_ns":1786890779319295100,"indexed_at_ns":1786946086618690800,"word_count":106},"backend/src/tickets/tickets.controller.ts":{"size":3095,"mtime_ns":1786890779321298500,"indexed_at_ns":1786946086625253800,"word_count":291},"backend/src/tickets/tickets.module.ts":{"size":374,"mtime_ns":1786890779322296800,"indexed_at_ns":1786946086630763500,"word_count":38},"backend/src/tickets/tickets.service.ts":{"size":7221,"mtime_ns":1786890779323295600,"indexed_at_ns":1786946086636270900,"word_count":779},"frontend/admin-panel/src/pages/Reviews.tsx":{"size":21507,"mtime_ns":1786944769523816800,"indexed_at_ns":1786946090956397100,"word_count":1540},"frontend/admin-panel/src/pages/SslSettingsPage.tsx":{"size":26036,"mtime_ns":1786877667019013700,"indexed_at_ns":1786946090988586900,"word_count":1913},"frontend/admin-panel/src/pages/Tickets.tsx":{"size":20881,"mtime_ns":1786890779327298800,"indexed_at_ns":1786946091006127300,"word_count":1511},"frontend/application/components/BannerPlacement.tsx":{"size":7607,"mtime_ns":1786946249971933900,"indexed_at_ns":1786948020684317000,"word_count":523},"frontend/application/components/BrandLogo.tsx":{"size":3103,"mtime_ns":1786946249972931000,"indexed_at_ns":1786948020695524700,"word_count":272},"frontend/application/components/ProductReviews.tsx":{"size":16108,"mtime_ns":1787048863691774800,"indexed_at_ns":1787055187036816200,"word_count":1194},"frontend/application/lib/services/ticketService.ts":{"size":1569,"mtime_ns":1786890779340901800,"indexed_at_ns":1786946091806644600,"word_count":170},"frontend/admin-panel/src/components/ui/PriceInput.tsx":{"size":2633,"mtime_ns":1786948119771162400,"indexed_at_ns":1786954589946615200,"word_count":267},"frontend/admin-panel/src/components/ui/Badge.tsx":{"size":1155,"mtime_ns":1786954681822897500,"indexed_at_ns":1786955474687409500,"word_count":122},"frontend/admin-panel/src/components/ui/FormField.tsx":{"size":1683,"mtime_ns":1786954681823527000,"indexed_at_ns":1786955474700715800,"word_count":148},"frontend/admin-panel/src/components/ui/ImagePreviewModal.tsx":{"size":3351,"mtime_ns":1786954681824534900,"indexed_at_ns":1786955474706795000,"word_count":270},"frontend/admin-panel/src/components/ui/Input.tsx":{"size":1747,"mtime_ns":1786954681825535900,"indexed_at_ns":1786955474713870800,"word_count":147},"frontend/admin-panel/src/components/ui/Select.tsx":{"size":1881,"mtime_ns":1786954681828537500,"indexed_at_ns":1786955474739346400,"word_count":160},"frontend/admin-panel/src/components/ui/Textarea.tsx":{"size":1287,"mtime_ns":1786954681828537500,"indexed_at_ns":1786955474757094100,"word_count":110},"frontend/admin-panel/src/components/ui/ToggleSwitch.tsx":{"size":1623,"mtime_ns":1786954681830044900,"indexed_at_ns":1786955474763662100,"word_count":143},"backend/prisma/tsconfig.json":{"size":194,"mtime_ns":1786961195300236300,"indexed_at_ns":1786961249762864500,"word_count":17,"hashes":{"backend/prisma/tsconfig.json":"0308b15b67bad714ff5f1b6b73f64ae46f98d5190cd6092abb1fb67885d67be1"}},"backend/src/admin/dto/product.dto.ts":{"size":5521,"mtime_ns":1787040318671207500,"indexed_at_ns":1787048754796479300,"word_count":447},"backend/src/doctors/doctors.controller.ts":{"size":1536,"mtime_ns":1786971396031564300,"indexed_at_ns":1787036700166586200,"word_count":143},"backend/src/doctors/doctors.module.ts":{"size":374,"mtime_ns":1786971396035575100,"indexed_at_ns":1787036700171585700,"word_count":38},"backend/src/doctors/doctors.service.ts":{"size":2399,"mtime_ns":1786971396038562600,"indexed_at_ns":1787036700176668100,"word_count":277},"frontend/admin-panel/src/pages/DoctorsManager.tsx":{"size":24007,"mtime_ns":1786971396063351700,"indexed_at_ns":1787036705397186000,"word_count":1765},"frontend/application/components/TestimonialsSection.tsx":{"size":6463,"mtime_ns":1786972155979490700,"indexed_at_ns":1787036705990518400,"word_count":494},"frontend/application/components/VideoModalPlayer.tsx":{"size":23237,"mtime_ns":1787061337636422600,"indexed_at_ns":1787061531297702800,"word_count":1737},"frontend/application/components/PodcastPlayerModal.tsx":{"size":18141,"mtime_ns":1787055297193056900,"indexed_at_ns":1787055353509243600,"word_count":1488},"frontend/application/components/PodcastInlinePlayer.tsx":{"size":17050,"mtime_ns":1787055297190051700,"indexed_at_ns":1787055353502731500,"word_count":1384},"frontend/admin-panel/src/components/RouteErrorBoundary.tsx":{"size":4042,"mtime_ns":1787062031396928800,"indexed_at_ns":1787062071767969100,"word_count":350},"frontend/admin-panel/src/utils/lazyWithRetry.ts":{"size":1129,"mtime_ns":1787062036936951300,"indexed_at_ns":1787062072100812500,"word_count":114}} \ No newline at end of file diff --git a/graphify-out/graph.html b/graphify-out/graph.html index 0a24f5c..b431f4e 100644 --- a/graphify-out/graph.html +++ b/graphify-out/graph.html @@ -63,12 +63,12 @@
-
3638 nodes · 6178 edges · 306 communities
+
3649 nodes · 6191 edges · 315 communities