diff --git a/frontend/application/components/ArchivePage.tsx b/frontend/application/components/ArchivePage.tsx index d730b8d..8240e84 100644 --- a/frontend/application/components/ArchivePage.tsx +++ b/frontend/application/components/ArchivePage.tsx @@ -4,6 +4,7 @@ import { toPersian } from "../lib/utils"; import { Product, PetType } from "../lib/data/products"; import { usePetStore } from "../lib/store/usePetStore"; import { productService } from "../lib/services/productService"; +import { isSuitableForDog, isSuitableForCat, isSuitableForBoth, isSpeciesCompatible, matchesMedicalSymptom } from "../lib/petCompatibility"; import Link from "next/link"; import { motion, AnimatePresence } from "motion/react"; import { ProductCardSkeleton } from "./Skeleton"; @@ -87,13 +88,15 @@ const ArchiveProductCard: React.FC<{ product: Product }> = ({ product }) => { setTimeout(() => setIsAdding(false), 400); }; + const forDog = isSuitableForDog(product.suitableFor); + const forCat = isSuitableForCat(product.suitableFor); + const forBoth = isSuitableForBoth(product.suitableFor) || (forDog && forCat); + const compatibility = useMemo(() => { if (!activePet) return null; - const sameSpecies = product.suitableFor === activePet.type || product.suitableFor === "هر دو"; - const matchedSymptom = (activePet.medicalConditions || []).find(mc => - (product.symptoms || []).some(s => mc.includes(s) || s.includes(mc)) - ); + const sameSpecies = isSpeciesCompatible(product.suitableFor, activePet.type); + const matchedSymptom = matchesMedicalSymptom(activePet.medicalConditions, product.symptoms, product.benefits); if (!sameSpecies) return { type: 'alert', text: `مخصوص ${product.suitableFor}` }; if (matchedSymptom) return { type: 'success', text: `توصیه شده برای ${matchedSymptom} ${activePet.name}` }; @@ -124,7 +127,24 @@ const ArchiveProductCard: React.FC<{ product: Product }> = ({ product }) => {
- {compatibility.type === 'alert' ? : compatibility.type === 'success' ? : } + {compatibility.type === 'alert' ? ( + forBoth ? ( + + + + + ) : forCat ? ( + + ) : forDog ? ( + + ) : ( + + ) + ) : compatibility.type === 'success' ? ( + + ) : ( + + )} {compatibility.text}
)} @@ -138,13 +158,13 @@ const ArchiveProductCard: React.FC<{ product: Product }> = ({ product }) => { imgClassName="w-full h-full object-contain" />
- {(product.suitableFor === "سگ" || product.suitableFor === "هر دو") && ( -
+ {forDog && ( +
)} - {(product.suitableFor === "گربه" || product.suitableFor === "هر دو") && ( -
+ {forCat && ( +
)} diff --git a/frontend/application/components/FeaturedProducts.tsx b/frontend/application/components/FeaturedProducts.tsx index cc9e725..1ffa7d9 100644 --- a/frontend/application/components/FeaturedProducts.tsx +++ b/frontend/application/components/FeaturedProducts.tsx @@ -13,6 +13,8 @@ import { useSettingsStore } from "../lib/store/settingsStore"; import { useCartStore } from "../lib/store/cartStore"; import { toast } from "sonner"; +import { isSuitableForDog, isSuitableForCat, isSuitableForBoth, isSpeciesCompatible, matchesMedicalSymptom } from "../lib/petCompatibility"; + function ProductCard({ product, priority = false }: { product: Product; priority?: boolean }) { const router = useRouter(); const { getText, isInitialized } = useSettingsStore(); @@ -23,16 +25,18 @@ function ProductCard({ product, priority = false }: { product: Product; priority const nameFa = product.nameFa || product.name; const nameEn = product.nameEn || ""; + const forDog = isSuitableForDog(product.suitableFor); + const forCat = isSuitableForCat(product.suitableFor); + const forBoth = isSuitableForBoth(product.suitableFor) || (forDog && forCat); + const compatibility = useMemo(() => { if (!activePet) return null; const petType = activePet.type || 'سگ'; - const sameSpecies = product.suitableFor === petType || product.suitableFor === "هر دو"; - const productSymptoms = Array.isArray(product.symptoms) ? product.symptoms : []; - const petConditions = Array.isArray(activePet.medicalConditions) ? activePet.medicalConditions : []; - const helpsSymptom = petConditions.some((s) => productSymptoms.includes(s)); + const sameSpecies = isSpeciesCompatible(product.suitableFor, petType); + const matchedSymptom = matchesMedicalSymptom(activePet.medicalConditions, product.symptoms, product.benefits); if (!sameSpecies) return { type: "alert", text: `مخصوص ${product.suitableFor || 'پت'}` }; - if (helpsSymptom) return { type: "success", text: `توصیه شده برای ${activePet.name || 'پت شما'}` }; + if (matchedSymptom) return { type: "success", text: `توصیه شده برای ${matchedSymptom} ${activePet.name || 'پت شما'}` }; return { type: "neutral", text: `مناسب برای ${activePet.name || 'پت شما'}` }; }, [product, activePet]); @@ -61,7 +65,24 @@ function ProductCard({ product, priority = false }: { product: Product; priority compatibility.type === "alert" ? "bg-amber-100 text-amber-700" : compatibility.type === "success" ? "bg-green-100 text-green-700" : "bg-medical-gray-100 text-medical-gray-600" }`}> - {compatibility.type === "alert" ? : compatibility.type === "success" ? : } + {compatibility.type === "alert" ? ( + forBoth ? ( + + + + + ) : forCat ? ( + + ) : forDog ? ( + + ) : ( + + ) + ) : compatibility.type === "success" ? ( + + ) : ( + + )} {compatibility.text}
)} @@ -79,12 +100,12 @@ function ProductCard({ product, priority = false }: { product: Product; priority {/* Species Badges (Dog / Cat) */}
- {(product.suitableFor === "سگ" || product.suitableFor === "هر دو") && ( + {forDog && (
)} - {(product.suitableFor === "گربه" || product.suitableFor === "هر دو") && ( + {forCat && (
diff --git a/frontend/application/components/PetProfile.tsx b/frontend/application/components/PetProfile.tsx index 11153a3..4c75313 100644 --- a/frontend/application/components/PetProfile.tsx +++ b/frontend/application/components/PetProfile.tsx @@ -2,6 +2,7 @@ import React, { useState, useMemo, useEffect } from "react"; import { Product } from "../lib/data/products"; import { productService } from "../lib/services/productService"; +import { isSpeciesCompatible, matchesMedicalSymptom } from "../lib/petCompatibility"; import { motion, AnimatePresence } from "motion/react"; import { PetProfileSkeleton } from "./Skeleton"; import SafeImage from "./SafeImage"; @@ -164,15 +165,13 @@ export default function PetProfile({ initialView, advisorNeed, embedded = false // Priority 1: Match activePet.medicalConditions directly against product.symptoms if (activePet.medicalConditions && activePet.medicalConditions.length > 0) { products.forEach(p => { - if (p.suitableFor !== activePet.type && p.suitableFor !== "هر دو") return; - const matchedSymptoms = (p.symptoms || []).filter(s => - activePet.medicalConditions.some(mc => mc.includes(s) || s.includes(mc)) - ); + if (!isSpeciesCompatible(p.suitableFor, activePet.type)) return; + const matchedCondition = matchesMedicalSymptom(activePet.medicalConditions, p.symptoms, p.benefits); - if (matchedSymptoms.length > 0 && !picks.some(x => x.product.id === p.id)) { + if (matchedCondition && !picks.some(x => x.product.id === p.id)) { picks.push({ product: p, - reason: `پیشنهاد هوشمند برای تسکین ${matchedSymptoms.join(" و ")}` + reason: `پیشنهاد هوشمند برای تسکین ${matchedCondition}` }); } }); @@ -182,7 +181,7 @@ export default function PetProfile({ initialView, advisorNeed, embedded = false if (activePet.age >= 7) { const seniorSupplements = products.filter(p => (p.id === "herz-vital" || p.slug?.includes("herz") || p.name.includes("قلب") || p.benefits?.includes("مسن")) && - (p.suitableFor === activePet.type || p.suitableFor === "هر دو") + isSpeciesCompatible(p.suitableFor, activePet.type) ); seniorSupplements.forEach(p => { if (!picks.some(x => x.product.id === p.id)) { @@ -192,7 +191,7 @@ export default function PetProfile({ initialView, advisorNeed, embedded = false } else if (activePet.age > 0 && activePet.age <= 1) { const growthSupplements = products.filter(p => (p.name.includes("رشد") || p.benefits?.includes("تغذیه توله") || p.benefits?.includes("کلسیم")) && - (p.suitableFor === activePet.type || p.suitableFor === "هر دو") + isSpeciesCompatible(p.suitableFor, activePet.type) ); growthSupplements.forEach(p => { if (!picks.some(x => x.product.id === p.id)) { @@ -204,7 +203,7 @@ export default function PetProfile({ initialView, advisorNeed, embedded = false if (activePet.activityLevel === "زیاد") { const performanceSupplements = products.filter(p => (p.name.includes("انرژی") || p.benefits?.includes("عضله") || p.benefits?.includes("مفصل")) && - (p.suitableFor === activePet.type || p.suitableFor === "هر دو") + isSpeciesCompatible(p.suitableFor, activePet.type) ); performanceSupplements.forEach(p => { if (!picks.some(x => x.product.id === p.id)) { diff --git a/frontend/application/components/ProductPage.tsx b/frontend/application/components/ProductPage.tsx index ace8ca3..b153472 100644 --- a/frontend/application/components/ProductPage.tsx +++ b/frontend/application/components/ProductPage.tsx @@ -57,6 +57,7 @@ import { usePetStore } from "../lib/store/usePetStore"; import { toast } from "sonner"; import api from "../lib/services/api"; import { DosageConfig } from "../lib/types"; +import { isSuitableForDog, isSuitableForCat, isSuitableForBoth, isSpeciesCompatible, matchesMedicalSymptom } from "../lib/petCompatibility"; interface CalculatorState { petType: "young" | "adult"; @@ -218,10 +219,8 @@ export default function ProductPage({ productSlug }: { productSlug: string }) { const compatibility = useMemo(() => { if (!activePet || !fullProduct) return null; - const sameSpecies = fullProduct.suitableFor === activePet.type || fullProduct.suitableFor === "هر دو"; - const matchedSymptom = (activePet.medicalConditions || []).find(mc => - (fullProduct.symptoms || []).some(s => mc.includes(s) || s.includes(mc)) - ); + const sameSpecies = isSpeciesCompatible(fullProduct.suitableFor, activePet.type); + const matchedSymptom = matchesMedicalSymptom(activePet.medicalConditions, fullProduct.symptoms, fullProduct.benefits); if (!sameSpecies) return { type: 'alert', text: `مخصوص ${fullProduct.suitableFor}` }; if (matchedSymptom) return { type: 'success', text: `توصیه شده برای ${matchedSymptom} ${activePet.name}` }; @@ -469,12 +468,12 @@ export default function ProductPage({ productSlug }: { productSlug: string }) { {/* Species Suitable Badges (Dog / Cat) */}
- {(product.suitableFor === "سگ" || product.suitableFor === "هر دو") && ( + {isSuitableForDog(product.suitableFor) && (
)} - {(product.suitableFor === "گربه" || product.suitableFor === "هر دو") && ( + {isSuitableForCat(product.suitableFor) && (
@@ -657,7 +656,24 @@ export default function ProductPage({ productSlug }: { productSlug: string }) { compatibility.type === 'success' ? 'bg-emerald-100 text-emerald-800 border border-emerald-200' : 'bg-medical-gray-100 text-medical-gray-700 border border-medical-gray-200' }`}> - {compatibility.type === 'alert' ? : compatibility.type === 'success' ? : } + {compatibility.type === 'alert' ? ( + isSuitableForBoth(product.suitableFor) ? ( + + + + + ) : isSuitableForCat(product.suitableFor) ? ( + + ) : isSuitableForDog(product.suitableFor) ? ( + + ) : ( + + ) + ) : compatibility.type === 'success' ? ( + + ) : ( + + )} {compatibility.text}
)} diff --git a/frontend/application/components/UserDashboard.tsx b/frontend/application/components/UserDashboard.tsx index 2b3890d..fac210a 100644 --- a/frontend/application/components/UserDashboard.tsx +++ b/frontend/application/components/UserDashboard.tsx @@ -1325,7 +1325,7 @@ export default function UserDashboard() {

مجموع کمک‌های اهدایی

- {toPersian((Math.max(profile.charityDonationTotal || 0, orders.reduce((sum, o) => sum + Number(o.charityDonation || 0), 0))).toLocaleString())} + {toPersian((Number(profile.charityDonationTotal) || 0).toLocaleString())} تومان
@@ -1336,7 +1336,7 @@ export default function UserDashboard() {

- همکاری شما باعث تامین هزینه {toPersian(Math.floor((profile.charityDonationTotal || 0) / 15000).toString())} وعده غذا برای حیوانات بی‌پناه شده است. + همکاری شما باعث تامین هزینه {toPersian(Math.floor((Number(profile.charityDonationTotal) || 0) / 15000).toString())} وعده غذا برای حیوانات بی‌پناه شده است.

diff --git a/frontend/application/components/catalog/CatalogPageSpread.tsx b/frontend/application/components/catalog/CatalogPageSpread.tsx index af6f5e0..419f563 100644 --- a/frontend/application/components/catalog/CatalogPageSpread.tsx +++ b/frontend/application/components/catalog/CatalogPageSpread.tsx @@ -60,9 +60,14 @@ const getFormBadge = (unit?: string, name?: string) => { // Helper for pet target species icon const getSpeciesBadge = (suitableFor?: string) => { - if (suitableFor === "سگ") return { label: "مخصوص سگ", icon: Dog }; - if (suitableFor === "گربه") return { label: "مخصوص گربه", icon: Cat }; - return { label: "سگ و گربه", icon: Heart }; + const s = (suitableFor || "").trim().toLowerCase(); + const isDog = s === "سگ" || s.includes("سگ") || s.includes("dog"); + const isCat = s === "گربه" || s.includes("گربه") || s.includes("cat"); + const isBoth = s.includes("هر دو") || s.includes("both") || (isDog && isCat); + + if (isBoth) return { label: "سگ و گربه", isBoth: true, icon: Dog, iconCat: Cat }; + if (isCat) return { label: "مخصوص گربه", isBoth: false, icon: Cat }; + return { label: "مخصوص سگ", isBoth: false, icon: Dog }; }; export default function CatalogPageSpread({ @@ -380,7 +385,14 @@ export default function CatalogPageSpread({ {/* Product Badges (Strictly whitespace-nowrap) */}
- + {speciesBadge.isBoth ? ( + + + + + ) : ( + + )} {speciesBadge.label} diff --git a/frontend/application/lib/petCompatibility.ts b/frontend/application/lib/petCompatibility.ts new file mode 100644 index 0000000..7cbe456 --- /dev/null +++ b/frontend/application/lib/petCompatibility.ts @@ -0,0 +1,85 @@ +export function isSuitableForDog(suitableFor?: string): boolean { + if (!suitableFor) return true; + const s = suitableFor.trim().toLowerCase(); + return s === "سگ" || s.includes("سگ") || s.includes("هر دو") || s.includes("مشترک") || s.includes("both") || s.includes("dog"); +} + +export function isSuitableForCat(suitableFor?: string): boolean { + if (!suitableFor) return true; + const s = suitableFor.trim().toLowerCase(); + return s === "گربه" || s.includes("گربه") || s.includes("هر دو") || s.includes("مشترک") || s.includes("both") || s.includes("cat"); +} + +export function isSuitableForBoth(suitableFor?: string): boolean { + if (!suitableFor) return true; + const s = suitableFor.trim().toLowerCase(); + if (s.includes("هر دو") || s.includes("مشترک") || s.includes("both")) return true; + return isSuitableForDog(s) && isSuitableForCat(s); +} + +export function isSpeciesCompatible(suitableFor: string | undefined, petType: string | undefined): boolean { + if (!petType) return true; + const isDog = petType.includes("سگ") || petType.toLowerCase().includes("dog"); + const isCat = petType.includes("گربه") || petType.toLowerCase().includes("cat"); + + if (isSuitableForBoth(suitableFor)) return true; + if (isDog) return isSuitableForDog(suitableFor); + if (isCat) return isSuitableForCat(suitableFor); + return true; +} + +/** + * Partial / fuzzy matching between pet medical conditions and product symptoms + */ +export function matchesMedicalSymptom( + petConditions: string[] | undefined, + productSymptoms: string[] | undefined, + productBenefits?: string +): string | null { + if (!petConditions || petConditions.length === 0) return null; + + // Filter out negative conditions like "هیچ‌کدام" + const validConditions = petConditions.filter( + (c) => c && !c.includes("هیچ‌کدام") && !c.includes("سلامت کامل") + ); + if (validConditions.length === 0) return null; + + const symptoms = (productSymptoms || []).filter(Boolean); + const benefitsText = (productBenefits || "").toLowerCase(); + + for (const condition of validConditions) { + const condNorm = condition.trim().toLowerCase(); + + // Check direct symptom list + for (const symptom of symptoms) { + const sympNorm = symptom.trim().toLowerCase(); + if ( + condNorm.includes(sympNorm) || + sympNorm.includes(condNorm) || + // Check core keywords + (condNorm.includes("مفصل") && sympNorm.includes("مفصل")) || + (condNorm.includes("گوارش") && (sympNorm.includes("گوارش") || sympNorm.includes("اسهال") || sympNorm.includes("غذا"))) || + (condNorm.includes("مو") && (sympNorm.includes("مو") || sympNorm.includes("پوست") || sympNorm.includes("خارش"))) || + (condNorm.includes("اشتها") && sympNorm.includes("اشتها")) || + (condNorm.includes("باردار") && sympNorm.includes("باردار")) || + (condNorm.includes("زایمان") && (sympNorm.includes("شیر") || sympNorm.includes("توله") || sympNorm.includes("زایمان"))) + ) { + return condition; + } + } + + // Also check benefits text if available + if (benefitsText) { + if ( + (condNorm.includes("مفصل") && benefitsText.includes("مفصل")) || + (condNorm.includes("گوارش") && benefitsText.includes("گوارش")) || + (condNorm.includes("مو") && (benefitsText.includes("ریزش") || benefitsText.includes("پوست"))) || + (condNorm.includes("اشتها") && benefitsText.includes("اشتها")) + ) { + return condition; + } + } + } + + return null; +} diff --git a/graphify-out/.graphify_labels.json b/graphify-out/.graphify_labels.json index e827d27..f45dd0e 100644 --- a/graphify-out/.graphify_labels.json +++ b/graphify-out/.graphify_labels.json @@ -1,26 +1,26 @@ { "0": "Roles", "1": "app.module.ts", - "2": "payment.service.ts", + "2": "getMediaUrl", "3": "productService.ts", - "4": "UserDashboard.tsx", + "4": "PetProfile.tsx", "5": "CmsController", "6": "tickets.controller.ts", "7": "SmsSettingsPage.tsx", "8": "SmsService", "9": "devDependencies", - "10": "ReviewsService", - "11": "ConfirmModal.tsx", + "10": "reviews.controller.ts", + "11": "UsersService", "12": "index.ts", "13": "app-audit-verification.e2e-spec.js", - "14": "toPersian", + "14": "UserDashboard.tsx", "15": "src/services/api.ts", "16": "DoctorQueryDto", "17": "schema.ts", "18": "JwtAuthGuard", "19": "admin.controller.ts", "20": "CreateVideoDto", - "21": "auth.service.ts", + "21": "auth.module.ts", "22": "ProductDto", "23": "MenuService", "24": "BE-001", @@ -35,7 +35,7 @@ "33": "WholesaleApplyDto", "34": "B2BService", "35": "ContactService", - "36": "FaqService", + "36": "FaqController", "37": "راهنمای تست سیستم (Software Testing)", "38": "Button", "39": "CategoriesController", @@ -51,13 +51,13 @@ "49": "devDependencies", "50": "devDependencies", "51": "BlogsController", - "52": "PrescriptionsService", + "52": "prescriptions.controller.ts", "53": "SmartAdvisorService", "54": "Button.tsx", "55": "UITexts.tsx", "56": "Orders.tsx", "57": "Role & Core Objective", - "58": "AuthService", + "58": "auth.service.ts", "59": "compilerOptions", "60": "CreateUserDto", "61": "ProductPage.tsx", @@ -84,15 +84,15 @@ "82": "scripts", "83": "dependencies", "84": "Role & Core Objective", - "85": "RegisterDto", + "85": "auth.controller.ts", "86": "zibal.service.ts", "87": "dependencies", "88": "CreateEBankCheckoutDto", "89": "seed-products.ts", - "90": "useCartStore", + "90": "orderService.ts", "91": "Reconciled Audit Roles & Assignments", "92": "OrdersService", - "93": "ArchivePage.tsx", + "93": "components/Skeleton.tsx", "94": "Phase 3.1 — Human Review Preparation and Master Backlog Critique", "95": "getSeoConfig", "96": "compilerOptions", @@ -122,7 +122,7 @@ "120": "compilerOptions", "121": "backend/README.md", "122": "AdminService", - "123": "UsersService", + "123": "UsersController", "124": "Repository Map", "125": "validate_integrity.js", "126": "admin-panel/package.json", @@ -143,15 +143,15 @@ "141": "application/package.json", "142": "start-dev.js", "143": "generate-openapi.js", - "144": "PodcastPlayerModal.tsx", - "145": "AdminLoginDto", + "144": "lib/services/api.ts", + "145": "orders.service.ts", "146": "System Discovery", "147": "HomeController", - "148": "VerifyOtpDto", + "148": "RouteErrorBoundary", "149": "wiki/[slug]/page.tsx", "150": "Product Requirement Document (PRD)", - "151": "@types/node", - "152": "RevalidationService", + "151": "AddressDto", + "152": "RedisService", "153": "exclude", "154": "Baseline Command Plan & Reconciled Command History", "155": "seo-backfill.ts", @@ -183,8 +183,8 @@ "181": "⚙️ Backend Technical Review (05_dev_backend)", "182": "🎨 Frontend & Admin Panel Technical Review (06_dev_frontend)", "183": "🚀 SEO & Content Strategy Review (12_seo_content)", - "184": "AppModule", - "185": "eslint-config-next", + "184": "FaqService", + "185": "Reviews.tsx", "186": "seed-ui-texts.ts", "187": "seed-wiki.ts", "188": "update-blog.dto.ts", @@ -196,13 +196,14 @@ "194": "Raw Finding Verification & Disposition Report", "195": "React + TypeScript + Vite", "196": "Select.tsx", - "197": "userStore.ts", + "197": "ClientLayout.tsx", "198": "@tailwindcss/postcss", - "199": "SmsLogQueryDto", + "199": "track/page.tsx", "200": "application/README.md", "201": "deploy.sh", "202": "🔒 Security & Performance Review (09_devops_security)", "203": "👁️ UX & Persona Interface Review (08_visual_qa)", + "204": "bcrypt", "205": "prisma/scientificTerms.ts", "206": "seed-blogs.ts", "207": "seed-custom.ts", @@ -218,9 +219,11 @@ "217": "sync_honest_manifest.js", "218": "sync_manifest.js", "219": "FormField.tsx", + "220": "class-transformer", "221": "Textarea.tsx", "222": "admin-panel/tsconfig.json", "223": "tailwindcss", + "224": "helmet", "225": "next.config.ts", "226": "Shabnam Font README", "227": "AGENTS.md", @@ -228,7 +231,8 @@ "229": ".agents/workflows/graphify.md", "230": "instructions.md", "231": "@nestjs/schematics", - "232": "prisma", + "232": "js-yaml", + "233": "@nestjs/core", "234": "source-map-support", "235": "ts-loader", "236": "ts-node", @@ -260,6 +264,7 @@ "262": "User Logout API", "263": "generate-openapi.d.ts", "264": "@types/compression", + "265": "@nestjs/jwt", "266": "@types/express", "267": "@types/jest", "268": "@types/multer", @@ -289,14 +294,23 @@ "292": "Production Docker Compose", "293": "Staging Docker Compose", "294": "ZibalService", + "295": "@nestjs/throttler", + "296": "passport", "297": "ZibalEBankService", "298": ".initiateOrderPayment", "299": "@tailwindcss/postcss", "300": "typescript", + "301": "reflect-metadata", "302": "typescript-eslint", + "303": "swagger-ui-express", + "304": "eslint", + "305": "eslint-config-prettier", "306": "@eslint/js", + "307": "@eslint/eslintrc", + "308": "jest", "309": "axios", "310": "tailwindcss", + "311": "@nestjs/cli", "312": "@types/passport-jwt", "313": "20260526160916_add_ui_texts_and_scientific_terms/migration.sql", "314": "eslint-plugin-prettier", @@ -304,9 +318,15 @@ "316": "globals", "317": "revalidate/route.ts", "318": "MaskableField.tsx", + "319": "@nestjs/testing", + "320": "prettier", "321": "orders/page.tsx", "322": "pets/page.tsx", + "323": "ts-jest", + "324": "@types/js-yaml", "325": "@types/react-dom", + "326": "@types/supertest", "327": "eslint-plugin-react-refresh", + "328": "tailwindcss", "329": "typescript-eslint" } diff --git a/graphify-out/.graphify_labels.json.sig b/graphify-out/.graphify_labels.json.sig index 6647520..b22c26e 100644 --- a/graphify-out/.graphify_labels.json.sig +++ b/graphify-out/.graphify_labels.json.sig @@ -1 +1 @@ -{"0": "b0118f68a3e7f0ad", "1": "611a213aa9d86e45", "2": "9b0eb2e9b68ff17d", "3": "e4d2acf07ce96ab4", "4": "27645868cd557ca6", "5": "f34c872571e8a774", "6": "81b67391b0b87cab", "7": "1597e994e0482093", "8": "24dbc701d3071099", "9": "2a03071222cd2b5c", "10": "f4b1d00da7d5608b", "11": "20b9b49e75badf1a", "12": "0f987d4c17ae1a5e", "13": "85d482ba1c55c7df", "14": "af2ac0782f21e92b", "15": "277972da7c33bee5", "16": "bbaf7539ddd300b0", "17": "690dc63010f5642d", "18": "c74e160dc863d698", "19": "94f61b306b735eaf", "20": "a9c8508883f21e7a", "21": "a436fd2990f8250f", "22": "94a621126f7ba89f", "23": "b64d81a71800bd4b", "24": "4eda46a5b0695ef6", "25": "90b79d6027d60d30", "26": "6bd6f2633370820c", "27": "7664e56213a29331", "28": "942c4f9928c60a45", "29": "0614b98d9013b5f5", "30": "53ff49b3d54f0fba", "31": "2153ddcd7477dfb7", "32": "c88f00b47aecaf15", "33": "8c213a62d97de6b1", "34": "e89579446dcd5c0b", "35": "533f2d32c60dd4b3", "36": "f150a52ef5061868", "37": "1c9a1f4c72613346", "38": "58fe18c423dae025", "39": "f38c905c9af9edc0", "40": "cf43e144340a5383", "41": "7abb5bc6a0e4f65f", "42": "cbaa20536db72d3e", "43": "7478d6755ca2248a", "44": "b4c82af1f2f566f7", "45": "7dd5c61562c827a8", "46": "bf5a253cc5340107", "47": "65e41c1c22dcd058", "48": "836402a6cb97cbac", "49": "841013681f4e6e8c", "50": "a58248a849289b31", "51": "91d7f3d12813e4ff", "52": "73df605d6eec20d9", "53": "cb17af4eb831480f", "54": "4f876a49066a6109", "55": "a256e6165bb321ab", "56": "fd66604fe6af00d0", "57": "0f62727f3b4907c0", "58": "4293dd827ea9245d", "59": "7369e85febb97f1a", "60": "eeb0930dcceaa7d9", "61": "24c34e9a62fef5df", "62": "a466f315705201bc", "63": "2b0ee366d6136717", "64": "3b9521f7d7986eaa", "65": "6ff7b2ea219f8d43", "66": "9e3f473a182524cb", "67": "1bbbfacd50f53b85", "68": "9a565e8ed4abb72d", "69": "31a5a53f1fe77e46", "70": "01d4f9d6d9f3b08a", "71": "4007d434524cd109", "72": "69d0f8b228227690", "73": "22456307ff273d80", "74": "d9e74b032c5b8440", "75": "ca4d94b36734b0d0", "76": "10c596403944b996", "77": "62430df45afa65b5", "78": "0273bbf045eb1528", "79": "ba7bc17581366c9a", "80": "0727bb53199085fc", "81": "91393683c97d1773", "82": "36d253e9d0d7547b", "83": "71d2ce6fb684bc0e", "84": "70497658d0e0cea6", "85": "acfe5a84eaab81d7", "86": "e3d13e2060945d3f", "87": "59fc058419aa2d03", "88": "c4acedd7472cf7cb", "89": "656f816eb51f2ab1", "90": "09f572dd7fd8b882", "91": "25a6695f5783d2be", "92": "4c8707f8ae22b09d", "93": "dea06d17e9ddc26e", "94": "f7a706f5fcb260c3", "95": "e15822c5a4043b09", "96": "3fef84a1b6832b0b", "97": "0af4d5946f33a0a6", "98": "5bbc8944b2ba2d8f", "99": "9531a7faa4f8e585", "100": "3c1d9844d072bd2a", "101": "b3c5433df880f335", "102": "e036dbd1de0f8b38", "103": "ac7cb5ec7d5c0802", "104": "c9ebbbfac60d175b", "105": "622f83f2eb300a25", "106": "34581929891cefb2", "107": "96a2e2d27d0db5bd", "108": "ce99f933444978c1", "109": "6d16ccde1291c9d4", "110": "d228746e85ead3af", "111": "b55ba9125ffb5729", "112": "5f50a360f18a880b", "113": "10d4f0bfa19dd52f", "114": "c6b57d78299a27b3", "115": "fe5d64fbdd78e1dc", "116": "db70db08c00162df", "117": "9a1080686fc7c39b", "118": "77fd76193df9f573", "119": "28355f848c862b6e", "120": "25f77f5455bdc96a", "121": "9141a0ede9461fd5", "122": "5462177e29e40ccf", "123": "087641585cd1275f", "124": "3ceda88239910d9a", "125": "9409b3b8a334f51d", "126": "ac95a9f152e3d1c4", "127": "a7299f20633c0236", "128": "98c4e2f9e1a44466", "129": "989c014f76b74793", "130": "7f405315686459b9", "131": "44c7924c829cc215", "132": "17ecb7325285cf7a", "133": "4487fd85ddc13c93", "134": "73382a9ef9d08673", "135": "c4abf0eb38ef740d", "136": "07d37aeefbe50e21", "137": "70b58e32c2890fdd", "138": "f2c7afb0c277c4b7", "139": "e38672923e0d0be7", "140": "167643bcbbc26244", "141": "dcffd9ad7a1f7df6", "142": "f47469d48b3776b5", "143": "1b0ef1cf87b53de3", "144": "f74d29bd4f6b6043", "145": "2c92e71020d644f3", "146": "c7ddffce8605b65b", "147": "4ece6985263357c4", "148": "e68f71b9984258d3", "149": "8a3667a0e1bf82c5", "150": "5910eeefe2f97a20", "151": "6ddbf62ac93920e1", "152": "f8ed1706e4ece0e1", "153": "6cfdd09a6fdd9ff9", "154": "66efafa1e86d8081", "155": "562a328c3cebc9b1", "156": "4a8bdc6821207fa3", "157": "dd5f624dc488c627", "158": "c1015ad9e25cb1a2", "159": "a2fe690317aef2ee", "160": "e30004421d79ffeb", "161": "cd66a5f43cd3407d", "162": "fa2d7dcf52348095", "163": "75efc6457f7fce22", "164": "8375a4fbf0573a52", "165": "edb079558c6f3d59", "166": "1d80b74f885d6716", "167": "3cd15de82f23093a", "168": "7a77349497fcdf37", "169": "85cd9ca1246dc437", "170": "3e93071fc4a80e95", "171": "6114ccb7b9036e33", "172": "f3d92800d756dd79", "173": "2aa85a497fd142d7", "174": "35d3a2679371e9a4", "175": "b8f35a499b36a57a", "176": "634af67d3b759da3", "177": "0dd5439f11354ec2", "178": "4a0995c91344bedb", "179": "c35e392f1594d14e", "180": "4ac5f9965007617d", "181": "cff999497d56b512", "182": "06b38ffa6f58195d", "183": "ee705c178d6958bb", "184": "673d760d94d152f3", "185": "bddcc43a56a2787b", "186": "867babdd40f0c3fc", "187": "298144d1548a7dee", "188": "00d275127a7e435e", "189": "2942a9d30dae4a29", "190": "3e21e2fb50e12670", "191": "be62daa7d5bc336a", "192": "47c3e1a9d4bb7e67", "193": "82ff39c105ae3090", "194": "6747ecf936cb0400", "195": "ebc0087e3400009c", "196": "51d4e15c7e10decf", "197": "22e004a0a4ce2b82", "198": "3b89350265b5abe7", "199": "8ffb30447853a689", "200": "162b36508e5879f3", "201": "6256958a9b817133", "202": "ab06e01c9caa9f90", "203": "204b3a83ef62f360", "205": "67b5cef27d55952d", "206": "10b2996179aaaf2e", "207": "39031f751fb2d42f", "208": "54f53e5e0cc8c385", "209": "821696b1ff49347b", "210": "00739b5480732bdc", "211": "2434b1a28b16557f", "212": "cb3fe87c920b0cb3", "213": "ddb9c95db6575999", "214": "e2250667e3a77089", "215": "9069d5dda9013eee", "216": "0077975cffee54dc", "217": "e6fcd0aec85fac92", "218": "9590124db1601a96", "219": "e077f384ad6b18ad", "221": "6d0322fa3d03fa10", "222": "3be2a9ccdc6668cc", "223": "7a7f04630a11cc2b", "225": "703a4a9860d7ed16", "226": "85fd4a84b5393d0e", "227": "97ec841e4f367258", "228": "4654167fd211d027", "229": "8176a164778526f9", "230": "a74925b45b279d6f", "231": "b796283dc9729998", "232": "fc778d7a22e550eb", "234": "4865e180c0694458", "235": "e24cf60bcf607797", "236": "bbcea5ec9d046ac0", "237": "fd158611e3227271", "238": "c67be0f483e0da2e", "239": "ecfb692b6f7a1014", "240": "8d1aad761b4c839d", "241": "e66a941c60456b44", "242": "a7cf02106e992a23", "243": "88604333ff6aa860", "244": "8365b02889fa6cfc", "245": "6e7b82d0387bf16d", "246": "2eef246ebb269184", "247": "f5edd0761d024ff0", "248": "1e833ee596b5ca23", "249": "9fd8a4abf0eb00a3", "250": "e9728eefddbaed5b", "251": "fe8ad8aaa5b6f652", "252": "be78134816511eaf", "253": "4737624cd139d117", "254": "5fcab665dcd75a7d", "255": "33b1870821fb012a", "256": "f379c891e179d45a", "257": "cef806733796b489", "258": "76578e90353475ed", "259": "04d938f720c1db19", "260": "57931ddf408ceeeb", "261": "b4fbbd4b7a13369e", "262": "d64c6d160a7faed4", "263": "2d1c86501cdb42dd", "264": "47fc05295105c312", "266": "5eb83040a203bd16", "267": "20a2080eac259e2b", "268": "0598c15fa2a12fad", "269": "88e82bb9fffbe642", "270": "ef2d2abc6e491968", "271": "a1e0a3465632c13a", "272": "e6273a4f9b65952b", "273": "38a03e32ab28113e", "274": "400d2883ce278be7", "275": "a13f9628796dc16a", "276": "6e3ce4714f76f2f9", "277": "de2233c73c628824", "278": "a144dcdc61af17a5", "279": "672ba0ee4d6993c2", "280": "daf108b14eb1d2d5", "281": "a618b7b467aa2c0c", "282": "60a2d42e0373376c", "283": "934bee98555c5f5b", "284": "3a30dd7bf2ececaa", "285": "23c1a365d72c9b86", "286": "3323cd7407922799", "287": "9050a3ebe80326e5", "288": "10d7c8f3898b68e5", "289": "2ce5bbc30db985b5", "290": "2a963843e9a8e153", "291": "28537a0c0fbd566f", "292": "3659ed0b62c213c5", "293": "912cf03978233ef7", "294": "64fce0b4c8f81fd1", "297": "012420a20e70092c", "298": "8215ae7f7a0bf8c7", "299": "5a4d1c1ef8bed9bb", "300": "b1d204e97a3c45dc", "302": "1c69dcee9405ce47", "306": "b0b81cfb9e11502e", "309": "768db8a3a299f590", "310": "321732baccae846b", "312": "05f1ad1f29e435ff", "313": "7c65a1f3c4f1b858", "314": "578638c4278d00c6", "315": "a0fdc688ac30f227", "316": "c556ac339be4aba5", "317": "31eb2ccb16c5af0f", "318": "2491d05d8bb29ad7", "321": "482dcf1e6b7ebe00", "322": "f622408f14c9177e", "325": "4ab8ffab1d51ca61", "327": "60ce4fcea460e0a6", "329": "6c1a09679076ea89"} \ No newline at end of file +{"0": "b0118f68a3e7f0ad", "1": "b9d31c12dbf39550", "2": "0d422bfe9305f4c9", "3": "ddfdfb1ed0a6ba86", "4": "2c9880c2eaeb6f9c", "5": "f34c872571e8a774", "6": "81b67391b0b87cab", "7": "1597e994e0482093", "8": "44789c112c8b4535", "9": "ed15050be323b28e", "10": "17d02b55bf422801", "11": "85230766cdf3c4dc", "12": "0f987d4c17ae1a5e", "13": "85d482ba1c55c7df", "14": "8dfbdf8d24213b57", "15": "8215e9152a059d32", "16": "bbaf7539ddd300b0", "17": "690dc63010f5642d", "18": "3c537e0311d4c374", "19": "94f61b306b735eaf", "20": "67ce5a498e6dcd5c", "21": "f53f86d5ec35f0e8", "22": "94a621126f7ba89f", "23": "b64d81a71800bd4b", "24": "4eda46a5b0695ef6", "25": "90b79d6027d60d30", "26": "6bd6f2633370820c", "27": "7664e56213a29331", "28": "942c4f9928c60a45", "29": "0614b98d9013b5f5", "30": "53ff49b3d54f0fba", "31": "2153ddcd7477dfb7", "32": "57d253df3e52fe5b", "33": "4c3daa7635f2b586", "34": "0f54928759177605", "35": "533f2d32c60dd4b3", "36": "9d8aa1fc12e37b74", "37": "1c9a1f4c72613346", "38": "58fe18c423dae025", "39": "f38c905c9af9edc0", "40": "f07a16ec76520068", "41": "7abb5bc6a0e4f65f", "42": "cbaa20536db72d3e", "43": "7478d6755ca2248a", "44": "b4c82af1f2f566f7", "45": "7dd5c61562c827a8", "46": "bf5a253cc5340107", "47": "65e41c1c22dcd058", "48": "fd95f1a2ef32b0b2", "49": "841013681f4e6e8c", "50": "6310102a388e24e9", "51": "91d7f3d12813e4ff", "52": "5b104b2c1853dc56", "53": "cb17af4eb831480f", "54": "11d8babec70bc593", "55": "a256e6165bb321ab", "56": "fd66604fe6af00d0", "57": "0f62727f3b4907c0", "58": "d7eeaaeef2dec601", "59": "7369e85febb97f1a", "60": "eeb0930dcceaa7d9", "61": "f893e582e61723d0", "62": "a466f315705201bc", "63": "4be5c81976312539", "64": "3b9521f7d7986eaa", "65": "6ff7b2ea219f8d43", "66": "9e3f473a182524cb", "67": "e6c8cc4567fc8f2f", "68": "54b98e2f4a4ee4a4", "69": "31a5a53f1fe77e46", "70": "01d4f9d6d9f3b08a", "71": "6fa8382024f10b3e", "72": "69d0f8b228227690", "73": "22456307ff273d80", "74": "d9e74b032c5b8440", "75": "ca4d94b36734b0d0", "76": "10c596403944b996", "77": "62430df45afa65b5", "78": "0273bbf045eb1528", "79": "ba7bc17581366c9a", "80": "0727bb53199085fc", "81": "91393683c97d1773", "82": "36d253e9d0d7547b", "83": "71d2ce6fb684bc0e", "84": "70497658d0e0cea6", "85": "642e51489ab39b63", "86": "e3d13e2060945d3f", "87": "59fc058419aa2d03", "88": "c4acedd7472cf7cb", "89": "656f816eb51f2ab1", "90": "48e8bf9bf16279a4", "91": "25a6695f5783d2be", "92": "822a0c2f156c24a1", "93": "800f5fcfebc515bf", "94": "f7a706f5fcb260c3", "95": "e15822c5a4043b09", "96": "3fef84a1b6832b0b", "97": "7e224f8e70889ef3", "98": "5bbc8944b2ba2d8f", "99": "9531a7faa4f8e585", "100": "3c1d9844d072bd2a", "101": "b3c5433df880f335", "102": "e036dbd1de0f8b38", "103": "ac7cb5ec7d5c0802", "104": "cb4d9aff34fa7615", "105": "622f83f2eb300a25", "106": "34581929891cefb2", "107": "22fda1f833abd2bd", "108": "21dc334a3b4816a4", "109": "6d16ccde1291c9d4", "110": "d228746e85ead3af", "111": "b55ba9125ffb5729", "112": "5f50a360f18a880b", "113": "e2bda4d8806cbe01", "114": "c6b57d78299a27b3", "115": "431370e69d5e5e6e", "116": "db70db08c00162df", "117": "9a1080686fc7c39b", "118": "77fd76193df9f573", "119": "28355f848c862b6e", "120": "25f77f5455bdc96a", "121": "9141a0ede9461fd5", "122": "5462177e29e40ccf", "123": "7f879091783d601b", "124": "3ceda88239910d9a", "125": "9409b3b8a334f51d", "126": "ac95a9f152e3d1c4", "127": "a7299f20633c0236", "128": "98c4e2f9e1a44466", "129": "989c014f76b74793", "130": "7f405315686459b9", "131": "44c7924c829cc215", "132": "17ecb7325285cf7a", "133": "4487fd85ddc13c93", "134": "73382a9ef9d08673", "135": "c4abf0eb38ef740d", "136": "07d37aeefbe50e21", "137": "70b58e32c2890fdd", "138": "f2c7afb0c277c4b7", "139": "e38672923e0d0be7", "140": "167643bcbbc26244", "141": "dcffd9ad7a1f7df6", "142": "f47469d48b3776b5", "143": "1b0ef1cf87b53de3", "144": "043ab474bfad6bf2", "145": "b058dd6c78285966", "146": "c7ddffce8605b65b", "147": "4ece6985263357c4", "148": "ed938bf48ae6ca6c", "149": "8a3667a0e1bf82c5", "150": "5910eeefe2f97a20", "151": "13d8b5013367f4ff", "152": "57e8c74009c1a070", "153": "6cfdd09a6fdd9ff9", "154": "66efafa1e86d8081", "155": "562a328c3cebc9b1", "156": "4a8bdc6821207fa3", "157": "dd5f624dc488c627", "158": "c1015ad9e25cb1a2", "159": "a2fe690317aef2ee", "160": "e30004421d79ffeb", "161": "cd66a5f43cd3407d", "162": "fa2d7dcf52348095", "163": "75efc6457f7fce22", "164": "8375a4fbf0573a52", "165": "edb079558c6f3d59", "166": "1d80b74f885d6716", "167": "3cd15de82f23093a", "168": "7a77349497fcdf37", "169": "85cd9ca1246dc437", "170": "3e93071fc4a80e95", "171": "6114ccb7b9036e33", "172": "f3d92800d756dd79", "173": "2aa85a497fd142d7", "174": "35d3a2679371e9a4", "175": "b8f35a499b36a57a", "176": "634af67d3b759da3", "177": "0dd5439f11354ec2", "178": "4a0995c91344bedb", "179": "c35e392f1594d14e", "180": "4ac5f9965007617d", "181": "cff999497d56b512", "182": "06b38ffa6f58195d", "183": "ee705c178d6958bb", "184": "4475bb6e4b725119", "185": "bcccacc80df4b661", "186": "867babdd40f0c3fc", "187": "298144d1548a7dee", "188": "00d275127a7e435e", "189": "2942a9d30dae4a29", "190": "3e21e2fb50e12670", "191": "be62daa7d5bc336a", "192": "47c3e1a9d4bb7e67", "193": "82ff39c105ae3090", "194": "6747ecf936cb0400", "195": "ebc0087e3400009c", "196": "51d4e15c7e10decf", "197": "42dd95d6a7fd8234", "198": "3b89350265b5abe7", "199": "2b8d338593a71266", "200": "162b36508e5879f3", "201": "6256958a9b817133", "202": "ab06e01c9caa9f90", "203": "204b3a83ef62f360", "204": "5868455594581723", "205": "67b5cef27d55952d", "206": "10b2996179aaaf2e", "207": "39031f751fb2d42f", "208": "54f53e5e0cc8c385", "209": "821696b1ff49347b", "210": "00739b5480732bdc", "211": "2434b1a28b16557f", "212": "cb3fe87c920b0cb3", "213": "ddb9c95db6575999", "214": "e2250667e3a77089", "215": "9069d5dda9013eee", "216": "0077975cffee54dc", "217": "e6fcd0aec85fac92", "218": "9590124db1601a96", "219": "e077f384ad6b18ad", "220": "959e76250dbacbad", "221": "6d0322fa3d03fa10", "222": "3be2a9ccdc6668cc", "223": "7a7f04630a11cc2b", "224": "3a6753a80123a0f4", "225": "703a4a9860d7ed16", "226": "85fd4a84b5393d0e", "227": "97ec841e4f367258", "228": "4654167fd211d027", "229": "8176a164778526f9", "230": "a74925b45b279d6f", "231": "b796283dc9729998", "232": "ca950b47c628b81a", "233": "255a8a95e2a3df67", "234": "4865e180c0694458", "235": "e24cf60bcf607797", "236": "bbcea5ec9d046ac0", "237": "fd158611e3227271", "238": "c67be0f483e0da2e", "239": "ecfb692b6f7a1014", "240": "8d1aad761b4c839d", "241": "e66a941c60456b44", "242": "a7cf02106e992a23", "243": "88604333ff6aa860", "244": "8365b02889fa6cfc", "245": "6e7b82d0387bf16d", "246": "2eef246ebb269184", "247": "f5edd0761d024ff0", "248": "1e833ee596b5ca23", "249": "9fd8a4abf0eb00a3", "250": "e9728eefddbaed5b", "251": "fe8ad8aaa5b6f652", "252": "be78134816511eaf", "253": "4737624cd139d117", "254": "5fcab665dcd75a7d", "255": "33b1870821fb012a", "256": "f379c891e179d45a", "257": "cef806733796b489", "258": "76578e90353475ed", "259": "04d938f720c1db19", "260": "57931ddf408ceeeb", "261": "b4fbbd4b7a13369e", "262": "d64c6d160a7faed4", "263": "2d1c86501cdb42dd", "264": "47fc05295105c312", "265": "47e08912fd6cd296", "266": "5eb83040a203bd16", "267": "20a2080eac259e2b", "268": "0598c15fa2a12fad", "269": "88e82bb9fffbe642", "270": "ef2d2abc6e491968", "271": "a1e0a3465632c13a", "272": "e6273a4f9b65952b", "273": "38a03e32ab28113e", "274": "400d2883ce278be7", "275": "a13f9628796dc16a", "276": "6e3ce4714f76f2f9", "277": "de2233c73c628824", "278": "a144dcdc61af17a5", "279": "672ba0ee4d6993c2", "280": "daf108b14eb1d2d5", "281": "a618b7b467aa2c0c", "282": "60a2d42e0373376c", "283": "934bee98555c5f5b", "284": "3a30dd7bf2ececaa", "285": "23c1a365d72c9b86", "286": "3323cd7407922799", "287": "9050a3ebe80326e5", "288": "10d7c8f3898b68e5", "289": "2ce5bbc30db985b5", "290": "2a963843e9a8e153", "291": "28537a0c0fbd566f", "292": "3659ed0b62c213c5", "293": "912cf03978233ef7", "294": "324d8e36c3be5e01", "295": "3a8a257d1f54b2ae", "296": "2ed3af4b96bcf920", "297": "69f2014dab3c4a93", "298": "9372bf2b2a6a0b97", "299": "5a4d1c1ef8bed9bb", "300": "b1d204e97a3c45dc", "301": "7fde599bf90ee0bf", "302": "1c69dcee9405ce47", "303": "65d822bbba496dee", "304": "70e62553403661a3", "305": "f6ddba6f531d6b96", "306": "b0b81cfb9e11502e", "307": "0bd7ed52b69464bf", "308": "c7de3fe21e2e53b4", "309": "768db8a3a299f590", "310": "321732baccae846b", "311": "d7cad630fb1d1414", "312": "05f1ad1f29e435ff", "313": "7c65a1f3c4f1b858", "314": "578638c4278d00c6", "315": "a0fdc688ac30f227", "316": "c556ac339be4aba5", "317": "31eb2ccb16c5af0f", "318": "2491d05d8bb29ad7", "319": "9a7b4968676954d7", "320": "78aa95566e86b57f", "321": "482dcf1e6b7ebe00", "322": "f622408f14c9177e", "323": "c24925d361d1eb6f", "324": "d2a7888a77082d4c", "325": "4ab8ffab1d51ca61", "326": "bfcc583da029935c", "327": "60ce4fcea460e0a6", "328": "46606f6daab10d34", "329": "6c1a09679076ea89"} \ No newline at end of file diff --git a/graphify-out/2026-09-05/.graphify_labels.json b/graphify-out/2026-09-05/.graphify_labels.json index de9757c..e827d27 100644 --- a/graphify-out/2026-09-05/.graphify_labels.json +++ b/graphify-out/2026-09-05/.graphify_labels.json @@ -1,16 +1,16 @@ { "0": "Roles", "1": "app.module.ts", - "2": "AdminTransactionFilterDto", + "2": "payment.service.ts", "3": "productService.ts", - "4": "PetProfile.tsx", + "4": "UserDashboard.tsx", "5": "CmsController", - "6": "TicketsService", + "6": "tickets.controller.ts", "7": "SmsSettingsPage.tsx", - "8": "SettingsController", + "8": "SmsService", "9": "devDependencies", - "10": "CreateReviewDto", - "11": "WikiController", + "10": "ReviewsService", + "11": "ConfirmModal.tsx", "12": "index.ts", "13": "app-audit-verification.e2e-spec.js", "14": "toPersian", @@ -20,8 +20,8 @@ "18": "JwtAuthGuard", "19": "admin.controller.ts", "20": "CreateVideoDto", - "21": ".getSmsConfig", - "22": "BlogsService", + "21": "auth.service.ts", + "22": "ProductDto", "23": "MenuService", "24": "BE-001", "25": "FE-001", @@ -47,26 +47,26 @@ "45": "What You Must Do When Invoked", "46": "20260526145407_init/migration.sql", "47": "IngredientsService", - "48": "auth.controller.ts", + "48": "AuthController", "49": "devDependencies", "50": "devDependencies", "51": "BlogsController", - "52": "PrescriptionsController", + "52": "PrescriptionsService", "53": "SmartAdvisorService", "54": "Button.tsx", "55": "UITexts.tsx", "56": "Orders.tsx", "57": "Role & Core Objective", - "58": "UserDashboard.tsx", + "58": "AuthService", "59": "compilerOptions", "60": "CreateUserDto", "61": "ProductPage.tsx", - "62": "WikiService", + "62": "torob.controller.ts", "63": "dependencies", "64": "compilerOptions", "65": "admin.service.ts", "66": "AdminQueryDto", - "67": "ReportsController", + "67": "admin.module.ts", "68": "useSettingsStore", "69": "Required Review Group Closures", "70": "compilerOptions", @@ -84,17 +84,17 @@ "82": "scripts", "83": "dependencies", "84": "Role & Core Objective", - "85": "auth.module.ts", + "85": "RegisterDto", "86": "zibal.service.ts", "87": "dependencies", - "88": "payment.controller.ts", + "88": "CreateEBankCheckoutDto", "89": "seed-products.ts", - "90": "OrderService", + "90": "useCartStore", "91": "Reconciled Audit Roles & Assignments", "92": "OrdersService", "93": "ArchivePage.tsx", "94": "Phase 3.1 — Human Review Preparation and Master Backlog Critique", - "95": "wiki/[slug]/page.tsx", + "95": "getSeoConfig", "96": "compilerOptions", "97": "PaymentService", "98": "scripts", @@ -105,7 +105,7 @@ "103": "Comprehensive Change Log", "104": "Products.tsx", "105": "Operational Rules & Boundaries", - "106": "cms.controller.ts", + "106": "InitiatePaymentDto", "107": "PaginationDto", "108": "PrismaService", "109": "1. Summary of Integrity Repairs Performed", @@ -121,13 +121,13 @@ "119": "compilerOptions", "120": "compilerOptions", "121": "backend/README.md", - "122": "AdminController", + "122": "AdminService", "123": "UsersService", "124": "Repository Map", "125": "validate_integrity.js", "126": "admin-panel/package.json", "127": "Sahel-Font", - "128": "AdminService", + "128": "Body", "129": "Reports.tsx", "130": "Sahel-Font", "131": "Role & Core Objective", @@ -143,15 +143,15 @@ "141": "application/package.json", "142": "start-dev.js", "143": "generate-openapi.js", - "144": "SafeImage.tsx", - "145": "AuthService", + "144": "PodcastPlayerModal.tsx", + "145": "AdminLoginDto", "146": "System Discovery", "147": "HomeController", - "148": "track/page.tsx", - "149": "trust-seals/page.tsx", + "148": "VerifyOtpDto", + "149": "wiki/[slug]/page.tsx", "150": "Product Requirement Document (PRD)", - "151": "menu.module.ts", - "152": "auth.service.ts", + "151": "@types/node", + "152": "RevalidationService", "153": "exclude", "154": "Baseline Command Plan & Reconciled Command History", "155": "seo-backfill.ts", @@ -183,8 +183,8 @@ "181": "⚙️ Backend Technical Review (05_dev_backend)", "182": "🎨 Frontend & Admin Panel Technical Review (06_dev_frontend)", "183": "🚀 SEO & Content Strategy Review (12_seo_content)", - "184": "MetricsController", - "185": "RouteErrorBoundary", + "184": "AppModule", + "185": "eslint-config-next", "186": "seed-ui-texts.ts", "187": "seed-wiki.ts", "188": "update-blog.dto.ts", @@ -203,7 +203,6 @@ "201": "deploy.sh", "202": "🔒 Security & Performance Review (09_devops_security)", "203": "👁️ UX & Persona Interface Review (08_visual_qa)", - "204": "zibal-ebank.service.ts", "205": "prisma/scientificTerms.ts", "206": "seed-blogs.ts", "207": "seed-custom.ts", @@ -219,11 +218,9 @@ "217": "sync_honest_manifest.js", "218": "sync_manifest.js", "219": "FormField.tsx", - "220": "jest", "221": "Textarea.tsx", "222": "admin-panel/tsconfig.json", "223": "tailwindcss", - "224": "class-transformer", "225": "next.config.ts", "226": "Shabnam Font README", "227": "AGENTS.md", @@ -232,7 +229,6 @@ "230": "instructions.md", "231": "@nestjs/schematics", "232": "prisma", - "233": "Reviews.tsx", "234": "source-map-support", "235": "ts-loader", "236": "ts-node", @@ -264,7 +260,6 @@ "262": "User Logout API", "263": "generate-openapi.d.ts", "264": "@types/compression", - "265": "helmet", "266": "@types/express", "267": "@types/jest", "268": "@types/multer", @@ -294,23 +289,14 @@ "292": "Production Docker Compose", "293": "Staging Docker Compose", "294": "ZibalService", - "295": "js-yaml", - "296": "@nestjs/core", "297": "ZibalEBankService", "298": ".initiateOrderPayment", "299": "@tailwindcss/postcss", "300": "typescript", - "301": "@nestjs/jwt", "302": "typescript-eslint", - "303": "@nestjs/throttler", - "304": "passport", - "305": "reflect-metadata", "306": "@eslint/js", - "307": "swagger-ui-express", - "308": "eslint-config-prettier", "309": "axios", "310": "tailwindcss", - "311": "@eslint/eslintrc", "312": "@types/passport-jwt", "313": "20260526160916_add_ui_texts_and_scientific_terms/migration.sql", "314": "eslint-plugin-prettier", @@ -318,17 +304,9 @@ "316": "globals", "317": "revalidate/route.ts", "318": "MaskableField.tsx", - "319": "@nestjs/cli", - "320": "@nestjs/testing", "321": "orders/page.tsx", "322": "pets/page.tsx", - "323": "prettier", - "324": "eslint", "325": "@types/react-dom", - "326": "@types/js-yaml", "327": "eslint-plugin-react-refresh", - "328": "@types/supertest", - "329": "typescript-eslint", - "330": "@nestjs/swagger", - "331": "tailwindcss" + "329": "typescript-eslint" } diff --git a/graphify-out/2026-09-05/GRAPH_REPORT.md b/graphify-out/2026-09-05/GRAPH_REPORT.md index 598fb77..7f57d4f 100644 --- a/graphify-out/2026-09-05/GRAPH_REPORT.md +++ b/graphify-out/2026-09-05/GRAPH_REPORT.md @@ -1,32 +1,32 @@ -# Graph Report - canina (2026-09-02) +# Graph Report - canina (2026-09-05) ## Corpus Check -- 599 files · ~1,084,689 words +- 601 files · ~1,114,020 words - Verdict: corpus is large enough that graph structure adds value. ## Summary -- 4208 nodes · 7643 edges · 332 communities (212 shown, 120 thin omitted) -- Extraction: 96% EXTRACTED · 4% INFERRED · 0% AMBIGUOUS · INFERRED: 288 edges (avg confidence: 0.79) +- 4234 nodes · 7717 edges · 310 communities (215 shown, 95 thin omitted) +- Extraction: 96% EXTRACTED · 4% INFERRED · 0% AMBIGUOUS · INFERRED: 298 edges (avg confidence: 0.79) - Token cost: 0 input · 0 output ## Graph Freshness -- Built from commit: `ceaab10f` +- Built from commit: `e15c25da` - Run `git rev-parse HEAD` and compare to check if the graph is stale. - Run `graphify update .` after code changes (no API cost). ## Community Hubs (Navigation) - Roles - app.module.ts -- AdminTransactionFilterDto +- payment.service.ts - productService.ts -- PetProfile.tsx +- UserDashboard.tsx - CmsController -- TicketsService +- tickets.controller.ts - SmsSettingsPage.tsx -- SettingsController +- SmsService - devDependencies -- CreateReviewDto -- WikiController +- ReviewsService +- ConfirmModal.tsx - index.ts - app-audit-verification.e2e-spec.js - toPersian @@ -36,7 +36,8 @@ - JwtAuthGuard - admin.controller.ts - CreateVideoDto -- BlogsService +- auth.service.ts +- ProductDto - MenuService - BE-001 - FE-001 @@ -62,26 +63,26 @@ - What You Must Do When Invoked - 20260526145407_init/migration.sql - IngredientsService -- auth.controller.ts +- AuthController - devDependencies - devDependencies - BlogsController -- PrescriptionsController +- PrescriptionsService - SmartAdvisorService - Button.tsx - UITexts.tsx - Orders.tsx - Role & Core Objective -- UserDashboard.tsx +- AuthService - compilerOptions - CreateUserDto - ProductPage.tsx -- WikiService +- torob.controller.ts - dependencies - compilerOptions - admin.service.ts - AdminQueryDto -- ReportsController +- admin.module.ts - useSettingsStore - Required Review Group Closures - compilerOptions @@ -99,17 +100,17 @@ - scripts - dependencies - Role & Core Objective -- auth.module.ts +- RegisterDto - zibal.service.ts - dependencies -- payment.controller.ts +- CreateEBankCheckoutDto - seed-products.ts -- OrderService +- useCartStore - Reconciled Audit Roles & Assignments - OrdersService - ArchivePage.tsx - Phase 3.1 — Human Review Preparation and Master Backlog Critique -- wiki/[slug]/page.tsx +- getSeoConfig - compilerOptions - PaymentService - scripts @@ -120,7 +121,7 @@ - Comprehensive Change Log - Products.tsx - Operational Rules & Boundaries -- cms.controller.ts +- InitiatePaymentDto - PaginationDto - PrismaService - 1. Summary of Integrity Repairs Performed @@ -136,13 +137,13 @@ - compilerOptions - compilerOptions - backend/README.md -- AdminController +- AdminService - UsersService - Repository Map - validate_integrity.js - admin-panel/package.json - Sahel-Font -- AdminService +- Body - Reports.tsx - Sahel-Font - Role & Core Objective @@ -158,15 +159,15 @@ - application/package.json - start-dev.js - generate-openapi.js -- SafeImage.tsx -- AuthService +- PodcastPlayerModal.tsx +- AdminLoginDto - System Discovery - HomeController -- track/page.tsx -- trust-seals/page.tsx +- VerifyOtpDto +- wiki/[slug]/page.tsx - Product Requirement Document (PRD) -- menu.module.ts -- auth.service.ts +- @types/node +- RevalidationService - exclude - Baseline Command Plan & Reconciled Command History - seo-backfill.ts @@ -197,8 +198,8 @@ - ⚙️ Backend Technical Review (05_dev_backend) - 🎨 Frontend & Admin Panel Technical Review (06_dev_frontend) - 🚀 SEO & Content Strategy Review (12_seo_content) -- MetricsController -- RouteErrorBoundary +- AppModule +- eslint-config-next - seed-ui-texts.ts - seed-wiki.ts - update-blog.dto.ts @@ -217,7 +218,6 @@ - deploy.sh - 🔒 Security & Performance Review (09_devops_security) - 👁️ UX & Persona Interface Review (08_visual_qa) -- zibal-ebank.service.ts - prisma/scientificTerms.ts - seed-blogs.ts - seed-custom.ts @@ -233,11 +233,9 @@ - sync_honest_manifest.js - sync_manifest.js - FormField.tsx -- jest - Textarea.tsx - admin-panel/tsconfig.json - tailwindcss -- class-transformer - next.config.ts - Shabnam Font README - AGENTS.md @@ -246,7 +244,6 @@ - instructions.md - @nestjs/schematics - prisma -- Reviews.tsx - source-map-support - ts-loader - ts-node @@ -274,7 +271,6 @@ - User Login API - User Logout API - @types/compression -- helmet - @types/express - @types/jest - @types/multer @@ -293,21 +289,12 @@ - Production Docker Compose - Staging Docker Compose - ZibalService -- js-yaml -- @nestjs/core - ZibalEBankService - .initiateOrderPayment - @tailwindcss/postcss - typescript -- @nestjs/jwt - typescript-eslint -- @nestjs/throttler -- passport -- reflect-metadata - @eslint/js -- swagger-ui-express -- eslint-config-prettier -- @eslint/eslintrc - @types/passport-jwt - 20260526160916_add_ui_texts_and_scientific_terms/migration.sql - eslint-plugin-prettier @@ -315,24 +302,16 @@ - globals - revalidate/route.ts - MaskableField.tsx -- @nestjs/cli -- @nestjs/testing -- prettier -- eslint - @types/react-dom -- @types/js-yaml - eslint-plugin-react-refresh -- @types/supertest - typescript-eslint -- @nestjs/swagger -- tailwindcss ## God Nodes (most connected - your core abstractions) -1. `Roles()` - 106 edges +1. `Roles()` - 108 edges 2. `PrismaService` - 89 edges 3. `useSettingsStore` - 61 edges -4. `api` - 44 edges -5. `SmsService` - 43 edges +4. `SmsService` - 51 edges +5. `api` - 44 edges 6. `PaginationDto` - 41 edges 7. `AdminService` - 40 edges 8. `AdminController` - 39 edges @@ -352,75 +331,75 @@ 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` - 3-file cycle: `frontend/application/lib/services/api.ts -> frontend/application/lib/store/userStore.ts -> frontend/application/lib/store/cartStore.ts -> frontend/application/lib/services/api.ts` +- 3-file cycle: `frontend/application/lib/services/api.ts -> frontend/application/lib/store/userStore.ts -> frontend/application/lib/services/authService.ts -> frontend/application/lib/services/api.ts` - 4-file cycle: `frontend/application/lib/services/api.ts -> frontend/application/lib/store/userStore.ts -> frontend/application/lib/store/cartStore.ts -> frontend/application/lib/services/orderService.ts -> frontend/application/lib/services/api.ts` -## Communities (332 total, 120 thin omitted) +## Communities (310 total, 95 thin omitted) ### Community 0 - "Roles" Cohesion: 0.24 Nodes (13): Roles(), PaymentController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Get (+5 more) ### Community 1 - "app.module.ts" -Cohesion: 0.06 -Nodes (39): B2BModule, Module, BannersModule, Module, CmsModule, Module, RevalidationModule, Global (+31 more) +Cohesion: 0.07 +Nodes (36): B2BModule, Module, BannersModule, Module, CmsModule, Module, SmsModule, Global (+28 more) -### Community 2 - "AdminTransactionFilterDto" -Cohesion: 0.22 -Nodes (7): AdminTransactionFilterDto, ApiPropertyOptional, IsIn, IsNumber, IsOptional, IsString, Type +### Community 2 - "payment.service.ts" +Cohesion: 0.20 +Nodes (8): AdminTransactionFilterDto, ApiPropertyOptional, IsIn, IsNumber, IsOptional, IsString, Type, ClientMetadata ### Community 3 - "productService.ts" -Cohesion: 0.06 -Nodes (39): buildTorobProductSpec(), buildTorobProductTitle(), dynamic, GET(), revalidate, dynamic, GET(), revalidate (+31 more) +Cohesion: 0.05 +Nodes (41): buildTorobProductSpec(), buildTorobProductTitle(), dynamic, GET(), revalidate, dynamic, GET(), revalidate (+33 more) -### Community 4 - "PetProfile.tsx" -Cohesion: 0.12 -Nodes (18): metadata, FeaturedProducts(), ProductCard(), OrderSuccess(), PetProfile(), SearchResultsPage(), CURRENT_SYMPTOMS, MEDICAL_HISTORIES (+10 more) +### Community 4 - "UserDashboard.tsx" +Cohesion: 0.11 +Nodes (20): metadata, OrderDetailsModal(), PetProfile(), SearchResultsPage(), CURRENT_SYMPTOMS, MEDICAL_HISTORIES, SmartAdvisor(), SmartAdvisorProps (+12 more) ### Community 5 - "CmsController" -Cohesion: 0.10 -Nodes (14): CmsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+6 more) +Cohesion: 0.09 +Nodes (24): CmsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+16 more) -### Community 6 - "TicketsService" +### Community 6 - "tickets.controller.ts" Cohesion: 0.09 Nodes (29): AdminUpdateTicketDto, CreateTicketDto, ReplyTicketDto, ApiProperty, ApiPropertyOptional, IsNotEmpty, IsOptional, IsString (+21 more) ### Community 7 - "SmsSettingsPage.tsx" -Cohesion: 0.29 -Nodes (7): PatternItem, SmsConfigState, SmsLogItem, SmsLogStats, SmsSettingsPage(), toPersianDigits(), SmsSettingsPage +Cohesion: 0.20 +Nodes (10): PatternItem, SmsConfigState, SmsEventDefinition, SmsEventVariable, SmsLogItem, SmsLogStats, SmsRule, SmsSettingsPage() (+2 more) -### Community 8 - "SettingsController" -Cohesion: 0.10 -Nodes (17): SettingsController, ApiBearerAuth, ApiOkResponse, ApiOperation, ApiTags, Body, Controller, Delete (+9 more) +### Community 8 - "SmsService" +Cohesion: 0.06 +Nodes (20): SmsEventDefinition, SmsService, Injectable, SettingsController, ApiBearerAuth, ApiOkResponse, ApiOperation, ApiTags (+12 more) ### Community 9 - "devDependencies" -Cohesion: 0.22 -Nodes (9): devDependencies, ts-jest, @types/bcryptjs, @types/node, typescript, @types/node, typescript, ts-jest (+1 more) +Cohesion: 0.08 +Nodes (25): devDependencies, eslint, eslint-config-prettier, @eslint/eslintrc, jest, @nestjs/cli, @nestjs/testing, prettier (+17 more) -### Community 10 - "CreateReviewDto" -Cohesion: 0.07 -Nodes (30): CreateReviewDto, ApiProperty, IsInt, IsNotEmpty, IsOptional, IsString, Min, ApiProperty (+22 more) +### Community 10 - "ReviewsService" +Cohesion: 0.09 +Nodes (22): ApiProperty, IsIn, IsOptional, IsString, UpdateReviewDto, ReviewsController, ApiBearerAuth, ApiOperation (+14 more) -### Community 11 - "WikiController" -Cohesion: 0.21 -Nodes (9): ApiNotFoundResponse, ApiOkResponse, ApiOperation, ApiTags, Controller, Get, Param, Query (+1 more) +### Community 11 - "ConfirmModal.tsx" +Cohesion: 0.10 +Nodes (16): ConfirmModal(), ConfirmModalProps, Pagination(), PaginationProps, Category, Pet, DoctorOption, Video (+8 more) ### Community 12 - "index.ts" Cohesion: 0.06 Nodes (24): backend, frontend, playwright.config.ts, @playwright/test, tests/**/*.ts, authFile, test, compilerOptions (+16 more) ### Community 13 - "app-audit-verification.e2e-spec.js" -Cohesion: 0.06 -Nodes (28): AppModule, Module, EnvironmentVariables, IsNotEmpty, IsOptional, IsString, validateEnv(), CustomHttpExceptionFilter (+20 more) +Cohesion: 0.07 +Nodes (26): EnvironmentVariables, IsNotEmpty, IsOptional, IsString, validateEnv(), CustomHttpExceptionFilter, Catch, PrismaExceptionFilter (+18 more) ### Community 14 - "toPersian" Cohesion: 0.17 -Nodes (20): HomeClient(), VerifyContent(), AddressFormData, AddressModal(), AddressModalProps, normalizeDigits(), validateAddressForm(), CheckoutPage() (+12 more) +Nodes (19): VerifyContent(), AddressFormData, AddressModal(), AddressModalProps, normalizeDigits(), validateAddressForm(), BackButton(), BackButtonProps (+11 more) ### Community 15 - "src/services/api.ts" Cohesion: 0.06 -Nodes (36): Layout(), ProtectedRoute(), MenuGroup, Sidebar(), SidebarProps, SubMenuItem, LiveMonitoringSummary, SEARCHABLE_PAGES (+28 more) +Nodes (38): Layout(), ProtectedRoute(), MenuGroup, Sidebar(), SidebarProps, SubMenuItem, LiveMonitoringSummary, SEARCHABLE_PAGES (+30 more) ### Community 16 - "DoctorQueryDto" Cohesion: 0.09 @@ -431,16 +410,24 @@ Cohesion: 0.14 Nodes (18): B2BPage(), generateMetadata(), ContactPage(), generateMetadata(), generateMetadata(), getInitialVideos(), Videos(), ContactFormClient() (+10 more) ### Community 18 - "JwtAuthGuard" -Cohesion: 0.19 -Nodes (8): JwtAuthGuard, Injectable, ROLES_KEY, RequestWithUser, RolesGuard, Injectable, UserReqPayload, ScientificTermData +Cohesion: 0.10 +Nodes (19): JwtAuthGuard, Injectable, ROLES_KEY, RequestWithUser, RolesGuard, Injectable, ApiPropertyOptional, IsOptional (+11 more) ### Community 19 - "admin.controller.ts" -Cohesion: 0.35 +Cohesion: 0.29 Nodes (12): ApplyGlobalMarginsDto, BulkPriceAdjustmentDto, ApiProperty, ApiPropertyOptional, IsArray, IsBoolean, IsIn, IsNumber (+4 more) ### Community 20 - "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 21 - "auth.service.ts" +Cohesion: 0.14 +Nodes (13): AdminLoginInput, LoginInput, RegisterInput, LoginDto, ApiProperty, IsNotEmpty, IsString, MinLength (+5 more) + +### Community 22 - "ProductDto" +Cohesion: 0.16 +Nodes (7): ProductDto, ApiPropertyOptional, IsArray, IsBoolean, IsNumber, IsOptional, IsString ### Community 23 - "MenuService" Cohesion: 0.12 @@ -480,7 +467,7 @@ Nodes (31): Acceptance Criteria, Affected Application, Affected Files, Alternati ### Community 32 - "adminRoutes.tsx" Cohesion: 0.07 -Nodes (21): App(), ContactInfoItem, ContactSubmission, CategoryDist, DashboardData, SslStatus, Ticket, TicketMessage (+13 more) +Nodes (16): App(), Props, RouteErrorBoundary, State, HeroBanner, VetTestimonial, SslStatus, AdminRouteConfig (+8 more) ### Community 33 - "WholesaleApplyDto" Cohesion: 0.10 @@ -495,8 +482,8 @@ Cohesion: 0.13 Nodes (12): ContactController, Body, Controller, Get, Param, Post, Put, Query (+4 more) ### Community 36 - "FaqService" -Cohesion: 0.14 -Nodes (14): FaqController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+6 more) +Cohesion: 0.12 +Nodes (16): FaqController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+8 more) ### Community 37 - "راهنمای تست سیستم (Software Testing)" Cohesion: 0.07 @@ -519,8 +506,8 @@ Cohesion: 0.07 Nodes (26): For /graphify add and --watch, For /graphify query, For the commit hook and native CLAUDE.md integration, For --update and --cluster-only, /graphify, Honesty Rules, Interpreter guard for subcommands, Part A - Structural extraction for code files (+18 more) ### Community 42 - "SslController" -Cohesion: 0.11 -Nodes (15): SslController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Get, Post (+7 more) +Cohesion: 0.13 +Nodes (14): SslController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Get, Post (+6 more) ### Community 43 - "BannersService" Cohesion: 0.13 @@ -542,9 +529,9 @@ Nodes (14): "coupons", "health_logs", "order_items", "orders", "pet_medical_cond Cohesion: 0.13 Nodes (14): IngredientsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+6 more) -### Community 48 - "auth.controller.ts" -Cohesion: 0.06 -Nodes (43): AuthController, ApiBadRequestResponse, ApiBearerAuth, ApiOkResponse, ApiOperation, ApiTags, Body, Controller (+35 more) +### Community 48 - "AuthController" +Cohesion: 0.25 +Nodes (13): AuthController, ApiBadRequestResponse, ApiBearerAuth, ApiOkResponse, ApiOperation, ApiTags, Body, Controller (+5 more) ### Community 49 - "devDependencies" Cohesion: 0.11 @@ -552,27 +539,27 @@ Nodes (19): autoprefixer, devDependencies, autoprefixer, eslint, @eslint/js, glo ### Community 50 - "devDependencies" Cohesion: 0.12 -Nodes (17): eslint-config-next, devDependencies, eslint, eslint-config-next, jsdom, @testing-library/jest-dom, @testing-library/react, @types/node (+9 more) +Nodes (17): devDependencies, eslint, jsdom, tailwindcss, @testing-library/jest-dom, @testing-library/react, @types/node, @types/react (+9 more) ### Community 51 - "BlogsController" Cohesion: 0.07 Nodes (18): BlogsController, ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Body, Controller, Delete (+10 more) -### Community 52 - "PrescriptionsController" -Cohesion: 0.16 -Nodes (12): PrescriptionsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Get, Param (+4 more) +### Community 52 - "PrescriptionsService" +Cohesion: 0.14 +Nodes (14): PrescriptionsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Get, Param (+6 more) ### Community 53 - "SmartAdvisorService" Cohesion: 0.13 Nodes (14): SmartAdvisorController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+6 more) ### Community 54 - "Button.tsx" -Cohesion: 0.10 -Nodes (16): ButtonProps, ButtonSize, ButtonVariant, ConfirmModal(), ConfirmModalProps, HeroBanner, VetTestimonial, FAQ (+8 more) +Cohesion: 0.07 +Nodes (24): ButtonProps, ButtonSize, ButtonVariant, maxWidthClasses, Modal(), ModalProps, ContactInfoItem, ContactSubmission (+16 more) ### Community 55 - "UITexts.tsx" -Cohesion: 0.07 -Nodes (26): ICON_REGISTRY, IconPickerModal(), IconPickerModalProps, ActiveStates, PRESET_BG_COLORS, PRESET_COLORS, RichTextEditor(), RichTextEditorProps (+18 more) +Cohesion: 0.08 +Nodes (23): ICON_REGISTRY, IconPickerModal(), IconPickerModalProps, ActiveStates, PRESET_BG_COLORS, PRESET_COLORS, RichTextEditor(), RichTextEditorProps (+15 more) ### Community 56 - "Orders.tsx" Cohesion: 0.11 @@ -582,45 +569,49 @@ Nodes (15): Badge(), BadgeProps, BadgeVariant, variantStyles, Skeleton(), Monito Cohesion: 0.09 Nodes (22): CREATE MODE — Normal Operation, Expected JSON Output Schema, File Scope Boundary, Forbidden Actions, MODE 1: REVIEW (called during Review Phase), MODE 2: CONTENT CREATION (standalone task from backlog), Operating Modes, Operational Rules & Boundaries (+14 more) -### Community 58 - "UserDashboard.tsx" -Cohesion: 0.12 -Nodes (11): DeleteConfirmModal(), DeleteConfirmModalProps, OrderDetailsModal(), OrderRowSkeleton(), PetProfileSkeleton(), Skeleton(), SkeletonProps, CreateTicketPayload (+3 more) +### Community 58 - "AuthService" +Cohesion: 0.19 +Nodes (3): AuthService, Injectable, normalizeMobile() ### Community 59 - "compilerOptions" Cohesion: 0.06 Nodes (30): compilerOptions, allowSyntheticDefaultImports, baseUrl, declaration, emitDecoratorMetadata, esModuleInterop, experimentalDecorators, forceConsistentCasingInFileNames (+22 more) ### Community 60 - "CreateUserDto" -Cohesion: 0.23 +Cohesion: 0.21 Nodes (10): CreateUserDto, ApiProperty, ApiPropertyOptional, IsEmail, IsNotEmpty, IsNumber, IsOptional, IsString (+2 more) ### Community 61 - "ProductPage.tsx" -Cohesion: 0.10 -Nodes (19): ProductImageZoomModalProps, CalculatorState, GalleryMediaItem, ICON_MAP, isVideoUrl(), ProductImageZoomModal, ProductPage(), ProductReviews (+11 more) +Cohesion: 0.09 +Nodes (20): ProductImageZoomModalProps, CalculatorState, GalleryMediaItem, ICON_MAP, isVideoUrl(), ProductImageZoomModal, ProductPage(), ProductReviews (+12 more) + +### Community 62 - "torob.controller.ts" +Cohesion: 0.22 +Nodes (8): buildTorobProductSpec(), buildTorobProductTitle(), TorobController, ApiOperation, ApiTags, Controller, Get, Query ### Community 63 - "dependencies" -Cohesion: 0.09 -Nodes (23): dependencies, bcrypt, bcryptjs, class-validator, compression, ioredis, @nestjs/common, @nestjs/passport (+15 more) +Cohesion: 0.05 +Nodes (43): dependencies, bcrypt, bcryptjs, class-transformer, class-validator, compression, helmet, ioredis (+35 more) ### Community 64 - "compilerOptions" Cohesion: 0.10 Nodes (20): compilerOptions, allowImportingTsExtensions, erasableSyntaxOnly, lib, module, moduleDetection, moduleResolution, noEmit (+12 more) ### Community 65 - "admin.service.ts" -Cohesion: 0.14 -Nodes (15): CouponTargetInput, PaginationQuery, ProductDto, ApiPropertyOptional, IsArray, IsBoolean, IsNumber, IsOptional (+7 more) +Cohesion: 0.33 +Nodes (8): CouponTargetInput, PaginationQuery, applyRounding(), calculateSellingPrice(), DEFAULT_PRICING_SETTINGS, PricingSettings, RoundingMode, CANONICAL_ALIASES ### Community 66 - "AdminQueryDto" -Cohesion: 0.13 -Nodes (8): ApiQuery, Get, Query, AdminProductQueryDto, AdminQueryDto, ApiPropertyOptional, IsOptional, IsString +Cohesion: 0.18 +Nodes (7): ApiQuery, Query, AdminProductQueryDto, AdminQueryDto, ApiPropertyOptional, IsOptional, IsString -### Community 67 - "ReportsController" -Cohesion: 0.14 -Nodes (11): ReportsController, ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Controller, Get, Query (+3 more) +### Community 67 - "admin.module.ts" +Cohesion: 0.08 +Nodes (17): AdminModule, Module, ReportsController, ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Controller (+9 more) ### Community 68 - "useSettingsStore" Cohesion: 0.08 -Nodes (29): HomeClientProps, B2BLandingClient(), BlogPost, BlogPreviewSection(), BrandLogo(), BrandLogoProps, ContactInfoItem, FAQItem (+21 more) +Nodes (36): HomeClient(), HomeClientProps, B2BLandingClient(), BlogPostClientProps, BlogPost, BlogPreviewSection(), ContactInfoItem, EnamadBadge() (+28 more) ### Community 69 - "Required Review Group Closures" Cohesion: 0.10 @@ -631,8 +622,8 @@ Cohesion: 0.08 Nodes (23): compilerOptions, allowImportingTsExtensions, erasableSyntaxOnly, jsx, lib, module, moduleDetection, moduleResolution (+15 more) ### Community 71 - "getPageMetadata" -Cohesion: 0.09 -Nodes (14): generateMetadata(), CatalogClient(), generateMetadata(), generateMetadata(), generateMetadata(), generateMetadata(), generateMetadata(), generateMetadata() (+6 more) +Cohesion: 0.08 +Nodes (16): generateMetadata(), CatalogClient(), generateMetadata(), generateMetadata(), generateMetadata(), generateMetadata(), generateMetadata(), generateMetadata() (+8 more) ### Community 72 - "Operational Rules & Boundaries" Cohesion: 0.11 @@ -643,7 +634,7 @@ Cohesion: 0.11 Nodes (18): 1. Framework-Aware Analysis, 2. DOM & Semantic Structure Analysis, 3. Accessibility Compliance, 4. Responsive Layout Verification, 5. Fallback Inspection Mode, 6. Defect Routing Protocol, 7. Forbidden Actions, Expected JSON Output Schema (+10 more) ### Community 74 - "WikiController" -Cohesion: 0.14 +Cohesion: 0.13 Nodes (14): ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Body, Controller, Delete, Get (+6 more) ### Community 75 - "PetsController" @@ -651,8 +642,8 @@ Cohesion: 0.05 Nodes (47): CreateHealthLogDto, ApiProperty, ApiPropertyOptional, IsNotEmpty, IsOptional, IsString, CreatePetDto, ApiProperty (+39 more) ### Community 76 - "ProductsService" -Cohesion: 0.07 -Nodes (27): GetProductsDto, ApiPropertyOptional, IsEnum, IsOptional, IsString, ProductsController, ApiOperation, ApiTags (+19 more) +Cohesion: 0.10 +Nodes (19): GetProductsDto, ApiPropertyOptional, IsEnum, IsOptional, IsString, ProductsController, ApiOperation, ApiTags (+11 more) ### Community 77 - "seo.module.ts" Cohesion: 0.16 @@ -686,9 +677,9 @@ Nodes (21): dependencies, axios, lucide-react, react, react-dom, react-hot-toast Cohesion: 0.12 Nodes (16): 1. Active Secret Scanning (All Modified Files), 2. Docker Container Verification (if Dockerfile exists), 3. CI/CD Basic Check (if `.github/workflows/` exists), 4. Failure Routing Protocol, 5. Forbidden Actions, ENFORCE MODE — Normal Operation, Expected JSON Output Schema, Operational Rules & Boundaries (+8 more) -### Community 85 - "auth.module.ts" -Cohesion: 0.17 -Nodes (10): DEFAULT_JWT_REFRESH_SECRET, DEFAULT_JWT_SECRET, getJwtSecret(), AuthModule, Module, JwtPayload, JwtStrategy, Injectable (+2 more) +### Community 85 - "RegisterDto" +Cohesion: 0.22 +Nodes (8): RegisterDto, ApiProperty, ApiPropertyOptional, IsEmail, IsNotEmpty, IsOptional, IsString, MinLength ### Community 86 - "zibal.service.ts" Cohesion: 0.16 @@ -698,33 +689,37 @@ Nodes (9): GatewayHealthResult, IPaymentGateway, PaymentInquiryResult, PaymentRe Cohesion: 0.11 Nodes (19): dependencies, axios, lucide-react, motion, next, nextjs-toploader, react, react-dom (+11 more) -### Community 88 - "payment.controller.ts" -Cohesion: 0.12 -Nodes (19): CreateEBankCheckoutDto, ApiProperty, ApiPropertyOptional, IsNotEmpty, IsNumber, IsOptional, IsString, Min (+11 more) +### Community 88 - "CreateEBankCheckoutDto" +Cohesion: 0.22 +Nodes (8): CreateEBankCheckoutDto, ApiProperty, ApiPropertyOptional, IsNotEmpty, IsNumber, IsOptional, IsString, Min ### Community 89 - "seed-products.ts" Cohesion: 0.17 Nodes (12): prisma, main(), prisma, determineSuitableFor(), findOrCreateCategory(), getProductImageUrl(), main(), parseSize() (+4 more) +### Community 90 - "useCartStore" +Cohesion: 0.09 +Nodes (19): B2BPortal, CartDrawer, B2BPortal(), CartDrawer(), DeleteConfirmModal(), DeleteConfirmModalProps, OrderSuccess(), OrderTracking() (+11 more) + ### Community 91 - "Reconciled Audit Roles & Assignments" Cohesion: 0.12 Nodes (15): 10. Documentation Engineer, 1. Lead Architect / Orchestrator, 2. React / Vite Storefront Auditor, 3. NestJS Backend Auditor, 4. Admin Features Auditor, 5. Database & Data Integrity Auditor, 6. Security Auditor, 7. TypeScript & Code Quality Auditor (+7 more) ### Community 92 - "OrdersService" -Cohesion: 0.07 +Cohesion: 0.06 Nodes (35): CreateOrderDto, OrderItemDto, ApiProperty, ApiPropertyOptional, IsArray, IsNotEmpty, IsNumber, IsOptional (+27 more) ### Community 93 - "ArchivePage.tsx" -Cohesion: 0.13 -Nodes (15): ArchivePage(), ArchiveProductCard(), CATEGORY_MAP, ICON_MAP, BannerPlacement(), BannerPlacementProps, ProductCardSkeleton(), B2BInquiry (+7 more) +Cohesion: 0.08 +Nodes (21): ArchivePage(), ArchiveProductCard(), CATEGORY_MAP, ICON_MAP, BannerPlacement(), BannerPlacementProps, OrderRowSkeleton(), PetProfileSkeleton() (+13 more) ### Community 94 - "Phase 3.1 — Human Review Preparation and Master Backlog Critique" Cohesion: 0.13 Nodes (14): 10. Dependency & Wave Adjustments, 11. Acceptance Criteria Refinements, 12. Business and Product Decision Classification, 13. Final Recommended Backlog Summary, 1. Executive Assessment, 2. Findings That Require No Change, 3. Findings Requiring Task Refinements, 4. Tasks Requiring Splitting (+6 more) -### Community 95 - "wiki/[slug]/page.tsx" -Cohesion: 0.19 -Nodes (16): BlogPostPage(), generateMetadata(), getBlog(), revalidate, safeIso(), safeLocalDate(), generateMetadata(), revalidate (+8 more) +### Community 95 - "getSeoConfig" +Cohesion: 0.26 +Nodes (11): BlogPostPage(), generateMetadata(), getBlog(), revalidate, safeIso(), safeLocalDate(), generateMetadata(), revalidate (+3 more) ### Community 96 - "compilerOptions" Cohesion: 0.06 @@ -735,8 +730,8 @@ Cohesion: 0.13 Nodes (15): scripts, build, build:nest, docs:generate, lint, seo:backfill, start, start:debug (+7 more) ### Community 99 - "BlogsController" -Cohesion: 0.14 -Nodes (15): BlogsController, ApiNotFoundResponse, ApiOkResponse, ApiOperation, ApiTags, Body, Controller, Get (+7 more) +Cohesion: 0.18 +Nodes (12): BlogsController, ApiNotFoundResponse, ApiOkResponse, ApiOperation, ApiTags, Body, Controller, Get (+4 more) ### Community 100 - "Deep Audit Summary Report" Cohesion: 0.14 @@ -755,24 +750,24 @@ Cohesion: 0.15 Nodes (12): 10. `TASK-VERIFY-001`, 1. `TASK-SEC-001`, 2. `TASK-SEC-002`, 3. `TASK-SEC-003`, 4. `TASK-FIN-001`, 5. `TASK-BUILD-001`, 6. `TASK-AUTH-001`, 7. `TASK-FE-001` (+4 more) ### Community 104 - "Products.tsx" -Cohesion: 0.10 -Nodes (24): Input, InputProps, formatPriceWithCommas(), PriceInput(), PriceInputProps, toEnglishDigits(), Coupon, CouponFormData (+16 more) +Cohesion: 0.09 +Nodes (25): Input, InputProps, formatPriceWithCommas(), PriceInput(), PriceInputProps, toEnglishDigits(), Coupon, CouponFormData (+17 more) ### Community 105 - "Operational Rules & Boundaries" Cohesion: 0.17 Nodes (11): 1. Detect Test Runner from Tech Stack, 2. Execution Output Capture (Mandatory), 3. Acceptance Criteria Verification, 4. Failure Routing Protocol, 5. Success Routing Protocol, 6. Forbidden Actions, Expected JSON Output Schema, Operational Rules & Boundaries (+3 more) -### Community 106 - "cms.controller.ts" -Cohesion: 0.37 -Nodes (10): CreateHeroBannerDto, CreateSmartAdvisorRuleDto, CreateVetTestimonialDto, ApiProperty, ApiPropertyOptional, IsBoolean, IsNumber, IsOptional (+2 more) +### Community 106 - "InitiatePaymentDto" +Cohesion: 0.43 +Nodes (7): InitiatePaymentDto, InitiateWalletTopupDto, ApiProperty, ApiPropertyOptional, IsNotEmpty, IsOptional, IsString ### Community 107 - "PaginationDto" -Cohesion: 0.12 -Nodes (15): AdminModule, Module, PaginationDto, SortOrder, ApiPropertyOptional, IsEnum, IsInt, IsOptional (+7 more) +Cohesion: 0.06 +Nodes (27): BlogsModule, Module, BlogFilterDto, BlogsService, Injectable, PaginationDto, SortOrder, ApiPropertyOptional (+19 more) ### Community 108 - "PrismaService" -Cohesion: 0.06 -Nodes (21): CategoryQuery, PetQuery, WikiQuery, RevalidationService, Injectable, MeliPayamakPattern, MeliPayamakResponse, SendPatternSmsOptions (+13 more) +Cohesion: 0.07 +Nodes (23): CategoryQuery, DEFAULT_SMS_RULES, SMS_EVENT_DEFINITIONS, SmsEventVariable, SmsRule, MeliPayamakPattern, MeliPayamakResponse, SendPatternSmsOptions (+15 more) ### Community 109 - "1. Summary of Integrity Repairs Performed" Cohesion: 0.17 @@ -791,16 +786,16 @@ Cohesion: 0.18 Nodes (10): 1. Pre-Deployment Checklist, 2. Build Verification, 3. Deployment Strategy (Based on Target), 4. Post-Deployment Health Check, 5. Forbidden Actions, Expected JSON Output Schema, Operational Rules & Boundaries, Required Output Artifacts (What files to write/update) (+2 more) ### Community 113 - "PetsController" -Cohesion: 0.11 -Nodes (13): PetsController, ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Controller, Delete, Get (+5 more) +Cohesion: 0.10 +Nodes (14): PetsController, ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Controller, Delete, Get (+6 more) ### Community 114 - "AppService" Cohesion: 0.29 Nodes (5): AppController, Controller, Get, AppService, Injectable ### Community 115 - "Spinner.tsx" -Cohesion: 0.07 -Nodes (36): ImagePreviewModal(), ImagePreviewModalProps, getFileType(), Media, MediaSelector(), MediaSelectorProps, maxWidthClasses, Modal() (+28 more) +Cohesion: 0.10 +Nodes (22): ImagePreviewModal(), ImagePreviewModalProps, getFileType(), Media, MediaSelector(), MediaSelectorProps, Spinner(), Doctor (+14 more) ### Community 116 - "Vazirmatn Changelog" Cohesion: 0.18 @@ -826,13 +821,13 @@ Nodes (9): compilerOptions, esModuleInterop, module, moduleResolution, skipLibCh Cohesion: 0.20 Nodes (9): Compile and run the project, Deployment, Description, License, Project setup, Resources, Run tests, Stay in touch (+1 more) -### Community 122 - "AdminController" -Cohesion: 0.17 -Nodes (12): AdminController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Param (+4 more) +### Community 122 - "AdminService" +Cohesion: 0.09 +Nodes (12): AdminController, ApiBearerAuth, ApiOperation, ApiTags, Controller, Delete, Get, Param (+4 more) ### Community 123 - "UsersService" -Cohesion: 0.07 -Nodes (32): AddressDto, ApiProperty, ApiPropertyOptional, IsBoolean, IsNotEmpty, IsOptional, IsString, ApiPropertyOptional (+24 more) +Cohesion: 0.05 +Nodes (42): DEFAULT_JWT_REFRESH_SECRET, DEFAULT_JWT_SECRET, getJwtSecret(), AuthModule, Module, JwtPayload, JwtStrategy, Injectable (+34 more) ### Community 124 - "Repository Map" Cohesion: 0.20 @@ -850,6 +845,10 @@ Nodes (9): name, private, scripts, build, dev, lint, preview, type (+1 more) Cohesion: 0.20 Nodes (9): Arch Linux, Contributors, Install, Known problems for variable version, License, Sahel-Font, To Do (variable), طریقه استفاده از نسخه متغیر variable (+1 more) +### Community 128 - "Body" +Cohesion: 0.17 +Nodes (3): Body, Post, CouponInput + ### Community 129 - "Reports.tsx" Cohesion: 0.20 Nodes (7): BestSellerItem, CategoryDistItem, COLORS, CustomTooltipProps, ReportData, TopCouponItem, Reports @@ -891,8 +890,8 @@ Cohesion: 0.22 Nodes (8): Arch Linux, bower, Install, npm, Shabnam Font, yarn, طریقه استفاده در صفحات وب:, نمونه متن Sample: ### Community 139 - "layout.tsx" -Cohesion: 0.43 -Nodes (5): generateMetadata(), RootLayout(), lalezar, vazirmatn, generateOrganizationSchema() +Cohesion: 0.23 +Nodes (8): generateMetadata(), RootLayout(), AnalyticsDeferred(), AnalyticsDeferredProps, Window, lalezar, vazirmatn, generateOrganizationSchema() ### Community 140 - "ErrorBoundary" Cohesion: 0.22 @@ -910,9 +909,13 @@ Nodes (7): backend, distMainPath, fs, http, path, { spawn, execSync }, waitForBa Cohesion: 0.25 Nodes (6): app_module_1, core_1, fs, path, swagger_1, yaml -### Community 144 - "SafeImage.tsx" -Cohesion: 0.10 -Nodes (20): BackButton(), BackButtonProps, BlogPostClientProps, PLAYBACK_RATES, PodcastInlinePlayer(), PodcastInlinePlayerProps, PLAYBACK_RATES, PodcastPlayerModal() (+12 more) +### Community 144 - "PodcastPlayerModal.tsx" +Cohesion: 0.40 +Nodes (3): PLAYBACK_RATES, PodcastPlayerModal(), PodcastPlayerModalProps + +### Community 145 - "AdminLoginDto" +Cohesion: 0.29 +Nodes (6): AdminLoginDto, ApiProperty, IsEmail, IsNotEmpty, IsString, MinLength ### Community 146 - "System Discovery" Cohesion: 0.25 @@ -922,17 +925,21 @@ Nodes (7): Active Core Applications, Current Architecture, Evidence-Based Status Cohesion: 0.16 Nodes (10): HomeController, ApiOkResponse, ApiOperation, ApiTags, Controller, Get, HomeModule, Module (+2 more) +### Community 148 - "VerifyOtpDto" +Cohesion: 0.33 +Nodes (6): ApiProperty, IsNotEmpty, IsString, Matches, VerifyOtpDto, Length + +### Community 149 - "wiki/[slug]/page.tsx" +Cohesion: 0.60 +Nodes (5): generateMetadata(), getRelatedProducts(), getWikiTerm(), WikiTermPage(), generateMedicalWebPageSchema() + ### Community 150 - "Product Requirement Document (PRD)" 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 151 - "menu.module.ts" -Cohesion: 0.40 -Nodes (3): MenuModule, Module, MenuType - -### Community 152 - "auth.service.ts" -Cohesion: 0.09 -Nodes (11): AdminLoginInput, AuthService, LoginInput, RegisterInput, Injectable, normalizeMobile(), RedisModule, Global (+3 more) +### Community 152 - "RevalidationService" +Cohesion: 0.10 +Nodes (11): Optional, RevalidationModule, Global, Module, RevalidationService, Injectable, RedisModule, Global (+3 more) ### Community 153 - "exclude" Cohesion: 0.22 @@ -947,8 +954,8 @@ Cohesion: 0.67 Nodes (3): prisma, runSeoBackfill(), stripHtml() ### Community 158 - "media/[...path]/route.ts" -Cohesion: 0.60 -Nodes (4): dynamic, GET(), getCandidateUrls(), HEAD() +Cohesion: 0.53 +Nodes (5): dynamic, GET(), getCandidateUrls(), getMimeType(), HEAD() ### Community 159 - "with-vpn.sh" Cohesion: 0.62 @@ -1019,8 +1026,8 @@ Cohesion: 0.40 Nodes (4): activeFiles, errors, validationOutput, warnings ### Community 176 - "uploads/[...path]/route.ts" -Cohesion: 0.60 -Nodes (4): dynamic, GET(), getCandidateUrls(), HEAD() +Cohesion: 0.53 +Nodes (5): dynamic, GET(), getCandidateUrls(), getMimeType(), HEAD() ### Community 177 - "app/page.tsx" Cohesion: 0.67 @@ -1050,13 +1057,9 @@ Nodes (3): Architectural Overview, Critical Review Findings & Required Enhanceme Cohesion: 0.50 Nodes (3): Overview & Content Foundation, SEO & Content Requirements, 🚀 SEO & Content Strategy Review (12_seo_content) -### Community 184 - "MetricsController" -Cohesion: 0.25 -Nodes (5): ApiExcludeController, MetricsController, Controller, Get, Res - -### Community 185 - "RouteErrorBoundary" -Cohesion: 0.22 -Nodes (3): Props, RouteErrorBoundary, State +### Community 184 - "AppModule" +Cohesion: 0.12 +Nodes (7): ApiExcludeController, AppModule, Module, MetricsController, Controller, Get, Res ### Community 191 - "graphify reference: add a URL and watch a folder" Cohesion: 0.50 @@ -1083,8 +1086,8 @@ Cohesion: 0.50 Nodes (3): Select, SelectOption, SelectProps ### Community 197 - "userStore.ts" -Cohesion: 0.08 -Nodes (37): AuthModal, B2BPortal, CartDrawer, ClientLayout(), LoginModal, AuthModal(), AuthModalProps, extractOtpFromText() (+29 more) +Cohesion: 0.06 +Nodes (33): AuthModal, ClientLayout(), LoginModal, AuthModal(), AuthModalProps, extractOtpFromText(), BrandLogo(), BrandLogoProps (+25 more) ### Community 199 - "SmsLogQueryDto" Cohesion: 0.25 @@ -1098,10 +1101,6 @@ Nodes (3): Deploy on Vercel, Getting Started, Learn More Cohesion: 0.50 Nodes (3): COMPOSE_DOCKER_CLI_BUILD, DOCKER_BUILDKIT, deploy.sh script -### Community 204 - "zibal-ebank.service.ts" -Cohesion: 0.40 -Nodes (4): EBankCheckoutListFilter, EBankCheckoutOptions, EBankIdentifiedPaymentFilter, EBankStatementFilter - ### Community 211 - "Master Task Backlog (Phase 3.3)" Cohesion: 0.67 Nodes (3): ADR-AUTH-001: Admin Panel Authentication Architecture & Token Management, Master Task Backlog (Phase 3.3), Phase 3 Master Execution Plan @@ -1110,12 +1109,8 @@ 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 233 - "Reviews.tsx" -Cohesion: 0.40 -Nodes (5): BlogCommentItem, ProductReview, Reviews(), toPersianDigits(), Reviews - ### Community 298 - ".initiateOrderPayment" -Cohesion: 0.21 +Cohesion: 0.28 Nodes (6): ApiBadRequestResponse, ApiOkResponse, Req, Res, Headers, Ip ### Community 317 - "revalidate/route.ts" @@ -1123,24 +1118,24 @@ Cohesion: 0.83 Nodes (3): GET(), handleRevalidate(), POST() ## Knowledge Gaps -- **1347 isolated node(s):** `$schema`, `collection`, `sourceRoot`, `deleteOutDir`, `name` (+1342 more) +- **1352 isolated node(s):** `$schema`, `collection`, `sourceRoot`, `deleteOutDir`, `name` (+1347 more) These have ≤1 connection - possible missing edges or undocumented components. -- **120 thin communities (<3 nodes) omitted from report** — run `graphify query` to explore isolated nodes. +- **95 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 `CmsController`, `TicketsService`, `SettingsController`, `CreateReviewDto`, `JwtAuthGuard`, `MenuService`, `WholesaleApplyDto`, `B2BService`, `ContactService`, `FaqService`, `SslController`, `BannersService`, `TestimonialsService`, `IngredientsService`, `PrescriptionsController`, `SmartAdvisorService`, `ProductsService`, `payment.controller.ts`, `cms.controller.ts`?** - _High betweenness centrality (0.065) - this node is a cross-community bridge._ -- **Why does `ApiResponse` connect `src/services/api.ts` to `BlogsController`, `PetsController`, `ProductsService`, `WikiController`, `auth.controller.ts`, `HomeController`, `UsersService`, `OrdersService`?** - _High betweenness centrality (0.057) - this node is a cross-community bridge._ -- **Why does `PrismaService` connect `PrismaService` to `app.module.ts`, `CmsController`, `TicketsService`, `CreateReviewDto`, `DoctorQueryDto`, `HomeController`, `CreateVideoDto`, `BlogsService`, `menu.module.ts`, `auth.service.ts`, `MenuService`, `B2BService`, `FaqService`, `ZibalService`, `CategoriesController`, `MediaController`, `ZibalEBankService`, `BannersService`, `TestimonialsService`, `IngredientsService`, `SmartAdvisorService`, `MetricsController`, `WikiService`, `admin.service.ts`, `ReportsController`, `PetsController`, `zibal-ebank.service.ts`, `ProductsService`, `seo.module.ts`, `zibal.service.ts`, `OrdersService`, `BlogsController`, `cms.controller.ts`, `PaginationDto`, `PetsController`, `UsersService`?** - _High betweenness centrality (0.029) - this node is a cross-community bridge._ +- **Why does `Roles()` connect `Roles` to `WholesaleApplyDto`, `B2BService`, `ContactService`, `FaqService`, `CmsController`, `tickets.controller.ts`, `SmsService`, `SslController`, `BannersService`, `ProductsService`, `ReviewsService`, `TestimonialsService`, `IngredientsService`, `JwtAuthGuard`, `PrescriptionsService`, `SmartAdvisorService`, `MenuService`?** + _High betweenness centrality (0.094) - this node is a cross-community bridge._ +- **Why does `ApiResponse` connect `src/services/api.ts` to `BlogsController`, `PetsController`, `ProductsService`, `PaginationDto`, `AuthController`, `HomeController`, `UsersService`, `OrdersService`?** + _High betweenness centrality (0.066) - this node is a cross-community bridge._ +- **Why does `JwtAuthGuard` connect `JwtAuthGuard` to `admin.module.ts`, `CmsController`, `tickets.controller.ts`, `PaginationDto`, `PetsController`, `ProductsService`, `DoctorQueryDto`, `PetsController`, `admin.controller.ts`, `CreateVideoDto`, `auth.service.ts`, `UsersService`, `OrdersService`?** + _High betweenness centrality (0.030) - this node is a cross-community bridge._ - **What connects `$schema`, `collection`, `sourceRoot` to the rest of the system?** - _1347 weakly-connected nodes found - possible documentation gaps or missing edges._ + _1352 weakly-connected nodes found - possible documentation gaps or missing edges._ - **Should `app.module.ts` be split into smaller, more focused modules?** - _Cohesion score 0.06170598911070781 - nodes in this community are weakly interconnected._ + _Cohesion score 0.06988120195667366 - nodes in this community are weakly interconnected._ - **Should `productService.ts` be split into smaller, more focused modules?** - _Cohesion score 0.05780885780885781 - nodes in this community are weakly interconnected._ -- **Should `PetProfile.tsx` be split into smaller, more focused modules?** - _Cohesion score 0.11822660098522167 - nodes in this community are weakly interconnected._ \ No newline at end of file + _Cohesion score 0.05472837022132797 - nodes in this community are weakly interconnected._ +- **Should `UserDashboard.tsx` be split into smaller, more focused modules?** + _Cohesion score 0.10752688172043011 - nodes in this community are weakly interconnected._ \ No newline at end of file diff --git a/graphify-out/2026-09-05/graph.json b/graphify-out/2026-09-05/graph.json index 0ff9c87..4971603 100644 --- a/graphify-out/2026-09-05/graph.json +++ b/graphify-out/2026-09-05/graph.json @@ -55,19 +55,6 @@ "community_name": "app.module.ts", "norm_label": "cmsmodule" }, - { - "label": "RevalidationModule", - "file_type": "code", - "source_file": "backend/src/common/revalidation/revalidation.module.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_revalidation_revalidation_module_revalidationmodule", - "community": 1, - "community_name": "app.module.ts", - "norm_label": "revalidationmodule" - }, { "label": "SmsModule", "file_type": "code", @@ -107,19 +94,6 @@ "community_name": "app.module.ts", "norm_label": "doctorsmodule" }, - { - "label": "FaqModule", - "file_type": "code", - "source_file": "backend/src/faq/faq.module.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_faq_faq_module_faqmodule", - "community": 1, - "community_name": "app.module.ts", - "norm_label": "faqmodule" - }, { "label": "IngredientsModule", "file_type": "code", @@ -133,6 +107,19 @@ "community_name": "app.module.ts", "norm_label": "ingredientsmodule" }, + { + "label": "MenuModule", + "file_type": "code", + "source_file": "backend/src/menu/menu.module.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_menu_menu_module_menumodule", + "community": 1, + "community_name": "app.module.ts", + "norm_label": "menumodule" + }, { "label": "PaymentModule", "file_type": "code", @@ -250,19 +237,6 @@ "community_name": "app.module.ts", "norm_label": "wholesalemodule" }, - { - "label": "CreateReviewDto", - "file_type": "code", - "source_file": "backend/src/reviews/dto/create-review.dto.ts", - "source_location": "L11", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_reviews_dto_create_review_dto_createreviewdto", - "community": 10, - "community_name": "CreateReviewDto", - "norm_label": "createreviewdto" - }, { "label": "UpdateReviewDto", "file_type": "code", @@ -273,7 +247,7 @@ "_origin": "ast", "id": "backend_src_reviews_dto_update_review_dto_updatereviewdto", "community": 10, - "community_name": "CreateReviewDto", + "community_name": "ReviewsService", "norm_label": "updatereviewdto" }, { @@ -286,7 +260,7 @@ "_origin": "ast", "id": "backend_src_reviews_reviews_controller_reviewscontroller", "community": 10, - "community_name": "CreateReviewDto", + "community_name": "ReviewsService", "norm_label": "reviewscontroller" }, { @@ -299,7 +273,7 @@ "_origin": "ast", "id": "backend_src_reviews_reviews_service_reviewsservice", "community": 10, - "community_name": "CreateReviewDto", + "community_name": "ReviewsService", "norm_label": "reviewsservice" }, { @@ -459,56 +433,69 @@ "norm_label": "roundingmode" }, { - "label": "CreateHeroBannerDto", + "label": "InitiatePaymentDto", "file_type": "code", - "source_file": "backend/src/cms/dto/cms.dto.ts", - "source_location": "L10", + "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", + "source_location": "L4", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_cms_dto_cms_dto_createherobannerdto", + "id": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", "community": 106, - "community_name": "cms.controller.ts", - "norm_label": "createherobannerdto" + "community_name": "InitiatePaymentDto", + "norm_label": "initiatepaymentdto" }, { - "label": "CreateSmartAdvisorRuleDto", + "label": "InitiateWalletTopupDto", "file_type": "code", - "source_file": "backend/src/cms/dto/cms.dto.ts", - "source_location": "L80", + "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", + "source_location": "L16", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", + "id": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", "community": 106, - "community_name": "cms.controller.ts", - "norm_label": "createsmartadvisorruledto" + "community_name": "InitiatePaymentDto", + "norm_label": "initiatewallettopupdto" }, { - "label": "CreateVetTestimonialDto", + "label": "BlogsModule", "file_type": "code", - "source_file": "backend/src/cms/dto/cms.dto.ts", - "source_location": "L45", + "source_file": "backend/src/blogs/blogs.module.ts", + "source_location": "L9", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_cms_dto_cms_dto_createvettestimonialdto", - "community": 106, - "community_name": "cms.controller.ts", - "norm_label": "createvettestimonialdto" - }, - { - "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", + "id": "backend_src_blogs_blogs_module_blogsmodule", "community": 107, "community_name": "PaginationDto", - "norm_label": "adminmodule" + "norm_label": "blogsmodule" + }, + { + "label": "BlogFilterDto", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_blogs_blogs_service_blogfilterdto", + "community": 107, + "community_name": "PaginationDto", + "norm_label": "blogfilterdto" + }, + { + "label": "BlogsService", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_blogs_blogs_service_blogsservice", + "community": 107, + "community_name": "PaginationDto", + "norm_label": "blogsservice" }, { "label": "PaginationDto", @@ -536,6 +523,19 @@ "community_name": "PaginationDto", "norm_label": "sortorder" }, + { + "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": 107, + "community_name": "PaginationDto", + "norm_label": "wikicontroller" + }, { "label": "WikiModule", "file_type": "code", @@ -576,49 +576,36 @@ "norm_label": "categoryquery" }, { - "label": "PetQuery", + "label": "SmsEventVariable", "file_type": "code", - "source_file": "backend/src/admin/pets.service.ts", - "source_location": "L5", + "source_file": "backend/src/common/services/sms-events.constants.ts", + "source_location": "L13", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_admin_pets_service_petquery", + "id": "backend_src_common_services_sms_events_constants_smseventvariable", "community": 108, "community_name": "PrismaService", - "norm_label": "petquery" + "norm_label": "smseventvariable" }, { - "label": "WikiQuery", + "label": "SmsRule", "file_type": "code", - "source_file": "backend/src/admin/wiki.service.ts", - "source_location": "L5", + "source_file": "backend/src/common/services/sms-events.constants.ts", + "source_location": "L1", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_admin_wiki_service_wikiquery", + "id": "backend_src_common_services_sms_events_constants_smsrule", "community": 108, "community_name": "PrismaService", - "norm_label": "wikiquery" - }, - { - "label": "RevalidationService", - "file_type": "code", - "source_file": "backend/src/common/revalidation/revalidation.service.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_revalidation_revalidation_service_revalidationservice", - "community": 108, - "community_name": "PrismaService", - "norm_label": "revalidationservice" + "norm_label": "smsrule" }, { "label": "MeliPayamakPattern", "file_type": "code", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L25", + "source_location": "L44", "_callable": true, "_callable_class": true, "_origin": "ast", @@ -631,7 +618,7 @@ "label": "MeliPayamakResponse", "file_type": "code", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L44", + "source_location": "L63", "_callable": true, "_callable_class": true, "_origin": "ast", @@ -644,7 +631,7 @@ "label": "SendPatternSmsOptions", "file_type": "code", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L6", + "source_location": "L11", "_callable": true, "_callable_class": true, "_origin": "ast", @@ -657,7 +644,7 @@ "label": "SmsConfig", "file_type": "code", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L13", + "source_location": "L30", "_callable": true, "_callable_class": true, "_origin": "ast", @@ -670,7 +657,7 @@ "label": "SmsLogQuery", "file_type": "code", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L34", + "source_location": "L53", "_callable": true, "_callable_class": true, "_origin": "ast", @@ -680,17 +667,17 @@ "norm_label": "smslogquery" }, { - "label": "SmsService", + "label": "SmsRule", "file_type": "code", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L51", + "source_location": "L18", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice", + "id": "backend_src_common_services_sms_service_smsrule", "community": 108, "community_name": "PrismaService", - "norm_label": "smsservice" + "norm_label": "smsrule" }, { "label": "CreateContactSubmissionDto", @@ -719,30 +706,69 @@ "norm_label": "updatecontactinfoitemdto" }, { - "label": "ClientMetadata", + "label": "MenuType", "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L13", + "source_file": "backend/src/menu/menu.service.ts", + "source_location": "L4", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_payment_payment_service_clientmetadata", + "id": "backend_src_menu_menu_service_menutype", "community": 108, "community_name": "PrismaService", - "norm_label": "clientmetadata" + "norm_label": "menutype" }, { - "label": "PrescriptionsService", + "label": "EBankCheckoutListFilter", "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.service.ts", - "source_location": "L11", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L16", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", + "id": "backend_src_payment_zibal_ebank_service_ebankcheckoutlistfilter", "community": 108, "community_name": "PrismaService", - "norm_label": "prescriptionsservice" + "norm_label": "ebankcheckoutlistfilter" + }, + { + "label": "EBankCheckoutOptions", + "file_type": "code", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_payment_zibal_ebank_service_ebankcheckoutoptions", + "community": 108, + "community_name": "PrismaService", + "norm_label": "ebankcheckoutoptions" + }, + { + "label": "EBankIdentifiedPaymentFilter", + "file_type": "code", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L34", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_payment_zibal_ebank_service_ebankidentifiedpaymentfilter", + "community": 108, + "community_name": "PrismaService", + "norm_label": "ebankidentifiedpaymentfilter" + }, + { + "label": "EBankStatementFilter", + "file_type": "code", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_payment_zibal_ebank_service_ebankstatementfilter", + "community": 108, + "community_name": "PrismaService", + "norm_label": "ebankstatementfilter" }, { "label": "PrismaService", @@ -758,30 +784,147 @@ "norm_label": "prismaservice" }, { - "label": "VideoQuery", + "label": "ScientificTermData", "file_type": "code", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L6", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L7", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_videos_videos_service_videoquery", + "id": "backend_src_settings_settings_service_scientifictermdata", "community": 108, "community_name": "PrismaService", - "norm_label": "videoquery" + "norm_label": "scientifictermdata" }, { - "label": "WikiController", + "label": "UserAddressInput", "file_type": "code", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L18", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L14", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_wikicontroller", + "id": "backend_src_users_users_service_useraddressinput", + "community": 108, + "community_name": "PrismaService", + "norm_label": "useraddressinput" + }, + { + "label": "ConfirmModalProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/ConfirmModal.tsx", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodalprops", "community": 11, - "community_name": "WikiController", - "norm_label": "wikicontroller" + "community_name": "ConfirmModal.tsx", + "norm_label": "confirmmodalprops" + }, + { + "label": "PaginationProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/Pagination.tsx", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_components_ui_pagination_paginationprops", + "community": 11, + "community_name": "ConfirmModal.tsx", + "norm_label": "paginationprops" + }, + { + "label": "Category", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Categories.tsx", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_categories_category", + "community": 11, + "community_name": "ConfirmModal.tsx", + "norm_label": "category" + }, + { + "label": "Pet", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Pets.tsx", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_pets_pet", + "community": 11, + "community_name": "ConfirmModal.tsx", + "norm_label": "pet" + }, + { + "label": "DoctorOption", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Videos.tsx", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_videos_doctoroption", + "community": 11, + "community_name": "ConfirmModal.tsx", + "norm_label": "doctoroption" + }, + { + "label": "Video", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Videos.tsx", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_videos_video", + "community": 11, + "community_name": "ConfirmModal.tsx", + "norm_label": "video" + }, + { + "label": "WholesaleRequest", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_wholesaleapplications_wholesalerequest", + "community": 11, + "community_name": "ConfirmModal.tsx", + "norm_label": "wholesalerequest" + }, + { + "label": "ProductItem", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_wiki_productitem", + "community": 11, + "community_name": "ConfirmModal.tsx", + "norm_label": "productitem" + }, + { + "label": "WikiTerm", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_wiki_wikiterm", + "community": 11, + "community_name": "ConfirmModal.tsx", + "norm_label": "wikiterm" }, { "label": "PetsController", @@ -796,6 +939,19 @@ "community_name": "PetsController", "norm_label": "petscontroller" }, + { + "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": 113, + "community_name": "PetsController", + "norm_label": "petquery" + }, { "label": "PetsService", "file_type": "code", @@ -874,45 +1030,6 @@ "community_name": "Spinner.tsx", "norm_label": "mediaselectorprops" }, - { - "label": "ModalProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Modal.tsx", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_modal_modalprops", - "community": 115, - "community_name": "Spinner.tsx", - "norm_label": "modalprops" - }, - { - "label": "PaginationProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Pagination.tsx", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_pagination_paginationprops", - "community": 115, - "community_name": "Spinner.tsx", - "norm_label": "paginationprops" - }, - { - "label": "Category", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Categories.tsx", - "source_location": "L16", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_categories_category", - "community": 115, - "community_name": "Spinner.tsx", - "norm_label": "category" - }, { "label": "Doctor", "file_type": "code", @@ -939,19 +1056,6 @@ "community_name": "Spinner.tsx", "norm_label": "media" }, - { - "label": "Pet", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Pets.tsx", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_pets_pet", - "community": 115, - "community_name": "Spinner.tsx", - "norm_label": "pet" - }, { "label": "ProductItem", "file_type": "code", @@ -965,58 +1069,6 @@ "community_name": "Spinner.tsx", "norm_label": "productitem" }, - { - "label": "DoctorOption", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Videos.tsx", - "source_location": "L33", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_videos_doctoroption", - "community": 115, - "community_name": "Spinner.tsx", - "norm_label": "doctoroption" - }, - { - "label": "Video", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Videos.tsx", - "source_location": "L13", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_videos_video", - "community": 115, - "community_name": "Spinner.tsx", - "norm_label": "video" - }, - { - "label": "ProductItem", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", - "source_location": "L24", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_wiki_productitem", - "community": 115, - "community_name": "Spinner.tsx", - "norm_label": "productitem" - }, - { - "label": "WikiTerm", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", - "source_location": "L13", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_wiki_wikiterm", - "community": 115, - "community_name": "Spinner.tsx", - "norm_label": "wikiterm" - }, { "label": "Banner", "file_type": "code", @@ -1043,6 +1095,19 @@ "community_name": "Spinner.tsx", "norm_label": "ingredient" }, + { + "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": 115, + "community_name": "Spinner.tsx", + "norm_label": "seosettings" + }, { "label": "Testimonial", "file_type": "code", @@ -1066,21 +1131,60 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller", "community": 122, - "community_name": "AdminController", + "community_name": "AdminService", "norm_label": "admincontroller" }, { - "label": "CouponInput", + "label": "AdminService", "file_type": "code", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L50", + "source_location": "L65", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_admin_admin_service_couponinput", + "id": "backend_src_admin_admin_service_adminservice", "community": 122, - "community_name": "AdminController", - "norm_label": "couponinput" + "community_name": "AdminService", + "norm_label": "adminservice" + }, + { + "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": 123, + "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": 123, + "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": 123, + "community_name": "UsersService", + "norm_label": "jwtstrategy" }, { "label": "AddressDto", @@ -1122,23 +1226,23 @@ "norm_label": "userscontroller" }, { - "label": "UserAddressInput", + "label": "UsersModule", "file_type": "code", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L12", + "source_file": "backend/src/users/users.module.ts", + "source_location": "L10", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_users_users_service_useraddressinput", + "id": "backend_src_users_users_module_usersmodule", "community": 123, "community_name": "UsersService", - "norm_label": "useraddressinput" + "norm_label": "usersmodule" }, { "label": "UsersService", "file_type": "code", "source_file": "backend/src/users/users.service.ts", - "source_location": "L24", + "source_location": "L26", "_callable": true, "_callable_class": true, "_origin": "ast", @@ -1148,17 +1252,17 @@ "norm_label": "usersservice" }, { - "label": "AdminService", + "label": "CouponInput", "file_type": "code", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L63", + "source_location": "L52", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice", + "id": "backend_src_admin_admin_service_couponinput", "community": 128, - "community_name": "AdminService", - "norm_label": "adminservice" + "community_name": "Body", + "norm_label": "couponinput" }, { "label": "BestSellerItem", @@ -1225,19 +1329,6 @@ "community_name": "Reports.tsx", "norm_label": "topcouponitem" }, - { - "label": "AppModule", - "file_type": "code", - "source_file": "backend/src/app.module.ts", - "source_location": "L89", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_app_module_appmodule", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "appmodule" - }, { "label": "EnvironmentVariables", "file_type": "code", @@ -1316,6 +1407,32 @@ "community_name": "app-audit-verification.e2e-spec.js", "norm_label": "errordetailfield" }, + { + "label": "AnalyticsDeferredProps", + "file_type": "code", + "source_file": "frontend/application/components/AnalyticsDeferred.tsx", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_components_analyticsdeferred_analyticsdeferredprops", + "community": 139, + "community_name": "layout.tsx", + "norm_label": "analyticsdeferredprops" + }, + { + "label": "Window", + "file_type": "code", + "source_file": "frontend/application/components/AnalyticsDeferred.tsx", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_components_analyticsdeferred_window", + "community": 139, + "community_name": "layout.tsx", + "norm_label": "window" + }, { "label": "AddressFormData", "file_type": "code", @@ -1342,6 +1459,19 @@ "community_name": "toPersian", "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": 14, + "community_name": "toPersian", + "norm_label": "backbuttonprops" + }, { "label": "HeaderButtonProps", "file_type": "code", @@ -1368,19 +1498,6 @@ "community_name": "toPersian", "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": 14, - "community_name": "toPersian", - "norm_label": "topupmodalprops" - }, { "label": "Address", "file_type": "code", @@ -1433,45 +1550,6 @@ "community_name": "ErrorBoundary", "norm_label": "state" }, - { - "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": 144, - "community_name": "SafeImage.tsx", - "norm_label": "backbuttonprops" - }, - { - "label": "BlogPostClientProps", - "file_type": "code", - "source_file": "frontend/application/components/BlogPostClient.tsx", - "source_location": "L22", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_blogpostclient_blogpostclientprops", - "community": 144, - "community_name": "SafeImage.tsx", - "norm_label": "blogpostclientprops" - }, - { - "label": "PodcastInlinePlayerProps", - "file_type": "code", - "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", - "source_location": "L22", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_podcastinlineplayer_podcastinlineplayerprops", - "community": 144, - "community_name": "SafeImage.tsx", - "norm_label": "podcastinlineplayerprops" - }, { "label": "PodcastPlayerModalProps", "file_type": "code", @@ -1482,73 +1560,21 @@ "_origin": "ast", "id": "frontend_application_components_podcastplayermodal_podcastplayermodalprops", "community": 144, - "community_name": "SafeImage.tsx", + "community_name": "PodcastPlayerModal.tsx", "norm_label": "podcastplayermodalprops" }, { - "label": "SafeImageProps", + "label": "AdminLoginDto", "file_type": "code", - "source_file": "frontend/application/components/SafeImage.tsx", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_safeimage_safeimageprops", - "community": 144, - "community_name": "SafeImage.tsx", - "norm_label": "safeimageprops" - }, - { - "label": "DisplayVideoItem", - "file_type": "code", - "source_file": "frontend/application/components/VetGallery.tsx", - "source_location": "L58", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_vetgallery_displayvideoitem", - "community": 144, - "community_name": "SafeImage.tsx", - "norm_label": "displayvideoitem" - }, - { - "label": "TestimonialItem", - "file_type": "code", - "source_file": "frontend/application/components/VetGallery.tsx", - "source_location": "L11", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_vetgallery_testimonialitem", - "community": 144, - "community_name": "SafeImage.tsx", - "norm_label": "testimonialitem" - }, - { - "label": "Video", - "file_type": "code", - "source_file": "frontend/application/lib/services/videoService.ts", + "source_file": "backend/src/auth/dto/admin-login.dto.ts", "source_location": "L4", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_application_lib_services_videoservice_video", - "community": 144, - "community_name": "SafeImage.tsx", - "norm_label": "video" - }, - { - "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", + "id": "backend_src_auth_dto_admin_login_dto_adminlogindto", "community": 145, - "community_name": "AuthService", - "norm_label": "authservice" + "community_name": "AdminLoginDto", + "norm_label": "adminlogindto" }, { "label": "HomeController", @@ -1589,6 +1615,19 @@ "community_name": "HomeController", "norm_label": "homeservice" }, + { + "label": "VerifyOtpDto", + "file_type": "code", + "source_file": "backend/src/auth/dto/verify-otp.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", + "community": 148, + "community_name": "VerifyOtpDto", + "norm_label": "verifyotpdto" + }, { "label": "MenuGroup", "file_type": "code", @@ -1654,6 +1693,32 @@ "community_name": "src/services/api.ts", "norm_label": "topbarprops" }, + { + "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": 15, + "community_name": "src/services/api.ts", + "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": 15, + "community_name": "src/services/api.ts", + "norm_label": "dashboarddata" + }, { "label": "UserRecord", "file_type": "code", @@ -1823,19 +1888,6 @@ "community_name": "src/services/api.ts", "norm_label": "sendotppayload" }, - { - "label": "SeoSettings", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L178", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_seosettings", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "seosettings" - }, { "label": "SmartAdvisorRule", "file_type": "code", @@ -1889,82 +1941,30 @@ "norm_label": "verifyotppayload" }, { - "label": "MenuModule", + "label": "RevalidationModule", "file_type": "code", - "source_file": "backend/src/menu/menu.module.ts", - "source_location": "L10", + "source_file": "backend/src/common/revalidation/revalidation.module.ts", + "source_location": "L9", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_menu_menu_module_menumodule", - "community": 151, - "community_name": "menu.module.ts", - "norm_label": "menumodule" + "id": "backend_src_common_revalidation_revalidation_module_revalidationmodule", + "community": 152, + "community_name": "RevalidationService", + "norm_label": "revalidationmodule" }, { - "label": "MenuType", + "label": "RevalidationService", "file_type": "code", - "source_file": "backend/src/menu/menu.service.ts", + "source_file": "backend/src/common/revalidation/revalidation.service.ts", "source_location": "L4", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_menu_menu_service_menutype", - "community": 151, - "community_name": "menu.module.ts", - "norm_label": "menutype" - }, - { - "label": "AdminLoginInput", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L30", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_adminlogininput", + "id": "backend_src_common_revalidation_revalidation_service_revalidationservice", "community": 152, - "community_name": "auth.service.ts", - "norm_label": "adminlogininput" - }, - { - "label": "AuthService", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L37", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_authservice", - "community": 152, - "community_name": "auth.service.ts", - "norm_label": "authservice" - }, - { - "label": "LoginInput", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L25", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_logininput", - "community": 152, - "community_name": "auth.service.ts", - "norm_label": "logininput" - }, - { - "label": "RegisterInput", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_registerinput", - "community": 152, - "community_name": "auth.service.ts", - "norm_label": "registerinput" + "community_name": "RevalidationService", + "norm_label": "revalidationservice" }, { "label": "RedisModule", @@ -1976,7 +1976,7 @@ "_origin": "ast", "id": "backend_src_redis_redis_module_redismodule", "community": 152, - "community_name": "auth.service.ts", + "community_name": "RevalidationService", "norm_label": "redismodule" }, { @@ -1989,7 +1989,7 @@ "_origin": "ast", "id": "backend_src_redis_redis_service_redisservice", "community": 152, - "community_name": "auth.service.ts", + "community_name": "RevalidationService", "norm_label": "redisservice" }, { @@ -2161,6 +2161,19 @@ "community_name": "JwtAuthGuard", "norm_label": "rolesguard" }, + { + "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": 18, + "community_name": "JwtAuthGuard", + "norm_label": "zibalcallbackquerydto" + }, { "label": "UserReqPayload", "file_type": "code", @@ -2175,17 +2188,30 @@ "norm_label": "userreqpayload" }, { - "label": "ScientificTermData", + "label": "CreateReviewDto", "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L7", + "source_file": "backend/src/reviews/dto/create-review.dto.ts", + "source_location": "L11", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_settings_settings_service_scientifictermdata", + "id": "backend_src_reviews_dto_create_review_dto_createreviewdto", "community": 18, "community_name": "JwtAuthGuard", - "norm_label": "scientifictermdata" + "norm_label": "createreviewdto" + }, + { + "label": "AppModule", + "file_type": "code", + "source_file": "backend/src/app.module.ts", + "source_location": "L89", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_app_module_appmodule", + "community": 184, + "community_name": "AppModule", + "norm_label": "appmodule" }, { "label": "MetricsController", @@ -2197,48 +2223,9 @@ "_origin": "ast", "id": "backend_src_common_metrics_controller_metricscontroller", "community": 184, - "community_name": "MetricsController", + "community_name": "AppModule", "norm_label": "metricscontroller" }, - { - "label": "Props", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_routeerrorboundary_props", - "community": 185, - "community_name": "RouteErrorBoundary", - "norm_label": "props" - }, - { - "label": "RouteErrorBoundary", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", - "source_location": "L15", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary", - "community": 185, - "community_name": "RouteErrorBoundary", - "norm_label": "routeerrorboundary" - }, - { - "label": "State", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_routeerrorboundary_state", - "community": 185, - "community_name": "RouteErrorBoundary", - "norm_label": "state" - }, { "label": "CreateBlogDto", "file_type": "code", @@ -2395,6 +2382,19 @@ "community_name": "userStore.ts", "norm_label": "authmodalprops" }, + { + "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": 197, + "community_name": "userStore.ts", + "norm_label": "brandlogoprops" + }, { "label": "LoginModalProps", "file_type": "code", @@ -2447,6 +2447,19 @@ "community_name": "userStore.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": 197, + "community_name": "userStore.ts", + "norm_label": "authservice" + }, { "label": "User", "file_type": "code", @@ -2460,45 +2473,6 @@ "community_name": "userStore.ts", "norm_label": "user" }, - { - "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": 197, - "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": 197, - "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": 197, - "community_name": "userStore.ts", - "norm_label": "order" - }, { "label": "UIState", "file_type": "code", @@ -2529,7 +2503,7 @@ "label": "UserProfile", "file_type": "code", "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L33", + "source_location": "L35", "_callable": true, "_callable_class": true, "_origin": "ast", @@ -2555,7 +2529,7 @@ "label": "UserStore", "file_type": "code", "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L45", + "source_location": "L47", "_callable": true, "_callable_class": true, "_origin": "ast", @@ -2564,6 +2538,19 @@ "community_name": "userStore.ts", "norm_label": "userstore" }, + { + "label": "NavigationTarget", + "file_type": "code", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L110", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_lib_types_navigationtarget", + "community": 197, + "community_name": "userStore.ts", + "norm_label": "navigationtarget" + }, { "label": "SmsLogQueryDto", "file_type": "code", @@ -2587,9 +2574,22 @@ "_origin": "ast", "id": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", "community": 2, - "community_name": "AdminTransactionFilterDto", + "community_name": "payment.service.ts", "norm_label": "admintransactionfilterdto" }, + { + "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": 2, + "community_name": "payment.service.ts", + "norm_label": "clientmetadata" + }, { "label": "CreateVideoDto", "file_type": "code", @@ -2655,6 +2655,19 @@ "community_name": "CreateVideoDto", "norm_label": "videosmodule" }, + { + "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": 20, + "community_name": "CreateVideoDto", + "norm_label": "videoquery" + }, { "label": "VideosService", "file_type": "code", @@ -2668,58 +2681,6 @@ "community_name": "CreateVideoDto", "norm_label": "videosservice" }, - { - "label": "EBankCheckoutListFilter", - "file_type": "code", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L16", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_ebank_service_ebankcheckoutlistfilter", - "community": 204, - "community_name": "zibal-ebank.service.ts", - "norm_label": "ebankcheckoutlistfilter" - }, - { - "label": "EBankCheckoutOptions", - "file_type": "code", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_ebank_service_ebankcheckoutoptions", - "community": 204, - "community_name": "zibal-ebank.service.ts", - "norm_label": "ebankcheckoutoptions" - }, - { - "label": "EBankIdentifiedPaymentFilter", - "file_type": "code", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L34", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_ebank_service_ebankidentifiedpaymentfilter", - "community": 204, - "community_name": "zibal-ebank.service.ts", - "norm_label": "ebankidentifiedpaymentfilter" - }, - { - "label": "EBankStatementFilter", - "file_type": "code", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L25", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_ebank_service_ebankstatementfilter", - "community": 204, - "community_name": "zibal-ebank.service.ts", - "norm_label": "ebankstatementfilter" - }, { "label": "ScientificTerm", "file_type": "code", @@ -2733,6 +2694,71 @@ "community_name": "prisma/scientificTerms.ts", "norm_label": "scientificterm" }, + { + "label": "AdminLoginInput", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_auth_auth_service_adminlogininput", + "community": 21, + "community_name": "auth.service.ts", + "norm_label": "adminlogininput" + }, + { + "label": "LoginInput", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_auth_auth_service_logininput", + "community": 21, + "community_name": "auth.service.ts", + "norm_label": "logininput" + }, + { + "label": "RegisterInput", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_auth_auth_service_registerinput", + "community": 21, + "community_name": "auth.service.ts", + "norm_label": "registerinput" + }, + { + "label": "LoginDto", + "file_type": "code", + "source_file": "backend/src/auth/dto/login.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_auth_dto_login_dto_logindto", + "community": 21, + "community_name": "auth.service.ts", + "norm_label": "logindto" + }, + { + "label": "SendOtpDto", + "file_type": "code", + "source_file": "backend/src/auth/dto/send-otp.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_auth_dto_send_otp_dto_sendotpdto", + "community": 21, + "community_name": "auth.service.ts", + "norm_label": "sendotpdto" + }, { "label": "FormFieldProps", "file_type": "code", @@ -2747,17 +2773,17 @@ "norm_label": "formfieldprops" }, { - "label": "BlogsService", + "label": "ProductDto", "file_type": "code", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L13", + "source_file": "backend/src/admin/dto/product.dto.ts", + "source_location": "L10", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_blogs_blogs_service_blogsservice", + "id": "backend_src_admin_dto_product_dto_productdto", "community": 22, - "community_name": "BlogsService", - "norm_label": "blogsservice" + "community_name": "ProductDto", + "norm_label": "productdto" }, { "label": "TextareaProps", @@ -2798,32 +2824,6 @@ "community_name": "MenuService", "norm_label": "menuservice" }, - { - "label": "BlogCommentItem", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", - "source_location": "L52", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reviews_blogcommentitem", - "community": 233, - "community_name": "Reviews.tsx", - "norm_label": "blogcommentitem" - }, - { - "label": "ProductReview", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", - "source_location": "L26", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reviews_productreview", - "community": 233, - "community_name": "Reviews.tsx", - "norm_label": "productreview" - }, { "label": "Blog", "file_type": "code", @@ -2980,6 +2980,19 @@ "community_name": "productService.ts", "norm_label": "productdetailmodalprops" }, + { + "label": "PodcastInlinePlayerProps", + "file_type": "code", + "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_components_podcastinlineplayer_podcastinlineplayerprops", + "community": 3, + "community_name": "productService.ts", + "norm_label": "podcastinlineplayerprops" + }, { "label": "DosageResult", "file_type": "code", @@ -3019,19 +3032,6 @@ "community_name": "productService.ts", "norm_label": "ingredientinfo" }, - { - "label": "PetType", - "file_type": "code", - "source_file": "frontend/application/lib/data/products.ts", - "source_location": "L8", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_data_products_pettype", - "community": 3, - "community_name": "productService.ts", - "norm_label": "pettype" - }, { "label": "Product", "file_type": "code", @@ -3084,19 +3084,6 @@ "community_name": "productService.ts", "norm_label": "productservice" }, - { - "label": "Ingredient", - "file_type": "code", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L42", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_types_ingredient", - "community": 3, - "community_name": "productService.ts", - "norm_label": "ingredient" - }, { "label": "MaskableFieldProps", "file_type": "code", @@ -3111,56 +3098,69 @@ "norm_label": "maskablefieldprops" }, { - "label": "ContactInfoItem", + "label": "Props", "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", - "source_location": "L21", + "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", + "source_location": "L4", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_contactsubmissions_contactinfoitem", + "id": "frontend_admin_panel_src_components_routeerrorboundary_props", "community": 32, "community_name": "adminRoutes.tsx", - "norm_label": "contactinfoitem" + "norm_label": "props" }, { - "label": "ContactSubmission", + "label": "RouteErrorBoundary", "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", + "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary", + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "routeerrorboundary" + }, + { + "label": "State", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", "source_location": "L9", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_contactsubmissions_contactsubmission", + "id": "frontend_admin_panel_src_components_routeerrorboundary_state", "community": 32, "community_name": "adminRoutes.tsx", - "norm_label": "contactsubmission" + "norm_label": "state" }, { - "label": "CategoryDist", + "label": "HeroBanner", "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Dashboard.tsx", - "source_location": "L7", + "source_file": "frontend/admin-panel/src/pages/CMS.tsx", + "source_location": "L8", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_dashboard_categorydist", + "id": "frontend_admin_panel_src_pages_cms_herobanner", "community": 32, "community_name": "adminRoutes.tsx", - "norm_label": "categorydist" + "norm_label": "herobanner" }, { - "label": "DashboardData", + "label": "VetTestimonial", "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Dashboard.tsx", - "source_location": "L12", + "source_file": "frontend/admin-panel/src/pages/CMS.tsx", + "source_location": "L16", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_dashboard_dashboarddata", + "id": "frontend_admin_panel_src_pages_cms_vettestimonial", "community": 32, "community_name": "adminRoutes.tsx", - "norm_label": "dashboarddata" + "norm_label": "vettestimonial" }, { "label": "SslStatus", @@ -3175,32 +3175,6 @@ "community_name": "adminRoutes.tsx", "norm_label": "sslstatus" }, - { - "label": "Ticket", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", - "source_location": "L36", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_tickets_ticket", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "ticket" - }, - { - "label": "TicketMessage", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", - "source_location": "L26", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_tickets_ticketmessage", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "ticketmessage" - }, { "label": "AdminRouteConfig", "file_type": "code", @@ -3331,6 +3305,19 @@ "community_name": "FaqService", "norm_label": "faqcontroller" }, + { + "label": "FaqModule", + "file_type": "code", + "source_file": "backend/src/faq/faq.module.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_faq_faq_module_faqmodule", + "community": 36, + "community_name": "FaqService", + "norm_label": "faqmodule" + }, { "label": "FaqService", "file_type": "code", @@ -3471,9 +3458,48 @@ "_origin": "ast", "id": "frontend_application_components_smartadvisor_smartadvisorprops", "community": 4, - "community_name": "PetProfile.tsx", + "community_name": "UserDashboard.tsx", "norm_label": "smartadvisorprops" }, + { + "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": 4, + "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": 4, + "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": 4, + "community_name": "UserDashboard.tsx", + "norm_label": "ticketmessage" + }, { "label": "HealthLog", "file_type": "code", @@ -3484,7 +3510,7 @@ "_origin": "ast", "id": "frontend_application_lib_store_usepetstore_healthlog", "community": 4, - "community_name": "PetProfile.tsx", + "community_name": "UserDashboard.tsx", "norm_label": "healthlog" }, { @@ -3497,7 +3523,7 @@ "_origin": "ast", "id": "frontend_application_lib_store_usepetstore_petconsumption", "community": 4, - "community_name": "PetProfile.tsx", + "community_name": "UserDashboard.tsx", "norm_label": "petconsumption" }, { @@ -3510,7 +3536,7 @@ "_origin": "ast", "id": "frontend_application_lib_store_usepetstore_petprofile", "community": 4, - "community_name": "PetProfile.tsx", + "community_name": "UserDashboard.tsx", "norm_label": "petprofile" }, { @@ -3523,7 +3549,7 @@ "_origin": "ast", "id": "frontend_application_lib_store_usepetstore_petstore", "community": 4, - "community_name": "PetProfile.tsx", + "community_name": "UserDashboard.tsx", "norm_label": "petstore" }, { @@ -3536,7 +3562,7 @@ "_origin": "ast", "id": "frontend_application_lib_store_usepetstore_reminder", "community": 4, - "community_name": "PetProfile.tsx", + "community_name": "UserDashboard.tsx", "norm_label": "reminder" }, { @@ -3578,19 +3604,6 @@ "community_name": "SslController", "norm_label": "sslcontroller" }, - { - "label": "SslCertInfo", - "file_type": "code", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_ssl_service_sslcertinfo", - "community": 42, - "community_name": "SslController", - "norm_label": "sslcertinfo" - }, { "label": "SslService", "file_type": "code", @@ -3692,74 +3705,9 @@ "_origin": "ast", "id": "backend_src_auth_auth_controller_authcontroller", "community": 48, - "community_name": "auth.controller.ts", + "community_name": "AuthController", "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", - "id": "backend_src_auth_dto_admin_login_dto_adminlogindto", - "community": 48, - "community_name": "auth.controller.ts", - "norm_label": "adminlogindto" - }, - { - "label": "LoginDto", - "file_type": "code", - "source_file": "backend/src/auth/dto/login.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_auth_dto_login_dto_logindto", - "community": 48, - "community_name": "auth.controller.ts", - "norm_label": "logindto" - }, - { - "label": "RegisterDto", - "file_type": "code", - "source_file": "backend/src/auth/dto/register.dto.ts", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_auth_dto_register_dto_registerdto", - "community": 48, - "community_name": "auth.controller.ts", - "norm_label": "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", - "id": "backend_src_auth_dto_send_otp_dto_sendotpdto", - "community": 48, - "community_name": "auth.controller.ts", - "norm_label": "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", - "id": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", - "community": 48, - "community_name": "auth.controller.ts", - "norm_label": "verifyotpdto" - }, { "label": "CmsController", "file_type": "code", @@ -3786,6 +3734,45 @@ "community_name": "CmsController", "norm_label": "cmsservice" }, + { + "label": "CreateHeroBannerDto", + "file_type": "code", + "source_file": "backend/src/cms/dto/cms.dto.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_cms_dto_cms_dto_createherobannerdto", + "community": 5, + "community_name": "CmsController", + "norm_label": "createherobannerdto" + }, + { + "label": "CreateSmartAdvisorRuleDto", + "file_type": "code", + "source_file": "backend/src/cms/dto/cms.dto.ts", + "source_location": "L80", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", + "community": 5, + "community_name": "CmsController", + "norm_label": "createsmartadvisorruledto" + }, + { + "label": "CreateVetTestimonialDto", + "file_type": "code", + "source_file": "backend/src/cms/dto/cms.dto.ts", + "source_location": "L45", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_cms_dto_cms_dto_createvettestimonialdto", + "community": 5, + "community_name": "CmsController", + "norm_label": "createvettestimonialdto" + }, { "label": "BlogsController", "file_type": "code", @@ -3822,9 +3809,22 @@ "_origin": "ast", "id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", "community": 52, - "community_name": "PrescriptionsController", + "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": 52, + "community_name": "PrescriptionsService", + "norm_label": "prescriptionsservice" + }, { "label": "SmartAdvisorController", "file_type": "code", @@ -3891,43 +3891,43 @@ "norm_label": "buttonvariant" }, { - "label": "ConfirmModalProps", + "label": "ModalProps", "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/ConfirmModal.tsx", - "source_location": "L3", + "source_file": "frontend/admin-panel/src/components/ui/Modal.tsx", + "source_location": "L4", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodalprops", + "id": "frontend_admin_panel_src_components_ui_modal_modalprops", "community": 54, "community_name": "Button.tsx", - "norm_label": "confirmmodalprops" + "norm_label": "modalprops" }, { - "label": "HeroBanner", + "label": "ContactInfoItem", "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/CMS.tsx", - "source_location": "L8", + "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", + "source_location": "L21", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_cms_herobanner", + "id": "frontend_admin_panel_src_pages_contactsubmissions_contactinfoitem", "community": 54, "community_name": "Button.tsx", - "norm_label": "herobanner" + "norm_label": "contactinfoitem" }, { - "label": "VetTestimonial", + "label": "ContactSubmission", "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/CMS.tsx", - "source_location": "L16", + "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", + "source_location": "L9", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_cms_vettestimonial", + "id": "frontend_admin_panel_src_pages_contactsubmissions_contactsubmission", "community": 54, "community_name": "Button.tsx", - "norm_label": "vettestimonial" + "norm_label": "contactsubmission" }, { "label": "FAQ", @@ -3969,17 +3969,56 @@ "norm_label": "menutype" }, { - "label": "WholesaleRequest", + "label": "BlogCommentItem", "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", - "source_location": "L8", + "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", + "source_location": "L52", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_wholesaleapplications_wholesalerequest", + "id": "frontend_admin_panel_src_pages_reviews_blogcommentitem", "community": 54, "community_name": "Button.tsx", - "norm_label": "wholesalerequest" + "norm_label": "blogcommentitem" + }, + { + "label": "ProductReview", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_reviews_productreview", + "community": 54, + "community_name": "Button.tsx", + "norm_label": "productreview" + }, + { + "label": "Ticket", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", + "source_location": "L36", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_tickets_ticket", + "community": 54, + "community_name": "Button.tsx", + "norm_label": "ticket" + }, + { + "label": "TicketMessage", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_tickets_ticketmessage", + "community": 54, + "community_name": "Button.tsx", + "norm_label": "ticketmessage" }, { "label": "IconPickerModalProps", @@ -4102,7 +4141,7 @@ "label": "AppSitePage", "file_type": "code", "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L227", + "source_location": "L70", "_callable": true, "_callable_class": true, "_origin": "ast", @@ -4115,7 +4154,7 @@ "label": "PageSection", "file_type": "code", "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L219", + "source_location": "L62", "_callable": true, "_callable_class": true, "_origin": "ast", @@ -4128,7 +4167,7 @@ "label": "SectionField", "file_type": "code", "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L211", + "source_location": "L54", "_callable": true, "_callable_class": true, "_origin": "ast", @@ -4216,69 +4255,17 @@ "norm_label": "paymenttx" }, { - "label": "DeleteConfirmModalProps", + "label": "AuthService", "file_type": "code", - "source_file": "frontend/application/components/DeleteConfirmModal.tsx", - "source_location": "L6", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L37", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodalprops", + "id": "backend_src_auth_auth_service_authservice", "community": 58, - "community_name": "UserDashboard.tsx", - "norm_label": "deleteconfirmmodalprops" - }, - { - "label": "SkeletonProps", - "file_type": "code", - "source_file": "frontend/application/components/Skeleton.tsx", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_skeleton_skeletonprops", - "community": 58, - "community_name": "UserDashboard.tsx", - "norm_label": "skeletonprops" - }, - { - "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": 58, - "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": 58, - "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": 58, - "community_name": "UserDashboard.tsx", - "norm_label": "ticketmessage" + "community_name": "AuthService", + "norm_label": "authservice" }, { "label": "AdminUpdateTicketDto", @@ -4290,7 +4277,7 @@ "_origin": "ast", "id": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": "adminupdateticketdto" }, { @@ -4303,7 +4290,7 @@ "_origin": "ast", "id": "backend_src_tickets_dto_create_ticket_dto_createticketdto", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": "createticketdto" }, { @@ -4316,7 +4303,7 @@ "_origin": "ast", "id": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": "replyticketdto" }, { @@ -4329,7 +4316,7 @@ "_origin": "ast", "id": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": "ticketquerydto" }, { @@ -4342,7 +4329,7 @@ "_origin": "ast", "id": "backend_src_tickets_tickets_controller_ticketscontroller", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": "ticketscontroller" }, { @@ -4355,7 +4342,7 @@ "_origin": "ast", "id": "backend_src_tickets_tickets_service_ticketsservice", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": "ticketsservice" }, { @@ -4489,23 +4476,23 @@ "norm_label": "scientificterm" }, { - "label": "WikiService", + "label": "TorobController", "file_type": "code", - "source_file": "backend/src/admin/wiki.service.ts", - "source_location": "L12", + "source_file": "backend/src/products/torob.controller.ts", + "source_location": "L101", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_admin_wiki_service_wikiservice", + "id": "backend_src_products_torob_controller_torobcontroller", "community": 62, - "community_name": "WikiService", - "norm_label": "wikiservice" + "community_name": "torob.controller.ts", + "norm_label": "torobcontroller" }, { "label": "CouponTargetInput", "file_type": "code", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L43", + "source_location": "L45", "_callable": true, "_callable_class": true, "_origin": "ast", @@ -4518,7 +4505,7 @@ "label": "PaginationQuery", "file_type": "code", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L29", + "source_location": "L31", "_callable": true, "_callable_class": true, "_origin": "ast", @@ -4527,19 +4514,6 @@ "community_name": "admin.service.ts", "norm_label": "paginationquery" }, - { - "label": "ProductDto", - "file_type": "code", - "source_file": "backend/src/admin/dto/product.dto.ts", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_dto_product_dto_productdto", - "community": 65, - "community_name": "admin.service.ts", - "norm_label": "productdto" - }, { "label": "PricingSettings", "file_type": "code", @@ -4592,6 +4566,19 @@ "community_name": "AdminQueryDto", "norm_label": "adminquerydto" }, + { + "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": 67, + "community_name": "admin.module.ts", + "norm_label": "adminmodule" + }, { "label": "ReportsController", "file_type": "code", @@ -4602,7 +4589,7 @@ "_origin": "ast", "id": "backend_src_admin_reports_controller_reportscontroller", "community": 67, - "community_name": "ReportsController", + "community_name": "admin.module.ts", "norm_label": "reportscontroller" }, { @@ -4615,9 +4602,48 @@ "_origin": "ast", "id": "backend_src_admin_reports_service_reportsservice", "community": 67, - "community_name": "ReportsController", + "community_name": "admin.module.ts", "norm_label": "reportsservice" }, + { + "label": "SslCertInfo", + "file_type": "code", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_admin_ssl_service_sslcertinfo", + "community": 67, + "community_name": "admin.module.ts", + "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": 67, + "community_name": "admin.module.ts", + "norm_label": "wikiquery" + }, + { + "label": "WikiService", + "file_type": "code", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_admin_wiki_service_wikiservice", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": "wikiservice" + }, { "label": "HomeClientProps", "file_type": "code", @@ -4631,6 +4657,19 @@ "community_name": "useSettingsStore", "norm_label": "homeclientprops" }, + { + "label": "BlogPostClientProps", + "file_type": "code", + "source_file": "frontend/application/components/BlogPostClient.tsx", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_components_blogpostclient_blogpostclientprops", + "community": 68, + "community_name": "useSettingsStore", + "norm_label": "blogpostclientprops" + }, { "label": "BlogPost", "file_type": "code", @@ -4644,19 +4683,6 @@ "community_name": "useSettingsStore", "norm_label": "blogpost" }, - { - "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": 68, - "community_name": "useSettingsStore", - "norm_label": "brandlogoprops" - }, { "label": "ContactInfoItem", "file_type": "code", @@ -4696,6 +4722,19 @@ "community_name": "useSettingsStore", "norm_label": "orderdetailsmodalprops" }, + { + "label": "SafeImageProps", + "file_type": "code", + "source_file": "frontend/application/components/SafeImage.tsx", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_components_safeimage_safeimageprops", + "community": 68, + "community_name": "useSettingsStore", + "norm_label": "safeimageprops" + }, { "label": "Testimonial", "file_type": "code", @@ -4709,6 +4748,45 @@ "community_name": "useSettingsStore", "norm_label": "testimonial" }, + { + "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": 68, + "community_name": "useSettingsStore", + "norm_label": "topupmodalprops" + }, + { + "label": "DisplayVideoItem", + "file_type": "code", + "source_file": "frontend/application/components/VetGallery.tsx", + "source_location": "L58", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_components_vetgallery_displayvideoitem", + "community": 68, + "community_name": "useSettingsStore", + "norm_label": "displayvideoitem" + }, + { + "label": "TestimonialItem", + "file_type": "code", + "source_file": "frontend/application/components/VetGallery.tsx", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_components_vetgallery_testimonialitem", + "community": 68, + "community_name": "useSettingsStore", + "norm_label": "testimonialitem" + }, { "label": "ApiErrorPayload", "file_type": "code", @@ -4723,43 +4801,17 @@ "norm_label": "apierrorpayload" }, { - "label": "ApiErr", + "label": "Video", "file_type": "code", - "source_file": "frontend/application/lib/services/orderService.ts", - "source_location": "L23", + "source_file": "frontend/application/lib/services/videoService.ts", + "source_location": "L4", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_application_lib_services_orderservice_apierr", + "id": "frontend_application_lib_services_videoservice_video", "community": 68, "community_name": "useSettingsStore", - "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": 68, - "community_name": "useSettingsStore", - "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": 68, - "community_name": "useSettingsStore", - "norm_label": "orderitem" + "norm_label": "video" }, { "label": "ScientificTerm", @@ -4800,24 +4852,11 @@ "community_name": "useSettingsStore", "norm_label": "homeapiresponse" }, - { - "label": "NavigationTarget", - "file_type": "code", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L110", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_types_navigationtarget", - "community": 68, - "community_name": "useSettingsStore", - "norm_label": "navigationtarget" - }, { "label": "PatternItem", "file_type": "code", "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L58", + "source_location": "L91", "_callable": true, "_callable_class": true, "_origin": "ast", @@ -4830,7 +4869,7 @@ "label": "SmsConfigState", "file_type": "code", "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L46", + "source_location": "L77", "_callable": true, "_callable_class": true, "_origin": "ast", @@ -4839,11 +4878,37 @@ "community_name": "SmsSettingsPage.tsx", "norm_label": "smsconfigstate" }, + { + "label": "SmsEventDefinition", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L70", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_smssettingspage_smseventdefinition", + "community": 7, + "community_name": "SmsSettingsPage.tsx", + "norm_label": "smseventdefinition" + }, + { + "label": "SmsEventVariable", + "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_smseventvariable", + "community": 7, + "community_name": "SmsSettingsPage.tsx", + "norm_label": "smseventvariable" + }, { "label": "SmsLogItem", "file_type": "code", "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L67", + "source_location": "L100", "_callable": true, "_callable_class": true, "_origin": "ast", @@ -4856,7 +4921,7 @@ "label": "SmsLogStats", "file_type": "code", "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L80", + "source_location": "L113", "_callable": true, "_callable_class": true, "_origin": "ast", @@ -4865,6 +4930,19 @@ "community_name": "SmsSettingsPage.tsx", "norm_label": "smslogstats" }, + { + "label": "SmsRule", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L52", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_smssettingspage_smsrule", + "community": 7, + "community_name": "SmsSettingsPage.tsx", + "norm_label": "smsrule" + }, { "label": "PageMetadataOptions", "file_type": "code", @@ -5073,19 +5151,6 @@ "community_name": "ProductsService", "norm_label": "productsservice" }, - { - "label": "TorobController", - "file_type": "code", - "source_file": "backend/src/products/torob.controller.ts", - "source_location": "L101", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_products_torob_controller_torobcontroller", - "community": 76, - "community_name": "ProductsService", - "norm_label": "torobcontroller" - }, { "label": "SeoController", "file_type": "code", @@ -5125,6 +5190,32 @@ "community_name": "seo.module.ts", "norm_label": "seoservice" }, + { + "label": "SmsEventDefinition", + "file_type": "code", + "source_file": "backend/src/common/services/sms-events.constants.ts", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_events_constants_smseventdefinition", + "community": 8, + "community_name": "SmsService", + "norm_label": "smseventdefinition" + }, + { + "label": "SmsService", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L70", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice", + "community": 8, + "community_name": "SmsService", + "norm_label": "smsservice" + }, { "label": "SettingsController", "file_type": "code", @@ -5135,7 +5226,7 @@ "_origin": "ast", "id": "backend_src_settings_settings_controller_settingscontroller", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": "settingscontroller" }, { @@ -5148,60 +5239,21 @@ "_origin": "ast", "id": "backend_src_settings_settings_service_settingsservice", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": "settingsservice" }, { - "label": "AuthModule", + "label": "RegisterDto", "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": 85, - "community_name": "auth.module.ts", - "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": 85, - "community_name": "auth.module.ts", - "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": 85, - "community_name": "auth.module.ts", - "norm_label": "jwtstrategy" - }, - { - "label": "UsersModule", - "file_type": "code", - "source_file": "backend/src/users/users.module.ts", + "source_file": "backend/src/auth/dto/register.dto.ts", "source_location": "L10", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_users_users_module_usersmodule", + "id": "backend_src_auth_dto_register_dto_registerdto", "community": 85, - "community_name": "auth.module.ts", - "norm_label": "usersmodule" + "community_name": "RegisterDto", + "norm_label": "registerdto" }, { "label": "GatewayHealthResult", @@ -5330,47 +5382,60 @@ "_origin": "ast", "id": "backend_src_payment_dto_ebank_checkout_dto_createebankcheckoutdto", "community": 88, - "community_name": "payment.controller.ts", + "community_name": "CreateEBankCheckoutDto", "norm_label": "createebankcheckoutdto" }, { - "label": "InitiatePaymentDto", + "label": "DeleteConfirmModalProps", "file_type": "code", - "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", - "source_location": "L4", + "source_file": "frontend/application/components/DeleteConfirmModal.tsx", + "source_location": "L6", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", - "community": 88, - "community_name": "payment.controller.ts", - "norm_label": "initiatepaymentdto" + "id": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodalprops", + "community": 90, + "community_name": "useCartStore", + "norm_label": "deleteconfirmmodalprops" }, { - "label": "InitiateWalletTopupDto", + "label": "ApiErr", "file_type": "code", - "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", - "source_location": "L16", + "source_file": "frontend/application/lib/services/orderService.ts", + "source_location": "L23", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", - "community": 88, - "community_name": "payment.controller.ts", - "norm_label": "initiatewallettopupdto" + "id": "frontend_application_lib_services_orderservice_apierr", + "community": 90, + "community_name": "useCartStore", + "norm_label": "apierr" }, { - "label": "ZibalCallbackQueryDto", + "label": "Order", "file_type": "code", - "source_file": "backend/src/payment/dto/verify-payment.dto.ts", - "source_location": "L4", + "source_file": "frontend/application/lib/services/orderService.ts", + "source_location": "L11", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto", - "community": 88, - "community_name": "payment.controller.ts", - "norm_label": "zibalcallbackquerydto" + "id": "frontend_application_lib_services_orderservice_order", + "community": 90, + "community_name": "useCartStore", + "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": 90, + "community_name": "useCartStore", + "norm_label": "orderitem" }, { "label": "OrderService", @@ -5382,9 +5447,48 @@ "_origin": "ast", "id": "frontend_application_lib_services_orderservice_orderservice", "community": 90, - "community_name": "OrderService", + "community_name": "useCartStore", "norm_label": "orderservice" }, + { + "label": "CartItem", + "file_type": "code", + "source_file": "frontend/application/lib/store/cartStore.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_lib_store_cartstore_cartitem", + "community": 90, + "community_name": "useCartStore", + "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": 90, + "community_name": "useCartStore", + "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": 90, + "community_name": "useCartStore", + "norm_label": "order" + }, { "label": "CreateOrderDto", "file_type": "code", @@ -5476,6 +5580,32 @@ "community_name": "ArchivePage.tsx", "norm_label": "bannerplacementprops" }, + { + "label": "SkeletonProps", + "file_type": "code", + "source_file": "frontend/application/components/Skeleton.tsx", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_components_skeleton_skeletonprops", + "community": 93, + "community_name": "ArchivePage.tsx", + "norm_label": "skeletonprops" + }, + { + "label": "PetType", + "file_type": "code", + "source_file": "frontend/application/lib/data/products.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_lib_data_products_pettype", + "community": 93, + "community_name": "ArchivePage.tsx", + "norm_label": "pettype" + }, { "label": "B2BInquiry", "file_type": "code", @@ -5515,6 +5645,19 @@ "community_name": "ArchivePage.tsx", "norm_label": "dosageconfig" }, + { + "label": "Ingredient", + "file_type": "code", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L42", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "id": "frontend_application_lib_types_ingredient", + "community": 93, + "community_name": "ArchivePage.tsx", + "norm_label": "ingredient" + }, { "label": "NavigationHandler", "file_type": "code", @@ -5606,32 +5749,6 @@ "community_name": "BlogsController", "norm_label": "blogscontroller" }, - { - "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": 99, - "community_name": "BlogsController", - "norm_label": "blogsmodule" - }, - { - "label": "BlogFilterDto", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_blogs_blogs_service_blogfilterdto", - "community": 99, - "community_name": "BlogsController", - "norm_label": "blogfilterdto" - }, { "label": "Roles()", "file_type": "code", @@ -5648,7 +5765,7 @@ "label": ".cancelEBankCheckout()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L471", + "source_location": "L472", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_cancelebankcheckout", @@ -5660,7 +5777,7 @@ "label": ".changeIdentifiedPaymentStatus()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L508", + "source_location": "L509", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_changeidentifiedpaymentstatus", @@ -5672,7 +5789,7 @@ "label": ".createEBankCheckout()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L439", + "source_location": "L440", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_createebankcheckout", @@ -5696,7 +5813,7 @@ "label": ".createSubMerchant()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L365", + "source_location": "L366", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_createsubmerchant", @@ -5708,7 +5825,7 @@ "label": ".editSubMerchant()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L376", + "source_location": "L377", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", @@ -5720,7 +5837,7 @@ "label": ".getAdminStats()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L534", + "source_location": "L535", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", @@ -5732,7 +5849,7 @@ "label": ".getAdminTransactions()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L525", + "source_location": "L526", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", @@ -5756,7 +5873,7 @@ "label": ".getCheckoutQueueReport()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L343", + "source_location": "L344", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", @@ -5768,7 +5885,7 @@ "label": ".getCheckoutReport()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L325", + "source_location": "L326", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", @@ -5780,7 +5897,7 @@ "label": ".getEBankAccounts()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L391", + "source_location": "L392", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", @@ -5792,7 +5909,7 @@ "label": ".getEBankBalance()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L401", + "source_location": "L402", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", @@ -5804,7 +5921,7 @@ "label": ".getEBankCheckoutList()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L448", + "source_location": "L449", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", @@ -5816,7 +5933,7 @@ "label": ".getEBankIdentifiedPayments()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L485", + "source_location": "L486", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", @@ -5828,7 +5945,7 @@ "label": ".getEBankStatements()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L416", + "source_location": "L417", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", @@ -5840,7 +5957,7 @@ "label": ".getGatewayReport()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L300", + "source_location": "L301", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", @@ -5852,7 +5969,7 @@ "label": ".getHealth()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L618", + "source_location": "L619", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_gethealth", @@ -5864,7 +5981,7 @@ "label": ".getRefundList()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L279", + "source_location": "L280", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", @@ -5876,7 +5993,7 @@ "label": ".getSubMerchants()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L356", + "source_location": "L357", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_getsubmerchants", @@ -5900,7 +6017,7 @@ "label": ".inquireRefund()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L264", + "source_location": "L265", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_inquirerefund", @@ -5912,7 +6029,7 @@ "label": ".liveInquiry()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L580", + "source_location": "L581", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", @@ -5924,7 +6041,7 @@ "label": ".liveInquiryPost()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L556", + "source_location": "L557", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", @@ -5936,7 +6053,7 @@ "label": ".manualReject()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L603", + "source_location": "L604", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_manualreject", @@ -5948,7 +6065,7 @@ "label": ".manualVerify()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L591", + "source_location": "L592", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_manualverify", @@ -5960,7 +6077,7 @@ "label": ".reconcilePending()", "file_type": "code", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L545", + "source_location": "L546", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", @@ -5977,7 +6094,7 @@ "_origin": "ast", "id": "backend_src_reviews_reviews_controller_reviewscontroller_constructor", "community": 10, - "community_name": "CreateReviewDto", + "community_name": "ReviewsService", "norm_label": ".constructor()" }, { @@ -5989,7 +6106,7 @@ "_origin": "ast", "id": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", "community": 10, - "community_name": "CreateReviewDto", + "community_name": "ReviewsService", "norm_label": ".createreview()" }, { @@ -6001,7 +6118,7 @@ "_origin": "ast", "id": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", "community": 10, - "community_name": "CreateReviewDto", + "community_name": "ReviewsService", "norm_label": ".deletereview()" }, { @@ -6013,7 +6130,7 @@ "_origin": "ast", "id": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", "community": 10, - "community_name": "CreateReviewDto", + "community_name": "ReviewsService", "norm_label": ".getadminreviews()" }, { @@ -6025,7 +6142,7 @@ "_origin": "ast", "id": "backend_src_reviews_reviews_controller_reviewscontroller_getproductreviews", "community": 10, - "community_name": "CreateReviewDto", + "community_name": "ReviewsService", "norm_label": ".getproductreviews()" }, { @@ -6037,7 +6154,7 @@ "_origin": "ast", "id": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", "community": 10, - "community_name": "CreateReviewDto", + "community_name": "ReviewsService", "norm_label": ".updatereviewstatus()" }, { @@ -6049,7 +6166,7 @@ "_origin": "ast", "id": "backend_src_reviews_reviews_service_reviewsservice_constructor", "community": 10, - "community_name": "CreateReviewDto", + "community_name": "ReviewsService", "norm_label": ".constructor()" }, { @@ -6061,7 +6178,7 @@ "_origin": "ast", "id": "backend_src_reviews_reviews_service_reviewsservice_createreview", "community": 10, - "community_name": "CreateReviewDto", + "community_name": "ReviewsService", "norm_label": ".createreview()" }, { @@ -6073,7 +6190,7 @@ "_origin": "ast", "id": "backend_src_reviews_reviews_service_reviewsservice_deletereview", "community": 10, - "community_name": "CreateReviewDto", + "community_name": "ReviewsService", "norm_label": ".deletereview()" }, { @@ -6085,7 +6202,7 @@ "_origin": "ast", "id": "backend_src_reviews_reviews_service_reviewsservice_getadminreviews", "community": 10, - "community_name": "CreateReviewDto", + "community_name": "ReviewsService", "norm_label": ".getadminreviews()" }, { @@ -6097,7 +6214,7 @@ "_origin": "ast", "id": "backend_src_reviews_reviews_service_reviewsservice_getproductreviews", "community": 10, - "community_name": "CreateReviewDto", + "community_name": "ReviewsService", "norm_label": ".getproductreviews()" }, { @@ -6109,7 +6226,7 @@ "_origin": "ast", "id": "backend_src_reviews_reviews_service_reviewsservice_updatereviewstatus", "community": 10, - "community_name": "CreateReviewDto", + "community_name": "ReviewsService", "norm_label": ".updatereviewstatus()" }, { @@ -6196,6 +6313,18 @@ "community_name": "Products.tsx", "norm_label": "products()" }, + { + "label": "ShippingSettingsPage()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/ShippingSettingsPage.tsx", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_shippingsettingspage_shippingsettingspage", + "community": 104, + "community_name": "Products.tsx", + "norm_label": "shippingsettingspage()" + }, { "label": "applyRounding()", "file_type": "code", @@ -6220,6 +6349,150 @@ "community_name": "Products.tsx", "norm_label": "calculatesellingprice()" }, + { + "label": ".addComment()", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L358", + "_callable": true, + "_origin": "ast", + "id": "backend_src_blogs_blogs_service_blogsservice_addcomment", + "community": 107, + "community_name": "PaginationDto", + "norm_label": ".addcomment()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "id": "backend_src_blogs_blogs_service_blogsservice_constructor", + "community": 107, + "community_name": "PaginationDto", + "norm_label": ".constructor()" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "backend_src_blogs_blogs_service_blogsservice_findall", + "community": 107, + "community_name": "PaginationDto", + "norm_label": ".findall()" + }, + { + "label": ".findCommentsBySlug()", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L345", + "_callable": true, + "_origin": "ast", + "id": "backend_src_blogs_blogs_service_blogsservice_findcommentsbyslug", + "community": 107, + "community_name": "PaginationDto", + "norm_label": ".findcommentsbyslug()" + }, + { + "label": ".findHomepage()", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L99", + "_callable": true, + "_origin": "ast", + "id": "backend_src_blogs_blogs_service_blogsservice_findhomepage", + "community": 107, + "community_name": "PaginationDto", + "norm_label": ".findhomepage()" + }, + { + "label": ".findOneBySlug()", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L140", + "_callable": true, + "_origin": "ast", + "id": "backend_src_blogs_blogs_service_blogsservice_findonebyslug", + "community": 107, + "community_name": "PaginationDto", + "norm_label": ".findonebyslug()" + }, + { + "label": ".getCategories()", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L302", + "_callable": true, + "_origin": "ast", + "id": "backend_src_blogs_blogs_service_blogsservice_getcategories", + "community": 107, + "community_name": "PaginationDto", + "norm_label": ".getcategories()" + }, + { + "label": ".getTags()", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L316", + "_callable": true, + "_origin": "ast", + "id": "backend_src_blogs_blogs_service_blogsservice_gettags", + "community": 107, + "community_name": "PaginationDto", + "norm_label": ".gettags()" + }, + { + "label": ".incrementView()", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L329", + "_callable": true, + "_origin": "ast", + "id": "backend_src_blogs_blogs_service_blogsservice_incrementview", + "community": 107, + "community_name": "PaginationDto", + "norm_label": ".incrementview()" + }, + { + "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": 107, + "community_name": "PaginationDto", + "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": 107, + "community_name": "PaginationDto", + "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": 107, + "community_name": "PaginationDto", + "norm_label": ".findone()" + }, { "label": ".constructor()", "file_type": "code", @@ -6256,126 +6529,6 @@ "community_name": "PaginationDto", "norm_label": ".findonebykey()" }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L64", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_constructor", - "community": 108, - "community_name": "PrismaService", - "norm_label": ".constructor()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_service_blogsservice_constructor", - "community": 108, - "community_name": "PrismaService", - "norm_label": ".constructor()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L38", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_authservice_constructor", - "community": 108, - "community_name": "PrismaService", - "norm_label": ".constructor()" - }, - { - "label": ".frontendUrl()", - "file_type": "code", - "source_file": "backend/src/common/revalidation/revalidation.service.ts", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_revalidation_revalidation_service_revalidationservice_frontendurl", - "community": 108, - "community_name": "PrismaService", - "norm_label": ".frontendurl()" - }, - { - "label": ".secret()", - "file_type": "code", - "source_file": "backend/src/common/revalidation/revalidation.service.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_revalidation_revalidation_service_revalidationservice_secret", - "community": 108, - "community_name": "PrismaService", - "norm_label": ".secret()" - }, - { - "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": 108, - "community_name": "PrismaService", - "norm_label": ".constructor()" - }, - { - "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": 108, - "community_name": "PrismaService", - "norm_label": ".constructor()" - }, - { - "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": 108, - "community_name": "PrismaService", - "norm_label": ".constructor()" - }, - { - "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": 108, - "community_name": "PrismaService", - "norm_label": ".constructor()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.service.ts", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_constructor", - "community": 108, - "community_name": "PrismaService", - "norm_label": ".constructor()" - }, { "label": ".ensureTablesExist()", "file_type": "code", @@ -6413,76 +6566,88 @@ "norm_label": ".onmoduleinit()" }, { - "label": ".constructor()", + "label": "ConfirmModal()", "file_type": "code", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L9", + "source_file": "frontend/admin-panel/src/components/ui/ConfirmModal.tsx", + "source_location": "L15", "_callable": true, "_origin": "ast", - "id": "backend_src_products_products_service_productsservice_constructor", - "community": 108, - "community_name": "PrismaService", - "norm_label": ".constructor()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L148", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_constructor", - "community": 108, - "community_name": "PrismaService", - "norm_label": ".constructor()" - }, - { - "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": 108, - "community_name": "PrismaService", - "norm_label": ".constructor()" - }, - { - "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", + "id": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", "community": 11, - "community_name": "WikiController", - "norm_label": ".constructor()" + "community_name": "ConfirmModal.tsx", + "norm_label": "confirmmodal()" }, { - "label": ".findAll()", + "label": "Pagination()", "file_type": "code", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L24", + "source_file": "frontend/admin-panel/src/components/ui/Pagination.tsx", + "source_location": "L10", "_callable": true, "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_wikicontroller_findall", + "id": "frontend_admin_panel_src_components_ui_pagination_pagination", "community": 11, - "community_name": "WikiController", - "norm_label": ".findall()" + "community_name": "ConfirmModal.tsx", + "norm_label": "pagination()" }, { - "label": ".findOne()", + "label": "Categories()", "file_type": "code", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L32", + "source_file": "frontend/admin-panel/src/pages/Categories.tsx", + "source_location": "L28", "_callable": true, "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_wikicontroller_findone", + "id": "frontend_admin_panel_src_pages_categories_categories", "community": 11, - "community_name": "WikiController", - "norm_label": ".findone()" + "community_name": "ConfirmModal.tsx", + "norm_label": "categories()" + }, + { + "label": "Pets()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Pets.tsx", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_pets_pets", + "community": 11, + "community_name": "ConfirmModal.tsx", + "norm_label": "pets()" + }, + { + "label": "Videos()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Videos.tsx", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_videos_videos", + "community": 11, + "community_name": "ConfirmModal.tsx", + "norm_label": "videos()" + }, + { + "label": "WholesaleApplications()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_wholesaleapplications_wholesaleapplications", + "community": 11, + "community_name": "ConfirmModal.tsx", + "norm_label": "wholesaleapplications()" + }, + { + "label": "Wiki()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_wiki_wiki", + "community": 11, + "community_name": "ConfirmModal.tsx", + "norm_label": "wiki()" }, { "label": ".constructor()", @@ -6628,30 +6793,6 @@ "community_name": "Spinner.tsx", "norm_label": "mediaselector()" }, - { - "label": "Modal()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Modal.tsx", - "source_location": "L28", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_modal_modal", - "community": 115, - "community_name": "Spinner.tsx", - "norm_label": "modal()" - }, - { - "label": "Pagination()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Pagination.tsx", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_pagination_pagination", - "community": 115, - "community_name": "Spinner.tsx", - "norm_label": "pagination()" - }, { "label": "Spinner()", "file_type": "code", @@ -6676,18 +6817,6 @@ "community_name": "Spinner.tsx", "norm_label": "bannersmanager()" }, - { - "label": "Categories()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Categories.tsx", - "source_location": "L28", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_categories_categories", - "community": 115, - "community_name": "Spinner.tsx", - "norm_label": "categories()" - }, { "label": "DoctorsManager()", "file_type": "code", @@ -6736,18 +6865,6 @@ "community_name": "Spinner.tsx", "norm_label": "mediamanager()" }, - { - "label": "Pets()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Pets.tsx", - "source_location": "L57", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_pets_pets", - "community": 115, - "community_name": "Spinner.tsx", - "norm_label": "pets()" - }, { "label": "PrescriptionsManager()", "file_type": "code", @@ -6760,6 +6877,18 @@ "community_name": "Spinner.tsx", "norm_label": "prescriptionsmanager()" }, + { + "label": "SeoSettingsPage()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_seosettingspage_seosettingspage", + "community": 115, + "community_name": "Spinner.tsx", + "norm_label": "seosettingspage()" + }, { "label": "TestimonialsManager()", "file_type": "code", @@ -6772,42 +6901,6 @@ "community_name": "Spinner.tsx", "norm_label": "testimonialsmanager()" }, - { - "label": "Videos()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Videos.tsx", - "source_location": "L39", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_videos_videos", - "community": 115, - "community_name": "Spinner.tsx", - "norm_label": "videos()" - }, - { - "label": "Wiki()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", - "source_location": "L30", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_wiki_wiki", - "community": 115, - "community_name": "Spinner.tsx", - "norm_label": "wiki()" - }, - { - "label": "ZibalPortalPage()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/ZibalPortalPage.tsx", - "source_location": "L33", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_zibalportalpage_zibalportalpage", - "community": 115, - "community_name": "Spinner.tsx", - "norm_label": "zibalportalpage()" - }, { "label": "parsePersianPrice()", "file_type": "code", @@ -6821,111 +6914,39 @@ "norm_label": "parsepersianprice()" }, { - "label": ".adjustWallet()", + "label": ".constructor()", "file_type": "code", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L102", + "source_location": "L35", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_adjustwallet", + "id": "backend_src_admin_admin_controller_admincontroller_constructor", "community": 122, - "community_name": "AdminController", - "norm_label": ".adjustwallet()" - }, - { - "label": ".applyGlobalMargins()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L170", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_applyglobalmargins", - "community": 122, - "community_name": "AdminController", - "norm_label": ".applyglobalmargins()" - }, - { - "label": ".bulkPriceAdjustment()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L178", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_bulkpriceadjustment", - "community": 122, - "community_name": "AdminController", - "norm_label": ".bulkpriceadjustment()" - }, - { - "label": ".createCoupon()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L241", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_createcoupon", - "community": 122, - "community_name": "AdminController", - "norm_label": ".createcoupon()" - }, - { - "label": ".createDoctor()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L279", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_createdoctor", - "community": 122, - "community_name": "AdminController", - "norm_label": ".createdoctor()" - }, - { - "label": ".createProduct()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L133", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_createproduct", - "community": 122, - "community_name": "AdminController", - "norm_label": ".createproduct()" - }, - { - "label": ".createUser()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L56", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_createuser", - "community": 122, - "community_name": "AdminController", - "norm_label": ".createuser()" + "community_name": "AdminService", + "norm_label": ".constructor()" }, { "label": ".deleteCoupon()", "file_type": "code", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L265", + "source_location": "L268", "_callable": true, "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_deletecoupon", "community": 122, - "community_name": "AdminController", + "community_name": "AdminService", "norm_label": ".deletecoupon()" }, { "label": ".deleteDoctor()", "file_type": "code", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L312", + "source_location": "L315", "_callable": true, "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_deletedoctor", "community": 122, - "community_name": "AdminController", + "community_name": "AdminService", "norm_label": ".deletedoctor()" }, { @@ -6937,7 +6958,7 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_deleteproduct", "community": 122, - "community_name": "AdminController", + "community_name": "AdminService", "norm_label": ".deleteproduct()" }, { @@ -6949,9 +6970,33 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_deleteuser", "community": 122, - "community_name": "AdminController", + "community_name": "AdminService", "norm_label": ".deleteuser()" }, + { + "label": ".getDashboardStats()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_controller_admincontroller_getdashboardstats", + "community": 122, + "community_name": "AdminService", + "norm_label": ".getdashboardstats()" + }, + { + "label": ".getDoctors()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L275", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_controller_admincontroller_getdoctors", + "community": 122, + "community_name": "AdminService", + "norm_label": ".getdoctors()" + }, { "label": ".getOrderById()", "file_type": "code", @@ -6961,9 +7006,33 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_getorderbyid", "community": 122, - "community_name": "AdminController", + "community_name": "AdminService", "norm_label": ".getorderbyid()" }, + { + "label": ".getPricingSettings()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L157", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_controller_admincontroller_getpricingsettings", + "community": 122, + "community_name": "AdminService", + "norm_label": ".getpricingsettings()" + }, + { + "label": ".getSettings()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L322", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_controller_admincontroller_getsettings", + "community": 122, + "community_name": "AdminService", + "norm_label": ".getsettings()" + }, { "label": ".getUserDetails()", "file_type": "code", @@ -6973,55 +7042,43 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_getuserdetails", "community": 122, - "community_name": "AdminController", + "community_name": "AdminService", "norm_label": ".getuserdetails()" }, - { - "label": ".refundOrderToWallet()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L216", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_refundordertowallet", - "community": 122, - "community_name": "AdminController", - "norm_label": ".refundordertowallet()" - }, { "label": ".toggleCoupon()", "file_type": "code", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L255", + "source_location": "L258", "_callable": true, "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_togglecoupon", "community": 122, - "community_name": "AdminController", + "community_name": "AdminService", "norm_label": ".togglecoupon()" }, { "label": ".updateCoupon()", "file_type": "code", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L248", + "source_location": "L251", "_callable": true, "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_updatecoupon", "community": 122, - "community_name": "AdminController", + "community_name": "AdminService", "norm_label": ".updatecoupon()" }, { "label": ".updateDoctor()", "file_type": "code", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L295", + "source_location": "L298", "_callable": true, "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_updatedoctor", "community": 122, - "community_name": "AdminController", + "community_name": "AdminService", "norm_label": ".updatedoctor()" }, { @@ -7033,57 +7090,21 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_updateorderstatus", "community": 122, - "community_name": "AdminController", + "community_name": "AdminService", "norm_label": ".updateorderstatus()" }, - { - "label": ".updatePricingSettings()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L164", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_updatepricingsettings", - "community": 122, - "community_name": "AdminController", - "norm_label": ".updatepricingsettings()" - }, - { - "label": ".updateProduct()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L140", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_updateproduct", - "community": 122, - "community_name": "AdminController", - "norm_label": ".updateproduct()" - }, { "label": ".updateSettings()", "file_type": "code", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L326", + "source_location": "L329", "_callable": true, "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_updatesettings", "community": 122, - "community_name": "AdminController", + "community_name": "AdminService", "norm_label": ".updatesettings()" }, - { - "label": ".updateUser()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L74", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_updateuser", - "community": 122, - "community_name": "AdminController", - "norm_label": ".updateuser()" - }, { "label": ".updateUserRole()", "file_type": "code", @@ -7093,20 +7114,248 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_updateuserrole", "community": 122, - "community_name": "AdminController", + "community_name": "AdminService", "norm_label": ".updateuserrole()" }, { - "label": ".createCoupon()", + "label": ".deleteCoupon()", "file_type": "code", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L938", + "source_location": "L1148", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_createcoupon", + "id": "backend_src_admin_admin_service_adminservice_deletecoupon", "community": 122, - "community_name": "AdminController", - "norm_label": ".createcoupon()" + "community_name": "AdminService", + "norm_label": ".deletecoupon()" + }, + { + "label": ".deleteDoctor()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L1278", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_deletedoctor", + "community": 122, + "community_name": "AdminService", + "norm_label": ".deletedoctor()" + }, + { + "label": ".deleteProduct()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L730", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_deleteproduct", + "community": 122, + "community_name": "AdminService", + "norm_label": ".deleteproduct()" + }, + { + "label": ".deleteUser()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L331", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_deleteuser", + "community": 122, + "community_name": "AdminService", + "norm_label": ".deleteuser()" + }, + { + "label": ".getDashboardStats()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_getdashboardstats", + "community": 122, + "community_name": "AdminService", + "norm_label": ".getdashboardstats()" + }, + { + "label": ".getDoctors()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L1249", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_getdoctors", + "community": 122, + "community_name": "AdminService", + "norm_label": ".getdoctors()" + }, + { + "label": ".getOrderById()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L802", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_getorderbyid", + "community": 122, + "community_name": "AdminService", + "norm_label": ".getorderbyid()" + }, + { + "label": ".getPets()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L1199", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_getpets", + "community": 122, + "community_name": "AdminService", + "norm_label": ".getpets()" + }, + { + "label": ".getSettings()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L1154", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_getsettings", + "community": 122, + "community_name": "AdminService", + "norm_label": ".getsettings()" + }, + { + "label": ".getUserDetails()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L206", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_getuserdetails", + "community": 122, + "community_name": "AdminService", + "norm_label": ".getuserdetails()" + }, + { + "label": ".toggleCoupon()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L1141", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_togglecoupon", + "community": 122, + "community_name": "AdminService", + "norm_label": ".togglecoupon()" + }, + { + "label": ".updateCoupon()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L1111", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_updatecoupon", + "community": 122, + "community_name": "AdminService", + "norm_label": ".updatecoupon()" + }, + { + "label": ".updateDoctor()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L1265", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_updatedoctor", + "community": 122, + "community_name": "AdminService", + "norm_label": ".updatedoctor()" + }, + { + "label": ".updateOrderStatus()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L824", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_updateorderstatus", + "community": 122, + "community_name": "AdminService", + "norm_label": ".updateorderstatus()" + }, + { + "label": ".updateSettings()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L1162", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_updatesettings", + "community": 122, + "community_name": "AdminService", + "norm_label": ".updatesettings()" + }, + { + "label": ".updateUserRole()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L324", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_updateuserrole", + "community": 122, + "community_name": "AdminService", + "norm_label": ".updateuserrole()" + }, + { + "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": 122, + "community_name": "AdminService", + "norm_label": ".get()" + }, + { + "label": "getJwtRefreshSecret()", + "file_type": "code", + "source_file": "backend/src/auth/auth.constants.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "backend_src_auth_auth_constants_getjwtrefreshsecret", + "community": 123, + "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": 123, + "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": 123, + "community_name": "UsersService", + "norm_label": ".constructor()" }, { "label": ".validate()", @@ -7220,7 +7469,7 @@ "label": ".addAddress()", "file_type": "code", "source_file": "backend/src/users/users.service.ts", - "source_location": "L210", + "source_location": "L215", "_callable": true, "_origin": "ast", "id": "backend_src_users_users_service_usersservice_addaddress", @@ -7232,7 +7481,7 @@ "label": ".constructor()", "file_type": "code", "source_file": "backend/src/users/users.service.ts", - "source_location": "L25", + "source_location": "L27", "_callable": true, "_origin": "ast", "id": "backend_src_users_users_service_usersservice_constructor", @@ -7244,7 +7493,7 @@ "label": ".deleteAddress()", "file_type": "code", "source_file": "backend/src/users/users.service.ts", - "source_location": "L258", + "source_location": "L263", "_callable": true, "_origin": "ast", "id": "backend_src_users_users_service_usersservice_deleteaddress", @@ -7256,7 +7505,7 @@ "label": ".findById()", "file_type": "code", "source_file": "backend/src/users/users.service.ts", - "source_location": "L27", + "source_location": "L32", "_callable": true, "_origin": "ast", "id": "backend_src_users_users_service_usersservice_findbyid", @@ -7268,7 +7517,7 @@ "label": ".findByPhone()", "file_type": "code", "source_file": "backend/src/users/users.service.ts", - "source_location": "L299", + "source_location": "L330", "_callable": true, "_origin": "ast", "id": "backend_src_users_users_service_usersservice_findbyphone", @@ -7280,7 +7529,7 @@ "label": ".setDefaultAddress()", "file_type": "code", "source_file": "backend/src/users/users.service.ts", - "source_location": "L264", + "source_location": "L269", "_callable": true, "_origin": "ast", "id": "backend_src_users_users_service_usersservice_setdefaultaddress", @@ -7292,7 +7541,7 @@ "label": ".topUpWallet()", "file_type": "code", "source_file": "backend/src/users/users.service.ts", - "source_location": "L275", + "source_location": "L280", "_callable": true, "_origin": "ast", "id": "backend_src_users_users_service_usersservice_topupwallet", @@ -7304,7 +7553,7 @@ "label": ".update()", "file_type": "code", "source_file": "backend/src/users/users.service.ts", - "source_location": "L125", + "source_location": "L130", "_callable": true, "_origin": "ast", "id": "backend_src_users_users_service_usersservice_update", @@ -7316,7 +7565,7 @@ "label": ".updateAddress()", "file_type": "code", "source_file": "backend/src/users/users.service.ts", - "source_location": "L232", + "source_location": "L237", "_callable": true, "_origin": "ast", "id": "backend_src_users_users_service_usersservice_updateaddress", @@ -7325,341 +7574,161 @@ "norm_label": ".updateaddress()" }, { - "label": ".constructor()", + "label": ".adjustWallet()", "file_type": "code", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L35", + "source_location": "L102", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_constructor", + "id": "backend_src_admin_admin_controller_admincontroller_adjustwallet", "community": 128, - "community_name": "AdminService", - "norm_label": ".constructor()" + "community_name": "Body", + "norm_label": ".adjustwallet()" }, { - "label": ".getSettings()", + "label": ".applyGlobalMargins()", "file_type": "code", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L319", + "source_location": "L170", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_getsettings", + "id": "backend_src_admin_admin_controller_admincontroller_applyglobalmargins", "community": 128, - "community_name": "AdminService", - "norm_label": ".getsettings()" + "community_name": "Body", + "norm_label": ".applyglobalmargins()" + }, + { + "label": ".bulkPriceAdjustment()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L178", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_controller_admincontroller_bulkpriceadjustment", + "community": 128, + "community_name": "Body", + "norm_label": ".bulkpriceadjustment()" + }, + { + "label": ".createCoupon()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L244", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_controller_admincontroller_createcoupon", + "community": 128, + "community_name": "Body", + "norm_label": ".createcoupon()" + }, + { + "label": ".createDoctor()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L282", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_controller_admincontroller_createdoctor", + "community": 128, + "community_name": "Body", + "norm_label": ".createdoctor()" + }, + { + "label": ".refundOrderToWallet()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L219", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_controller_admincontroller_refundordertowallet", + "community": 128, + "community_name": "Body", + "norm_label": ".refundordertowallet()" }, { "label": ".adjustUserWallet()", "file_type": "code", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1136", + "source_location": "L1282", "_callable": true, "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_adjustuserwallet", "community": 128, - "community_name": "AdminService", + "community_name": "Body", "norm_label": ".adjustuserwallet()" }, { "label": ".applyGlobalMargins()", "file_type": "code", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1280", + "source_location": "L1457", "_callable": true, "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_applyglobalmargins", "community": 128, - "community_name": "AdminService", + "community_name": "Body", "norm_label": ".applyglobalmargins()" }, { "label": ".bulkPriceAdjustment()", "file_type": "code", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1399", + "source_location": "L1576", "_callable": true, "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_bulkpriceadjustment", "community": 128, - "community_name": "AdminService", + "community_name": "Body", "norm_label": ".bulkpriceadjustment()" }, + { + "label": ".createCoupon()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L1084", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_createcoupon", + "community": 128, + "community_name": "Body", + "norm_label": ".createcoupon()" + }, { "label": ".createDoctor()", "file_type": "code", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1109", + "source_location": "L1255", "_callable": true, "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_createdoctor", "community": 128, - "community_name": "AdminService", + "community_name": "Body", "norm_label": ".createdoctor()" }, - { - "label": ".deleteCoupon()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1002", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_deletecoupon", - "community": 128, - "community_name": "AdminService", - "norm_label": ".deletecoupon()" - }, - { - "label": ".deleteDoctor()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1132", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_deletedoctor", - "community": 128, - "community_name": "AdminService", - "norm_label": ".deletedoctor()" - }, - { - "label": ".deleteProduct()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L725", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_deleteproduct", - "community": 128, - "community_name": "AdminService", - "norm_label": ".deleteproduct()" - }, - { - "label": ".deleteUser()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L328", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_deleteuser", - "community": 128, - "community_name": "AdminService", - "norm_label": ".deleteuser()" - }, - { - "label": ".getOrderById()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L797", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_getorderbyid", - "community": 128, - "community_name": "AdminService", - "norm_label": ".getorderbyid()" - }, - { - "label": ".getPets()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1053", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_getpets", - "community": 128, - "community_name": "AdminService", - "norm_label": ".getpets()" - }, { "label": ".getPricingSettings()", "file_type": "code", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1170", + "source_location": "L1347", "_callable": true, "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_getpricingsettings", "community": 128, - "community_name": "AdminService", + "community_name": "Body", "norm_label": ".getpricingsettings()" }, - { - "label": ".getSettings()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1008", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_getsettings", - "community": 128, - "community_name": "AdminService", - "norm_label": ".getsettings()" - }, - { - "label": ".getUserDetails()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L203", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_getuserdetails", - "community": 128, - "community_name": "AdminService", - "norm_label": ".getuserdetails()" - }, { "label": ".refundOrderToWallet()", "file_type": "code", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L839", + "source_location": "L946", "_callable": true, "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_refundordertowallet", "community": 128, - "community_name": "AdminService", + "community_name": "Body", "norm_label": ".refundordertowallet()" }, - { - "label": ".toggleCoupon()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L995", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_togglecoupon", - "community": 128, - "community_name": "AdminService", - "norm_label": ".togglecoupon()" - }, - { - "label": ".updateCoupon()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L965", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_updatecoupon", - "community": 128, - "community_name": "AdminService", - "norm_label": ".updatecoupon()" - }, - { - "label": ".updateDoctor()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1119", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_updatedoctor", - "community": 128, - "community_name": "AdminService", - "norm_label": ".updatedoctor()" - }, - { - "label": ".updateOrderStatus()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L819", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_updateorderstatus", - "community": 128, - "community_name": "AdminService", - "norm_label": ".updateorderstatus()" - }, - { - "label": ".updatePricingSettings()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1195", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_updatepricingsettings", - "community": 128, - "community_name": "AdminService", - "norm_label": ".updatepricingsettings()" - }, - { - "label": ".updateProduct()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L571", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_updateproduct", - "community": 128, - "community_name": "AdminService", - "norm_label": ".updateproduct()" - }, - { - "label": ".updateSettings()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1016", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_updatesettings", - "community": 128, - "community_name": "AdminService", - "norm_label": ".updatesettings()" - }, - { - "label": ".updateUserRole()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L321", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_updateuserrole", - "community": 128, - "community_name": "AdminService", - "norm_label": ".updateuserrole()" - }, - { - "label": ".revalidatePath()", - "file_type": "code", - "source_file": "backend/src/common/revalidation/revalidation.service.ts", - "source_location": "L50", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatepath", - "community": 128, - "community_name": "AdminService", - "norm_label": ".revalidatepath()" - }, - { - "label": ".revalidateProduct()", - "file_type": "code", - "source_file": "backend/src/common/revalidation/revalidation.service.ts", - "source_location": "L79", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateproduct", - "community": 128, - "community_name": "AdminService", - "norm_label": ".revalidateproduct()" - }, - { - "label": ".revalidateSettings()", - "file_type": "code", - "source_file": "backend/src/common/revalidation/revalidation.service.ts", - "source_location": "L115", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatesettings", - "community": 128, - "community_name": "AdminService", - "norm_label": ".revalidatesettings()" - }, - { - "label": ".revalidateTag()", - "file_type": "code", - "source_file": "backend/src/common/revalidation/revalidation.service.ts", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatetag", - "community": 128, - "community_name": "AdminService", - "norm_label": ".revalidatetag()" - }, { "label": "CustomTooltip()", "file_type": "code", @@ -7684,30 +7753,6 @@ "community_name": "Reports.tsx", "norm_label": "reports()" }, - { - "label": "generateOpenApi()", - "file_type": "code", - "source_file": "backend/scripts/generate-openapi.ts", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "id": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi_generateopenapi", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "generateopenapi()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/app.module.ts", - "source_location": "L90", - "_callable": true, - "_origin": "ast", - "id": "backend_src_app_module_appmodule_constructor", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": ".constructor()" - }, { "label": "validateEnv()", "file_type": "code", @@ -7984,6 +8029,30 @@ "community_name": "layout.tsx", "norm_label": "rootlayout()" }, + { + "label": "AnalyticsDeferred()", + "file_type": "code", + "source_file": "frontend/application/components/AnalyticsDeferred.tsx", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_analyticsdeferred_analyticsdeferred", + "community": 139, + "community_name": "layout.tsx", + "norm_label": "analyticsdeferred()" + }, + { + "label": "gtag()", + "file_type": "code", + "source_file": "frontend/application/components/AnalyticsDeferred.tsx", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_analyticsdeferred_analyticsdeferred_gtag", + "community": 139, + "community_name": "layout.tsx", + "norm_label": "gtag()" + }, { "label": "generateOrganizationSchema()", "file_type": "code", @@ -7996,18 +8065,6 @@ "community_name": "layout.tsx", "norm_label": "generateorganizationschema()" }, - { - "label": "HomeClient()", - "file_type": "code", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_homeclient_homeclient", - "community": 14, - "community_name": "toPersian", - "norm_label": "homeclient()" - }, { "label": "PaymentVerifyPage()", "file_type": "code", @@ -8068,11 +8125,23 @@ "community_name": "toPersian", "norm_label": "validateaddressform()" }, + { + "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": 14, + "community_name": "toPersian", + "norm_label": "backbutton()" + }, { "label": "CheckoutPage()", "file_type": "code", "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L33", + "source_location": "L34", "_callable": true, "_origin": "ast", "id": "frontend_application_components_checkoutpage_checkoutpage", @@ -8236,42 +8305,6 @@ "community_name": "generate-openapi.js", "norm_label": "generateopenapi()" }, - { - "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": 144, - "community_name": "SafeImage.tsx", - "norm_label": "backbutton()" - }, - { - "label": "PodcastInlinePlayer()", - "file_type": "code", - "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_podcastinlineplayer_podcastinlineplayer", - "community": 144, - "community_name": "SafeImage.tsx", - "norm_label": "podcastinlineplayer()" - }, - { - "label": "handleClickOutside()", - "file_type": "code", - "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", - "source_location": "L54", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_podcastinlineplayer_podcastinlineplayer_handleclickoutside", - "community": 144, - "community_name": "SafeImage.tsx", - "norm_label": "handleclickoutside()" - }, { "label": "PodcastPlayerModal()", "file_type": "code", @@ -8281,7 +8314,7 @@ "_origin": "ast", "id": "frontend_application_components_podcastplayermodal_podcastplayermodal", "community": 144, - "community_name": "SafeImage.tsx", + "community_name": "PodcastPlayerModal.tsx", "norm_label": "podcastplayermodal()" }, { @@ -8293,189 +8326,9 @@ "_origin": "ast", "id": "frontend_application_components_podcastplayermodal_podcastplayermodal_handleclickoutside", "community": 144, - "community_name": "SafeImage.tsx", + "community_name": "PodcastPlayerModal.tsx", "norm_label": "handleclickoutside()" }, - { - "label": "SafeImage()", - "file_type": "code", - "source_file": "frontend/application/components/SafeImage.tsx", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_safeimage_safeimage", - "community": 144, - "community_name": "SafeImage.tsx", - "norm_label": "safeimage()" - }, - { - "label": "VetGallery()", - "file_type": "code", - "source_file": "frontend/application/components/VetGallery.tsx", - "source_location": "L71", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_vetgallery_vetgallery", - "community": 144, - "community_name": "SafeImage.tsx", - "norm_label": "vetgallery()" - }, - { - "label": "VideoModalPlayer()", - "file_type": "code", - "source_file": "frontend/application/components/VideoModalPlayer.tsx", - "source_location": "L40", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_videomodalplayer_videomodalplayer", - "community": 144, - "community_name": "SafeImage.tsx", - "norm_label": "videomodalplayer()" - }, - { - "label": "handleClickOutside()", - "file_type": "code", - "source_file": "frontend/application/components/VideoModalPlayer.tsx", - "source_location": "L62", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_videomodalplayer_videomodalplayer_handleclickoutside", - "community": 144, - "community_name": "SafeImage.tsx", - "norm_label": "handleclickoutside()" - }, - { - "label": "getMediaUrl()", - "file_type": "code", - "source_file": "frontend/application/lib/media.ts", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_media_getmediaurl", - "community": 144, - "community_name": "SafeImage.tsx", - "norm_label": "getmediaurl()" - }, - { - "label": "normalizeVideo()", - "file_type": "code", - "source_file": "frontend/application/lib/services/videoService.ts", - "source_location": "L16", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_videoservice_normalizevideo", - "community": 144, - "community_name": "SafeImage.tsx", - "norm_label": "normalizevideo()" - }, - { - "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": 145, - "community_name": "AuthService", - "norm_label": ".constructor()" - }, - { - "label": ".getInstance()", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L43", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authservice_getinstance", - "community": 145, - "community_name": "AuthService", - "norm_label": ".getinstance()" - }, - { - "label": ".getProfile()", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L121", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authservice_getprofile", - "community": 145, - "community_name": "AuthService", - "norm_label": ".getprofile()" - }, - { - "label": ".login()", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L103", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authservice_login", - "community": 145, - "community_name": "AuthService", - "norm_label": ".login()" - }, - { - "label": ".logout()", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L152", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authservice_logout", - "community": 145, - "community_name": "AuthService", - "norm_label": ".logout()" - }, - { - "label": ".register()", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L85", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authservice_register", - "community": 145, - "community_name": "AuthService", - "norm_label": ".register()" - }, - { - "label": ".sendOtp()", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L53", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authservice_sendotp", - "community": 145, - "community_name": "AuthService", - "norm_label": ".sendotp()" - }, - { - "label": ".updateProfile()", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L138", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authservice_updateprofile", - "community": 145, - "community_name": "AuthService", - "norm_label": ".updateprofile()" - }, - { - "label": ".verifyOtp()", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L67", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authservice_verifyotp", - "community": 145, - "community_name": "AuthService", - "norm_label": ".verifyotp()" - }, { "label": ".constructor()", "file_type": "code", @@ -8527,74 +8380,62 @@ { "label": "generateMetadata()", "file_type": "code", - "source_file": "frontend/application/app/track/page.tsx", - "source_location": "L5", + "source_file": "frontend/application/app/wiki/[slug]/page.tsx", + "source_location": "L38", "_callable": true, "_origin": "ast", - "id": "frontend_application_app_track_page_generatemetadata", - "community": 148, - "community_name": "track/page.tsx", + "id": "frontend_application_app_wiki_slug_page_generatemetadata", + "community": 149, + "community_name": "wiki/[slug]/page.tsx", "norm_label": "generatemetadata()" }, { - "label": "TrackPage()", + "label": "getRelatedProducts()", "file_type": "code", - "source_file": "frontend/application/app/track/page.tsx", - "source_location": "L13", + "source_file": "frontend/application/app/wiki/[slug]/page.tsx", + "source_location": "L24", "_callable": true, "_origin": "ast", - "id": "frontend_application_app_track_page_trackpage", - "community": 148, - "community_name": "track/page.tsx", - "norm_label": "trackpage()" - }, - { - "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": 148, - "community_name": "track/page.tsx", - "norm_label": "ordertracking()" - }, - { - "label": "generateMetadata()", - "file_type": "code", - "source_file": "frontend/application/app/trust-seals/page.tsx", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_trust_seals_page_generatemetadata", + "id": "frontend_application_app_wiki_slug_page_getrelatedproducts", "community": 149, - "community_name": "trust-seals/page.tsx", - "norm_label": "generatemetadata()" + "community_name": "wiki/[slug]/page.tsx", + "norm_label": "getrelatedproducts()" }, { - "label": "TrustSealsPage()", + "label": "getWikiTerm()", "file_type": "code", - "source_file": "frontend/application/app/trust-seals/page.tsx", - "source_location": "L15", + "source_file": "frontend/application/app/wiki/[slug]/page.tsx", + "source_location": "L11", "_callable": true, "_origin": "ast", - "id": "frontend_application_app_trust_seals_page_trustsealspage", + "id": "frontend_application_app_wiki_slug_page_getwikiterm", "community": 149, - "community_name": "trust-seals/page.tsx", - "norm_label": "trustsealspage()" + "community_name": "wiki/[slug]/page.tsx", + "norm_label": "getwikiterm()" }, { - "label": "EnamadBadge()", + "label": "WikiTermPage()", "file_type": "code", - "source_file": "frontend/application/components/EnamadBadge.tsx", - "source_location": "L9", + "source_file": "frontend/application/app/wiki/[slug]/page.tsx", + "source_location": "L78", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_enamadbadge_enamadbadge", + "id": "frontend_application_app_wiki_slug_page_wikitermpage", "community": 149, - "community_name": "trust-seals/page.tsx", - "norm_label": "enamadbadge()" + "community_name": "wiki/[slug]/page.tsx", + "norm_label": "wikitermpage()" + }, + { + "label": "generateMedicalWebPageSchema()", + "file_type": "code", + "source_file": "frontend/application/lib/schema.ts", + "source_location": "L159", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_lib_schema_generatemedicalwebpageschema", + "community": 149, + "community_name": "wiki/[slug]/page.tsx", + "norm_label": "generatemedicalwebpageschema()" }, { "label": "Layout()", @@ -8656,6 +8497,18 @@ "community_name": "src/services/api.ts", "norm_label": "b2bmanager()" }, + { + "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": 15, + "community_name": "src/services/api.ts", + "norm_label": "dashboard()" + }, { "label": "Login()", "file_type": "code", @@ -8668,18 +8521,6 @@ "community_name": "src/services/api.ts", "norm_label": "login()" }, - { - "label": "SeoSettingsPage()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", - "source_location": "L11", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_seosettingspage_seosettingspage", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "seosettingspage()" - }, { "label": "SmartAdvisorManager()", "file_type": "code", @@ -8729,148 +8570,64 @@ "norm_label": "processqueue()" }, { - "label": ".configure()", + "label": ".constructor()", "file_type": "code", - "source_file": "backend/src/app.module.ts", - "source_location": "L92", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L66", "_callable": true, "_origin": "ast", - "id": "backend_src_app_module_appmodule_configure", + "id": "backend_src_admin_admin_service_adminservice_constructor", "community": 152, - "community_name": "auth.service.ts", - "norm_label": ".configure()" + "community_name": "RevalidationService", + "norm_label": ".constructor()" }, { - "label": ".adminLogin()", + "label": ".constructor()", "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L263", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L9", "_callable": true, "_origin": "ast", - "id": "backend_src_auth_auth_service_authservice_adminlogin", + "id": "backend_src_admin_blogs_service_blogsservice_constructor", "community": 152, - "community_name": "auth.service.ts", - "norm_label": ".adminlogin()" + "community_name": "RevalidationService", + "norm_label": ".constructor()" }, { - "label": ".login()", + "label": ".frontendUrl()", "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L222", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_authservice_login", - "community": 152, - "community_name": "auth.service.ts", - "norm_label": ".login()" - }, - { - "label": ".refresh()", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L319", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_authservice_refresh", - "community": 152, - "community_name": "auth.service.ts", - "norm_label": ".refresh()" - }, - { - "label": ".register()", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L167", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_authservice_register", - "community": 152, - "community_name": "auth.service.ts", - "norm_label": ".register()" - }, - { - "label": ".sendOtp()", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L45", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_authservice_sendotp", - "community": 152, - "community_name": "auth.service.ts", - "norm_label": ".sendotp()" - }, - { - "label": ".verifyOtp()", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L126", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_authservice_verifyotp", - "community": 152, - "community_name": "auth.service.ts", - "norm_label": ".verifyotp()" - }, - { - "label": ".incrementRequestCount()", - "file_type": "code", - "source_file": "backend/src/common/metrics.controller.ts", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_metrics_controller_metricscontroller_incrementrequestcount", - "community": 152, - "community_name": "auth.service.ts", - "norm_label": ".incrementrequestcount()" - }, - { - "label": "normalizeMobile()", - "file_type": "code", - "source_file": "backend/src/common/utils/phone.utils.ts", + "source_file": "backend/src/common/revalidation/revalidation.service.ts", "source_location": "L7", "_callable": true, "_origin": "ast", - "id": "backend_src_common_utils_phone_utils_normalizemobile", + "id": "backend_src_common_revalidation_revalidation_service_revalidationservice_frontendurl", "community": 152, - "community_name": "auth.service.ts", - "norm_label": "normalizemobile()" + "community_name": "RevalidationService", + "norm_label": ".frontendurl()" }, { - "label": ".del()", + "label": ".secret()", "file_type": "code", - "source_file": "backend/src/redis/redis.service.ts", - "source_location": "L31", + "source_file": "backend/src/common/revalidation/revalidation.service.ts", + "source_location": "L15", "_callable": true, "_origin": "ast", - "id": "backend_src_redis_redis_service_redisservice_del", + "id": "backend_src_common_revalidation_revalidation_service_revalidationservice_secret", "community": 152, - "community_name": "auth.service.ts", - "norm_label": ".del()" + "community_name": "RevalidationService", + "norm_label": ".secret()" }, { - "label": ".get()", + "label": ".constructor()", "file_type": "code", - "source_file": "backend/src/redis/redis.service.ts", - "source_location": "L27", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L9", "_callable": true, "_origin": "ast", - "id": "backend_src_redis_redis_service_redisservice_get", + "id": "backend_src_products_products_service_productsservice_constructor", "community": 152, - "community_name": "auth.service.ts", - "norm_label": ".get()" - }, - { - "label": ".incr()", - "file_type": "code", - "source_file": "backend/src/redis/redis.service.ts", - "source_location": "L35", - "_callable": true, - "_origin": "ast", - "id": "backend_src_redis_redis_service_redisservice_incr", - "community": 152, - "community_name": "auth.service.ts", - "norm_label": ".incr()" + "community_name": "RevalidationService", + "norm_label": ".constructor()" }, { "label": ".onModuleDestroy()", @@ -8881,7 +8638,7 @@ "_origin": "ast", "id": "backend_src_redis_redis_service_redisservice_onmoduledestroy", "community": 152, - "community_name": "auth.service.ts", + "community_name": "RevalidationService", "norm_label": ".onmoduledestroy()" }, { @@ -8893,7 +8650,7 @@ "_origin": "ast", "id": "backend_src_redis_redis_service_redisservice_onmoduleinit", "community": 152, - "community_name": "auth.service.ts", + "community_name": "RevalidationService", "norm_label": ".onmoduleinit()" }, { @@ -8905,21 +8662,9 @@ "_origin": "ast", "id": "backend_src_redis_redis_service_redisservice_set", "community": 152, - "community_name": "auth.service.ts", + "community_name": "RevalidationService", "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": 152, - "community_name": "auth.service.ts", - "norm_label": ".ttl()" - }, { "label": "runSeoBackfill()", "file_type": "code", @@ -9032,7 +8777,7 @@ "label": "GET()", "file_type": "code", "source_file": "frontend/application/app/api/media/[...path]/route.ts", - "source_location": "L28", + "source_location": "L53", "_callable": true, "_origin": "ast", "id": "frontend_application_app_api_media_path_route_get", @@ -9052,11 +8797,23 @@ "community_name": "media/[...path]/route.ts", "norm_label": "getcandidateurls()" }, + { + "label": "getMimeType()", + "file_type": "code", + "source_file": "frontend/application/app/api/media/[...path]/route.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_api_media_path_route_getmimetype", + "community": 158, + "community_name": "media/[...path]/route.ts", + "norm_label": "getmimetype()" + }, { "label": "HEAD()", "file_type": "code", "source_file": "frontend/application/app/api/media/[...path]/route.ts", - "source_location": "L105", + "source_location": "L151", "_callable": true, "_origin": "ast", "id": "frontend_application_app_api_media_path_route_head", @@ -9416,7 +9173,7 @@ "label": "GET()", "file_type": "code", "source_file": "frontend/application/app/api/uploads/[...path]/route.ts", - "source_location": "L30", + "source_location": "L55", "_callable": true, "_origin": "ast", "id": "frontend_application_app_api_uploads_path_route_get", @@ -9436,11 +9193,23 @@ "community_name": "uploads/[...path]/route.ts", "norm_label": "getcandidateurls()" }, + { + "label": "getMimeType()", + "file_type": "code", + "source_file": "frontend/application/app/api/uploads/[...path]/route.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_api_uploads_path_route_getmimetype", + "community": 176, + "community_name": "uploads/[...path]/route.ts", + "norm_label": "getmimetype()" + }, { "label": "HEAD()", "file_type": "code", "source_file": "frontend/application/app/api/uploads/[...path]/route.ts", - "source_location": "L108", + "source_location": "L153", "_callable": true, "_origin": "ast", "id": "frontend_application_app_api_uploads_path_route_head", @@ -9476,7 +9245,7 @@ "label": "Home()", "file_type": "code", "source_file": "frontend/application/app/page.tsx", - "source_location": "L32", + "source_location": "L35", "_callable": true, "_origin": "ast", "id": "frontend_application_app_page_home", @@ -9520,6 +9289,42 @@ "community_name": "JwtAuthGuard", "norm_label": ".constructor()" }, + { + "label": "generateOpenApi()", + "file_type": "code", + "source_file": "backend/scripts/generate-openapi.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi_generateopenapi", + "community": 184, + "community_name": "AppModule", + "norm_label": "generateopenapi()" + }, + { + "label": ".configure()", + "file_type": "code", + "source_file": "backend/src/app.module.ts", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "id": "backend_src_app_module_appmodule_configure", + "community": 184, + "community_name": "AppModule", + "norm_label": ".configure()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/app.module.ts", + "source_location": "L90", + "_callable": true, + "_origin": "ast", + "id": "backend_src_app_module_appmodule_constructor", + "community": 184, + "community_name": "AppModule", + "norm_label": ".constructor()" + }, { "label": ".constructor()", "file_type": "code", @@ -9529,7 +9334,7 @@ "_origin": "ast", "id": "backend_src_common_metrics_controller_metricscontroller_constructor", "community": 184, - "community_name": "MetricsController", + "community_name": "AppModule", "norm_label": ".constructor()" }, { @@ -9541,68 +9346,32 @@ "_origin": "ast", "id": "backend_src_common_metrics_controller_metricscontroller_getmetrics", "community": 184, - "community_name": "MetricsController", + "community_name": "AppModule", "norm_label": ".getmetrics()" }, { - "label": ".componentDidCatch()", + "label": ".incrementRequestCount()", "file_type": "code", - "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", - "source_location": "L36", + "source_file": "backend/src/common/metrics.controller.ts", + "source_location": "L13", "_callable": true, "_origin": "ast", - "id": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_componentdidcatch", - "community": 185, - "community_name": "RouteErrorBoundary", - "norm_label": ".componentdidcatch()" + "id": "backend_src_common_metrics_controller_metricscontroller_incrementrequestcount", + "community": 184, + "community_name": "AppModule", + "norm_label": ".incrementrequestcount()" }, { - "label": ".getDerivedStateFromError()", + "label": ".incr()", "file_type": "code", - "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", - "source_location": "L22", + "source_file": "backend/src/redis/redis.service.ts", + "source_location": "L35", "_callable": true, "_origin": "ast", - "id": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_getderivedstatefromerror", - "community": 185, - "community_name": "RouteErrorBoundary", - "norm_label": ".getderivedstatefromerror()" - }, - { - "label": ".handleGoHome()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", - "source_location": "L57", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_handlegohome", - "community": 185, - "community_name": "RouteErrorBoundary", - "norm_label": ".handlegohome()" - }, - { - "label": ".handleReload()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", - "source_location": "L53", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_handlereload", - "community": 185, - "community_name": "RouteErrorBoundary", - "norm_label": ".handlereload()" - }, - { - "label": ".render()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", - "source_location": "L61", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_render", - "community": 185, - "community_name": "RouteErrorBoundary", - "norm_label": ".render()" + "id": "backend_src_redis_redis_service_redisservice_incr", + "community": 184, + "community_name": "AppModule", + "norm_label": ".incr()" }, { "label": "main()", @@ -9628,6 +9397,30 @@ "community_name": "seed-wiki.ts", "norm_label": "main()" }, + { + "label": ".updatePricingSettings()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L164", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_controller_admincontroller_updatepricingsettings", + "community": 19, + "community_name": "admin.controller.ts", + "norm_label": ".updatepricingsettings()" + }, + { + "label": ".updatePricingSettings()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L1372", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_service_adminservice_updatepricingsettings", + "community": 19, + "community_name": "admin.controller.ts", + "norm_label": ".updatepricingsettings()" + }, { "label": "ClientLayout()", "file_type": "code", @@ -9665,28 +9458,28 @@ "norm_label": "extractotpfromtext()" }, { - "label": "B2BPortal()", + "label": "BrandLogo()", "file_type": "code", - "source_file": "frontend/application/components/B2BPortal.tsx", - "source_location": "L23", + "source_file": "frontend/application/components/BrandLogo.tsx", + "source_location": "L14", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_b2bportal_b2bportal", + "id": "frontend_application_components_brandlogo_brandlogo", "community": 197, "community_name": "userStore.ts", - "norm_label": "b2bportal()" + "norm_label": "brandlogo()" }, { - "label": "CartDrawer()", + "label": "Footer()", "file_type": "code", - "source_file": "frontend/application/components/CartDrawer.tsx", - "source_location": "L16", + "source_file": "frontend/application/components/Footer.tsx", + "source_location": "L11", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_cartdrawer_cartdrawer", + "id": "frontend_application_components_footer_footer", "community": 197, "community_name": "userStore.ts", - "norm_label": "cartdrawer()" + "norm_label": "footer()" }, { "label": "Header()", @@ -9724,6 +9517,18 @@ "community_name": "userStore.ts", "norm_label": "loginmodal()" }, + { + "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": 197, + "community_name": "userStore.ts", + "norm_label": "maintenancepage()" + }, { "label": "NavigationProgressBar()", "file_type": "code", @@ -9784,18 +9589,6 @@ "community_name": "userStore.ts", "norm_label": "tickerbanner()" }, - { - "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": 197, - "community_name": "userStore.ts", - "norm_label": "userdashboard()" - }, { "label": "useNetworkStatus()", "file_type": "code", @@ -9808,6 +9601,114 @@ "community_name": "userStore.ts", "norm_label": "usenetworkstatus()" }, + { + "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": 197, + "community_name": "userStore.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": 197, + "community_name": "userStore.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": 197, + "community_name": "userStore.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": 197, + "community_name": "userStore.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": 197, + "community_name": "userStore.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": 197, + "community_name": "userStore.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": 197, + "community_name": "userStore.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": 197, + "community_name": "userStore.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": 197, + "community_name": "userStore.ts", + "norm_label": ".verifyotp()" + }, { "label": "toEnglishDigits()", "file_type": "code", @@ -9824,12 +9725,12 @@ "label": ".getAdminTransactions()", "file_type": "code", "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L685", + "source_location": "L818", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_service_paymentservice_getadmintransactions", "community": 2, - "community_name": "AdminTransactionFilterDto", + "community_name": "payment.service.ts", "norm_label": ".getadmintransactions()" }, { @@ -10000,294 +9901,6 @@ "community_name": "seed-custom.ts", "norm_label": "main()" }, - { - "label": ".addPattern()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L477", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_addpattern", - "community": 21, - "community_name": ".getSmsConfig", - "norm_label": ".addpattern()" - }, - { - "label": ".editPattern()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L556", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_editpattern", - "community": 21, - "community_name": ".getSmsConfig", - "norm_label": ".editpattern()" - }, - { - "label": ".getPatterns()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L370", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_getpatterns", - "community": 21, - "community_name": ".getSmsConfig", - "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": 21, - "community_name": ".getSmsConfig", - "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": 21, - "community_name": ".getSmsConfig", - "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": 21, - "community_name": ".getSmsConfig", - "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": 21, - "community_name": ".getSmsConfig", - "norm_label": ".recordlog()" - }, - { - "label": ".saveLocalPattern()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L611", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_savelocalpattern", - "community": 21, - "community_name": ".getSmsConfig", - "norm_label": ".savelocalpattern()" - }, - { - "label": ".sendB2bNotification()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L981", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_sendb2bnotification", - "community": 21, - "community_name": ".getSmsConfig", - "norm_label": ".sendb2bnotification()" - }, - { - "label": ".sendOtp()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L932", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_sendotp", - "community": 21, - "community_name": ".getSmsConfig", - "norm_label": ".sendotp()" - }, - { - "label": ".sendPatternSms()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L679", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_sendpatternsms", - "community": 21, - "community_name": ".getSmsConfig", - "norm_label": ".sendpatternsms()" - }, - { - "label": ".sendPetCareReminder()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L997", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_sendpetcarereminder", - "community": 21, - "community_name": ".getSmsConfig", - "norm_label": ".sendpetcarereminder()" - }, - { - "label": ".sendShippingNotification()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L964", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_sendshippingnotification", - "community": 21, - "community_name": ".getSmsConfig", - "norm_label": ".sendshippingnotification()" - }, - { - "label": ".sendSms()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L1015", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_sendsms", - "community": 21, - "community_name": ".getSmsConfig", - "norm_label": ".sendsms()" - }, - { - "label": ".testSms()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L807", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_testsms", - "community": 21, - "community_name": ".getSmsConfig", - "norm_label": ".testsms()" - }, - { - "label": ".updateLocalPattern()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L639", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_updatelocalpattern", - "community": 21, - "community_name": ".getSmsConfig", - "norm_label": ".updatelocalpattern()" - }, - { - "label": ".checkAndSendRefillReminders()", - "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L400", - "_callable": true, - "_origin": "ast", - "id": "backend_src_orders_orders_service_ordersservice_checkandsendrefillreminders", - "community": 21, - "community_name": ".getSmsConfig", - "norm_label": ".checkandsendrefillreminders()" - }, - { - "label": ".updateStatus()", - "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L322", - "_callable": true, - "_origin": "ast", - "id": "backend_src_orders_orders_service_ordersservice_updatestatus", - "community": 21, - "community_name": ".getSmsConfig", - "norm_label": ".updatestatus()" - }, - { - "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": 21, - "community_name": ".getSmsConfig", - "norm_label": ".review()" - }, - { - "label": ".addPattern()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L630", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_addpattern", - "community": 21, - "community_name": ".getSmsConfig", - "norm_label": ".addpattern()" - }, - { - "label": ".editPattern()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L634", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_editpattern", - "community": 21, - "community_name": ".getSmsConfig", - "norm_label": ".editpattern()" - }, - { - "label": ".getPatterns()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L626", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_getpatterns", - "community": 21, - "community_name": ".getSmsConfig", - "norm_label": ".getpatterns()" - }, - { - "label": ".getSmsSettings()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L605", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_getsmssettings", - "community": 21, - "community_name": ".getSmsConfig", - "norm_label": ".getsmssettings()" - }, - { - "label": ".testSms()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L622", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_testsms", - "community": 21, - "community_name": ".getSmsConfig", - "norm_label": ".testsms()" - }, { "label": "FormField()", "file_type": "code", @@ -10301,124 +9914,100 @@ "norm_label": "formfield()" }, { - "label": ".constructor()", + "label": ".createProduct()", "file_type": "code", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L32", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L133", "_callable": true, "_origin": "ast", - "id": "backend_src_blogs_blogs_controller_blogscontroller_constructor", + "id": "backend_src_admin_admin_controller_admincontroller_createproduct", "community": 22, - "community_name": "BlogsService", - "norm_label": ".constructor()" + "community_name": "ProductDto", + "norm_label": ".createproduct()" }, { - "label": ".addComment()", + "label": ".updateProduct()", "file_type": "code", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L358", - "_callable": true, - "_origin": "ast", - "id": "backend_src_blogs_blogs_service_blogsservice_addcomment", - "community": 22, - "community_name": "BlogsService", - "norm_label": ".addcomment()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "id": "backend_src_blogs_blogs_service_blogsservice_constructor", - "community": 22, - "community_name": "BlogsService", - "norm_label": ".constructor()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L16", - "_callable": true, - "_origin": "ast", - "id": "backend_src_blogs_blogs_service_blogsservice_findall", - "community": 22, - "community_name": "BlogsService", - "norm_label": ".findall()" - }, - { - "label": ".findCommentsBySlug()", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L345", - "_callable": true, - "_origin": "ast", - "id": "backend_src_blogs_blogs_service_blogsservice_findcommentsbyslug", - "community": 22, - "community_name": "BlogsService", - "norm_label": ".findcommentsbyslug()" - }, - { - "label": ".findHomepage()", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L99", - "_callable": true, - "_origin": "ast", - "id": "backend_src_blogs_blogs_service_blogsservice_findhomepage", - "community": 22, - "community_name": "BlogsService", - "norm_label": ".findhomepage()" - }, - { - "label": ".findOneBySlug()", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.service.ts", + "source_file": "backend/src/admin/admin.controller.ts", "source_location": "L140", "_callable": true, "_origin": "ast", - "id": "backend_src_blogs_blogs_service_blogsservice_findonebyslug", + "id": "backend_src_admin_admin_controller_admincontroller_updateproduct", "community": 22, - "community_name": "BlogsService", - "norm_label": ".findonebyslug()" + "community_name": "ProductDto", + "norm_label": ".updateproduct()" }, { - "label": ".getCategories()", + "label": ".createProduct()", "file_type": "code", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L302", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L442", "_callable": true, "_origin": "ast", - "id": "backend_src_blogs_blogs_service_blogsservice_getcategories", + "id": "backend_src_admin_admin_service_adminservice_createproduct", "community": 22, - "community_name": "BlogsService", - "norm_label": ".getcategories()" + "community_name": "ProductDto", + "norm_label": ".createproduct()" }, { - "label": ".getTags()", + "label": ".updateProduct()", "file_type": "code", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L316", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L575", "_callable": true, "_origin": "ast", - "id": "backend_src_blogs_blogs_service_blogsservice_gettags", + "id": "backend_src_admin_admin_service_adminservice_updateproduct", "community": 22, - "community_name": "BlogsService", - "norm_label": ".gettags()" + "community_name": "ProductDto", + "norm_label": ".updateproduct()" }, { - "label": ".incrementView()", + "label": ".revalidatePath()", "file_type": "code", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L329", + "source_file": "backend/src/common/revalidation/revalidation.service.ts", + "source_location": "L50", "_callable": true, "_origin": "ast", - "id": "backend_src_blogs_blogs_service_blogsservice_incrementview", + "id": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatepath", "community": 22, - "community_name": "BlogsService", - "norm_label": ".incrementview()" + "community_name": "ProductDto", + "norm_label": ".revalidatepath()" + }, + { + "label": ".revalidateProduct()", + "file_type": "code", + "source_file": "backend/src/common/revalidation/revalidation.service.ts", + "source_location": "L79", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateproduct", + "community": 22, + "community_name": "ProductDto", + "norm_label": ".revalidateproduct()" + }, + { + "label": ".revalidateSettings()", + "file_type": "code", + "source_file": "backend/src/common/revalidation/revalidation.service.ts", + "source_location": "L115", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatesettings", + "community": 22, + "community_name": "ProductDto", + "norm_label": ".revalidatesettings()" + }, + { + "label": ".revalidateTag()", + "file_type": "code", + "source_file": "backend/src/common/revalidation/revalidation.service.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatetag", + "community": 22, + "community_name": "ProductDto", + "norm_label": ".revalidatetag()" }, { "label": ".constructor()", @@ -10624,30 +10213,6 @@ "community_name": "MenuService", "norm_label": ".update()" }, - { - "label": "Reviews()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", - "source_location": "L79", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reviews_reviews", - "community": 233, - "community_name": "Reviews.tsx", - "norm_label": "reviews()" - }, - { - "label": "toPersianDigits()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", - "source_location": "L73", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reviews_topersiandigits", - "community": 233, - "community_name": "Reviews.tsx", - "norm_label": "topersiandigits()" - }, { "label": "robots()", "file_type": "code", @@ -10936,6 +10501,18 @@ "community_name": "ZibalService", "norm_label": ".verifypayment()" }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_controller_paymentcontroller_constructor", + "community": 297, + "community_name": "ZibalEBankService", + "norm_label": ".constructor()" + }, { "label": ".cancelCheckout()", "file_type": "code", @@ -11176,42 +10753,6 @@ "community_name": ".initiateOrderPayment", "norm_label": ".verifypaymentdirect()" }, - { - "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": 298, - "community_name": ".initiateOrderPayment", - "norm_label": ".initiateorderpayment()" - }, - { - "label": ".initiateWalletTopup()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L139", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_initiatewallettopup", - "community": 298, - "community_name": ".initiateOrderPayment", - "norm_label": ".initiatewallettopup()" - }, - { - "label": ".getBackendUrl()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L130", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_getbackendurl", - "community": 298, - "community_name": ".initiateOrderPayment", - "norm_label": ".getbackendurl()" - }, { "label": ".getFrontendUrl()", "file_type": "code", @@ -11224,18 +10765,6 @@ "community_name": ".initiateOrderPayment", "norm_label": ".getfrontendurl()" }, - { - "label": ".getStartUrl()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L211", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_getstarturl", - "community": 298, - "community_name": ".initiateOrderPayment", - "norm_label": ".getstarturl()" - }, { "label": "buildTorobProductSpec()", "file_type": "code", @@ -11416,6 +10945,42 @@ "community_name": "productService.ts", "norm_label": "ingredientwiki()" }, + { + "label": "PodcastInlinePlayer()", + "file_type": "code", + "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_podcastinlineplayer_podcastinlineplayer", + "community": 3, + "community_name": "productService.ts", + "norm_label": "podcastinlineplayer()" + }, + { + "label": "handleClickOutside()", + "file_type": "code", + "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_podcastinlineplayer_podcastinlineplayer_handleclickoutside", + "community": 3, + "community_name": "productService.ts", + "norm_label": "handleclickoutside()" + }, + { + "label": "getMediaUrl()", + "file_type": "code", + "source_file": "frontend/application/lib/media.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_lib_media_getmediaurl", + "community": 3, + "community_name": "productService.ts", + "norm_label": "getmediaurl()" + }, { "label": ".constructor()", "file_type": "code", @@ -11432,7 +10997,7 @@ "label": ".getActiveFilters()", "file_type": "code", "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L314", + "source_location": "L293", "_callable": true, "_origin": "ast", "id": "frontend_application_lib_services_productservice_productservice_getactivefilters", @@ -11444,7 +11009,7 @@ "label": ".getFeaturedProducts()", "file_type": "code", "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L284", + "source_location": "L277", "_callable": true, "_origin": "ast", "id": "frontend_application_lib_services_productservice_productservice_getfeaturedproducts", @@ -11468,7 +11033,7 @@ "label": ".getNavigationFilters()", "file_type": "code", "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L328", + "source_location": "L307", "_callable": true, "_origin": "ast", "id": "frontend_application_lib_services_productservice_productservice_getnavigationfilters", @@ -11480,7 +11045,7 @@ "label": ".getProductById()", "file_type": "code", "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L256", + "source_location": "L249", "_callable": true, "_origin": "ast", "id": "frontend_application_lib_services_productservice_productservice_getproductbyid", @@ -11492,7 +11057,7 @@ "label": ".getProductBySlug()", "file_type": "code", "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L270", + "source_location": "L263", "_callable": true, "_origin": "ast", "id": "frontend_application_lib_services_productservice_productservice_getproductbyslug", @@ -11504,7 +11069,7 @@ "label": ".getProducts()", "file_type": "code", "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L217", + "source_location": "L210", "_callable": true, "_origin": "ast", "id": "frontend_application_lib_services_productservice_productservice_getproducts", @@ -11528,7 +11093,7 @@ "label": ".serverFetch()", "file_type": "code", "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L206", + "source_location": "L199", "_callable": true, "_origin": "ast", "id": "frontend_application_lib_services_productservice_productservice_serverfetch", @@ -11609,28 +11174,76 @@ "norm_label": "suspensefallback()" }, { - "label": "ContactSubmissions()", + "label": ".componentDidCatch()", "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", - "source_location": "L29", + "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", + "source_location": "L36", "_callable": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_contactsubmissions_contactsubmissions", + "id": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_componentdidcatch", "community": 32, "community_name": "adminRoutes.tsx", - "norm_label": "contactsubmissions()" + "norm_label": ".componentdidcatch()" }, { - "label": "Dashboard()", + "label": ".getDerivedStateFromError()", "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Dashboard.tsx", - "source_location": "L20", + "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", + "source_location": "L22", "_callable": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_dashboard_dashboard", + "id": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_getderivedstatefromerror", "community": 32, "community_name": "adminRoutes.tsx", - "norm_label": "dashboard()" + "norm_label": ".getderivedstatefromerror()" + }, + { + "label": ".handleGoHome()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_handlegohome", + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": ".handlegohome()" + }, + { + "label": ".handleReload()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_handlereload", + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": ".handlereload()" + }, + { + "label": ".render()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_render", + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": ".render()" + }, + { + "label": "CMS()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/CMS.tsx", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_cms_cms", + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "cms()" }, { "label": "PaymentGatewaysPage()", @@ -11656,18 +11269,6 @@ "community_name": "adminRoutes.tsx", "norm_label": "settings()" }, - { - "label": "ShippingSettingsPage()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/ShippingSettingsPage.tsx", - "source_location": "L11", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_shippingsettingspage_shippingsettingspage", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "shippingsettingspage()" - }, { "label": "SslSettingsPage()", "file_type": "code", @@ -11680,18 +11281,6 @@ "community_name": "adminRoutes.tsx", "norm_label": "sslsettingspage()" }, - { - "label": "Tickets()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", - "source_location": "L60", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_tickets_tickets", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "tickets()" - }, { "label": "lazyWithRetry()", "file_type": "code", @@ -11804,7 +11393,7 @@ "label": ".approveWholesaleRequest()", "file_type": "code", "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L63", + "source_location": "L60", "_callable": true, "_origin": "ast", "id": "backend_src_wholesale_wholesale_service_wholesaleservice_approvewholesalerequest", @@ -11812,11 +11401,23 @@ "community_name": "WholesaleApplyDto", "norm_label": ".approvewholesalerequest()" }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "id": "backend_src_wholesale_wholesale_service_wholesaleservice_constructor", + "community": 33, + "community_name": "WholesaleApplyDto", + "norm_label": ".constructor()" + }, { "label": ".getWholesaleRequests()", "file_type": "code", "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L54", + "source_location": "L51", "_callable": true, "_origin": "ast", "id": "backend_src_wholesale_wholesale_service_wholesaleservice_getwholesalerequests", @@ -11828,7 +11429,7 @@ "label": ".rejectWholesaleRequest()", "file_type": "code", "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L77", + "source_location": "L74", "_callable": true, "_origin": "ast", "id": "backend_src_wholesale_wholesale_service_wholesaleservice_rejectwholesalerequest", @@ -12076,11 +11677,23 @@ "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": 35, + "community_name": "ContactService", + "norm_label": ".constructor()" + }, { "label": ".getAllSubmissions()", "file_type": "code", "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L125", + "source_location": "L115", "_callable": true, "_origin": "ast", "id": "backend_src_contact_contact_service_contactservice_getallsubmissions", @@ -12092,7 +11705,7 @@ "label": ".getContactInfo()", "file_type": "code", "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L77", + "source_location": "L67", "_callable": true, "_origin": "ast", "id": "backend_src_contact_contact_service_contactservice_getcontactinfo", @@ -12116,7 +11729,7 @@ "label": ".updateContactInfoItems()", "file_type": "code", "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L159", + "source_location": "L149", "_callable": true, "_origin": "ast", "id": "backend_src_contact_contact_service_contactservice_updatecontactinfoitems", @@ -12128,7 +11741,7 @@ "label": ".updateSubmissionStatus()", "file_type": "code", "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L148", + "source_location": "L138", "_callable": true, "_origin": "ast", "id": "backend_src_contact_contact_service_contactservice_updatesubmissionstatus", @@ -12508,18 +12121,6 @@ "community_name": "CategoriesController", "norm_label": ".updatecategory()" }, - { - "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": 4, - "community_name": "PetProfile.tsx", - "norm_label": "successpage()" - }, { "label": "SmartAdvisorPage()", "file_type": "code", @@ -12529,44 +12130,44 @@ "_origin": "ast", "id": "frontend_application_app_smart_advisor_page_smartadvisorpage", "community": 4, - "community_name": "PetProfile.tsx", + "community_name": "UserDashboard.tsx", "norm_label": "smartadvisorpage()" }, { - "label": "FeaturedProducts()", + "label": "OrderDetailsModal()", "file_type": "code", - "source_file": "frontend/application/components/FeaturedProducts.tsx", - "source_location": "L157", + "source_file": "frontend/application/components/OrderDetailsModal.tsx", + "source_location": "L37", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_featuredproducts_featuredproducts", + "id": "frontend_application_components_orderdetailsmodal_orderdetailsmodal", "community": 4, - "community_name": "PetProfile.tsx", - "norm_label": "featuredproducts()" + "community_name": "UserDashboard.tsx", + "norm_label": "orderdetailsmodal()" }, { - "label": "ProductCard()", + "label": "getStatusIcon()", "file_type": "code", - "source_file": "frontend/application/components/FeaturedProducts.tsx", - "source_location": "L16", + "source_file": "frontend/application/components/OrderDetailsModal.tsx", + "source_location": "L282", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_featuredproducts_productcard", + "id": "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatusicon", "community": 4, - "community_name": "PetProfile.tsx", - "norm_label": "productcard()" + "community_name": "UserDashboard.tsx", + "norm_label": "getstatusicon()" }, { - "label": "OrderSuccess()", + "label": "getStatusLabel()", "file_type": "code", - "source_file": "frontend/application/components/OrderSuccess.tsx", - "source_location": "L17", + "source_file": "frontend/application/components/OrderDetailsModal.tsx", + "source_location": "L302", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_ordersuccess_ordersuccess", + "id": "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatuslabel", "community": 4, - "community_name": "PetProfile.tsx", - "norm_label": "ordersuccess()" + "community_name": "UserDashboard.tsx", + "norm_label": "getstatuslabel()" }, { "label": "PetProfile()", @@ -12577,7 +12178,7 @@ "_origin": "ast", "id": "frontend_application_components_petprofile_petprofile", "community": 4, - "community_name": "PetProfile.tsx", + "community_name": "UserDashboard.tsx", "norm_label": "petprofile()" }, { @@ -12589,7 +12190,7 @@ "_origin": "ast", "id": "frontend_application_components_searchresultspage_searchresultspage", "community": 4, - "community_name": "PetProfile.tsx", + "community_name": "UserDashboard.tsx", "norm_label": "searchresultspage()" }, { @@ -12601,7 +12202,7 @@ "_origin": "ast", "id": "frontend_application_components_smartadvisor_smartadvisor", "community": 4, - "community_name": "PetProfile.tsx", + "community_name": "UserDashboard.tsx", "norm_label": "smartadvisor()" }, { @@ -13333,21 +12934,9 @@ "_origin": "ast", "id": "backend_src_auth_auth_controller_authcontroller_adminlogin", "community": 48, - "community_name": "auth.controller.ts", + "community_name": "AuthController", "norm_label": ".adminlogin()" }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L43", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_controller_authcontroller_constructor", - "community": 48, - "community_name": "auth.controller.ts", - "norm_label": ".constructor()" - }, { "label": ".login()", "file_type": "code", @@ -13357,7 +12946,7 @@ "_origin": "ast", "id": "backend_src_auth_auth_controller_authcontroller_login", "community": 48, - "community_name": "auth.controller.ts", + "community_name": "AuthController", "norm_label": ".login()" }, { @@ -13369,7 +12958,7 @@ "_origin": "ast", "id": "backend_src_auth_auth_controller_authcontroller_logout", "community": 48, - "community_name": "auth.controller.ts", + "community_name": "AuthController", "norm_label": ".logout()" }, { @@ -13381,7 +12970,7 @@ "_origin": "ast", "id": "backend_src_auth_auth_controller_authcontroller_refresh", "community": 48, - "community_name": "auth.controller.ts", + "community_name": "AuthController", "norm_label": ".refresh()" }, { @@ -13393,7 +12982,7 @@ "_origin": "ast", "id": "backend_src_auth_auth_controller_authcontroller_register", "community": 48, - "community_name": "auth.controller.ts", + "community_name": "AuthController", "norm_label": ".register()" }, { @@ -13405,7 +12994,7 @@ "_origin": "ast", "id": "backend_src_auth_auth_controller_authcontroller_sendotp", "community": 48, - "community_name": "auth.controller.ts", + "community_name": "AuthController", "norm_label": ".sendotp()" }, { @@ -13417,7 +13006,7 @@ "_origin": "ast", "id": "backend_src_auth_auth_controller_authcontroller_verifyotp", "community": 48, - "community_name": "auth.controller.ts", + "community_name": "AuthController", "norm_label": ".verifyotp()" }, { @@ -14149,7 +13738,7 @@ "_origin": "ast", "id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_constructor", "community": 52, - "community_name": "PrescriptionsController", + "community_name": "PrescriptionsService", "norm_label": ".constructor()" }, { @@ -14161,7 +13750,7 @@ "_origin": "ast", "id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_create", "community": 52, - "community_name": "PrescriptionsController", + "community_name": "PrescriptionsService", "norm_label": ".create()" }, { @@ -14173,7 +13762,7 @@ "_origin": "ast", "id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findall", "community": 52, - "community_name": "PrescriptionsController", + "community_name": "PrescriptionsService", "norm_label": ".findall()" }, { @@ -14185,7 +13774,7 @@ "_origin": "ast", "id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone", "community": 52, - "community_name": "PrescriptionsController", + "community_name": "PrescriptionsService", "norm_label": ".findone()" }, { @@ -14197,9 +13786,21 @@ "_origin": "ast", "id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review", "community": 52, - "community_name": "PrescriptionsController", + "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": 52, + "community_name": "PrescriptionsService", + "norm_label": ".constructor()" + }, { "label": ".create()", "file_type": "code", @@ -14209,7 +13810,7 @@ "_origin": "ast", "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_create", "community": 52, - "community_name": "PrescriptionsController", + "community_name": "PrescriptionsService", "norm_label": ".create()" }, { @@ -14221,7 +13822,7 @@ "_origin": "ast", "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_findall", "community": 52, - "community_name": "PrescriptionsController", + "community_name": "PrescriptionsService", "norm_label": ".findall()" }, { @@ -14233,9 +13834,21 @@ "_origin": "ast", "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_findone", "community": 52, - "community_name": "PrescriptionsController", + "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": 52, + "community_name": "PrescriptionsService", + "norm_label": ".review()" + }, { "label": ".constructor()", "file_type": "code", @@ -14357,28 +13970,28 @@ "norm_label": ".update()" }, { - "label": "ConfirmModal()", + "label": "Modal()", "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/ConfirmModal.tsx", - "source_location": "L15", + "source_file": "frontend/admin-panel/src/components/ui/Modal.tsx", + "source_location": "L28", "_callable": true, "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "id": "frontend_admin_panel_src_components_ui_modal_modal", "community": 54, "community_name": "Button.tsx", - "norm_label": "confirmmodal()" + "norm_label": "modal()" }, { - "label": "CMS()", + "label": "ContactSubmissions()", "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/CMS.tsx", - "source_location": "L23", + "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", + "source_location": "L29", "_callable": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_cms_cms", + "id": "frontend_admin_panel_src_pages_contactsubmissions_contactsubmissions", "community": 54, "community_name": "Button.tsx", - "norm_label": "cms()" + "norm_label": "contactsubmissions()" }, { "label": "FAQManager()", @@ -14405,16 +14018,52 @@ "norm_label": "menumanager()" }, { - "label": "WholesaleApplications()", + "label": "Reviews()", "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", - "source_location": "L18", + "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", + "source_location": "L79", "_callable": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_wholesaleapplications_wholesaleapplications", + "id": "frontend_admin_panel_src_pages_reviews_reviews", "community": 54, "community_name": "Button.tsx", - "norm_label": "wholesaleapplications()" + "norm_label": "reviews()" + }, + { + "label": "toPersianDigits()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_reviews_topersiandigits", + "community": 54, + "community_name": "Button.tsx", + "norm_label": "topersiandigits()" + }, + { + "label": "Tickets()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", + "source_location": "L60", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_tickets_tickets", + "community": 54, + "community_name": "Button.tsx", + "norm_label": "tickets()" + }, + { + "label": "ZibalPortalPage()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/ZibalPortalPage.tsx", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_zibalportalpage_zibalportalpage", + "community": 54, + "community_name": "Button.tsx", + "norm_label": "zibalportalpage()" }, { "label": "IconPickerModal()", @@ -14468,7 +14117,7 @@ "label": "createSeoSection()", "file_type": "code", "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L236", + "source_location": "L79", "_callable": true, "_origin": "ast", "id": "frontend_admin_panel_src_pages_uitexts_createseosection", @@ -14480,7 +14129,7 @@ "label": "UITexts()", "file_type": "code", "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L678", + "source_location": "L584", "_callable": true, "_origin": "ast", "id": "frontend_admin_panel_src_pages_uitexts_uitexts", @@ -14528,7 +14177,7 @@ "label": "getPaymentMethodLabel()", "file_type": "code", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L148", + "source_location": "L151", "_callable": true, "_origin": "ast", "id": "frontend_admin_panel_src_pages_orders_getpaymentmethodlabel", @@ -14540,7 +14189,7 @@ "label": "getPaymentStatusBadge()", "file_type": "code", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L118", + "source_location": "L121", "_callable": true, "_origin": "ast", "id": "frontend_admin_panel_src_pages_orders_getpaymentstatusbadge", @@ -14552,7 +14201,7 @@ "label": "getShippingMethodLabel()", "file_type": "code", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L135", + "source_location": "L138", "_callable": true, "_origin": "ast", "id": "frontend_admin_panel_src_pages_orders_getshippingmethodlabel", @@ -14564,7 +14213,7 @@ "label": "Orders()", "file_type": "code", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L169", + "source_location": "L172", "_callable": true, "_origin": "ast", "id": "frontend_admin_panel_src_pages_orders_orders", @@ -14576,7 +14225,7 @@ "label": "toPersianDigits()", "file_type": "code", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L163", + "source_location": "L166", "_callable": true, "_origin": "ast", "id": "frontend_admin_panel_src_pages_orders_topersiandigits", @@ -14585,124 +14234,136 @@ "norm_label": "topersiandigits()" }, { - "label": "BlogLoading()", + "label": ".constructor()", "file_type": "code", - "source_file": "frontend/application/app/blog/loading.tsx", - "source_location": "L4", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_blog_loading_blogloading", - "community": 58, - "community_name": "UserDashboard.tsx", - "norm_label": "blogloading()" - }, - { - "label": "GlobalLoading()", - "file_type": "code", - "source_file": "frontend/application/app/loading.tsx", - "source_location": "L4", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_loading_globalloading", - "community": 58, - "community_name": "UserDashboard.tsx", - "norm_label": "globalloading()" - }, - { - "label": "ShopLoading()", - "file_type": "code", - "source_file": "frontend/application/app/shop/loading.tsx", - "source_location": "L4", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_shop_loading_shoploading", - "community": 58, - "community_name": "UserDashboard.tsx", - "norm_label": "shoploading()" - }, - { - "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": 58, - "community_name": "UserDashboard.tsx", - "norm_label": "deleteconfirmmodal()" - }, - { - "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": 58, - "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": 58, - "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": 58, - "community_name": "UserDashboard.tsx", - "norm_label": "getstatuslabel()" - }, - { - "label": "OrderRowSkeleton()", - "file_type": "code", - "source_file": "frontend/application/components/Skeleton.tsx", - "source_location": "L70", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_skeleton_orderrowskeleton", - "community": 58, - "community_name": "UserDashboard.tsx", - "norm_label": "orderrowskeleton()" - }, - { - "label": "PetProfileSkeleton()", - "file_type": "code", - "source_file": "frontend/application/components/Skeleton.tsx", + "source_file": "backend/src/auth/auth.controller.ts", "source_location": "L43", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_skeleton_petprofileskeleton", + "id": "backend_src_auth_auth_controller_authcontroller_constructor", "community": 58, - "community_name": "UserDashboard.tsx", - "norm_label": "petprofileskeleton()" + "community_name": "AuthService", + "norm_label": ".constructor()" }, { - "label": "Skeleton()", + "label": ".adminLogin()", "file_type": "code", - "source_file": "frontend/application/components/Skeleton.tsx", - "source_location": "L8", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L263", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_skeleton_skeleton", + "id": "backend_src_auth_auth_service_authservice_adminlogin", "community": 58, - "community_name": "UserDashboard.tsx", - "norm_label": "skeleton()" + "community_name": "AuthService", + "norm_label": ".adminlogin()" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "id": "backend_src_auth_auth_service_authservice_constructor", + "community": 58, + "community_name": "AuthService", + "norm_label": ".constructor()" + }, + { + "label": ".login()", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L222", + "_callable": true, + "_origin": "ast", + "id": "backend_src_auth_auth_service_authservice_login", + "community": 58, + "community_name": "AuthService", + "norm_label": ".login()" + }, + { + "label": ".refresh()", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L319", + "_callable": true, + "_origin": "ast", + "id": "backend_src_auth_auth_service_authservice_refresh", + "community": 58, + "community_name": "AuthService", + "norm_label": ".refresh()" + }, + { + "label": ".register()", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L167", + "_callable": true, + "_origin": "ast", + "id": "backend_src_auth_auth_service_authservice_register", + "community": 58, + "community_name": "AuthService", + "norm_label": ".register()" + }, + { + "label": ".sendOtp()", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "backend_src_auth_auth_service_authservice_sendotp", + "community": 58, + "community_name": "AuthService", + "norm_label": ".sendotp()" + }, + { + "label": ".verifyOtp()", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L126", + "_callable": true, + "_origin": "ast", + "id": "backend_src_auth_auth_service_authservice_verifyotp", + "community": 58, + "community_name": "AuthService", + "norm_label": ".verifyotp()" + }, + { + "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": 58, + "community_name": "AuthService", + "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": 58, + "community_name": "AuthService", + "norm_label": ".del()" + }, + { + "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": 58, + "community_name": "AuthService", + "norm_label": ".ttl()" }, { "label": ".constructor()", @@ -14713,7 +14374,7 @@ "_origin": "ast", "id": "backend_src_tickets_tickets_controller_ticketscontroller_constructor", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": ".constructor()" }, { @@ -14725,7 +14386,7 @@ "_origin": "ast", "id": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": ".createticket()" }, { @@ -14737,7 +14398,7 @@ "_origin": "ast", "id": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": ".getadmintickets()" }, { @@ -14749,7 +14410,7 @@ "_origin": "ast", "id": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": ".getmytickets()" }, { @@ -14761,7 +14422,7 @@ "_origin": "ast", "id": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": ".getticketdetails()" }, { @@ -14773,7 +14434,7 @@ "_origin": "ast", "id": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": ".replyticket()" }, { @@ -14785,7 +14446,7 @@ "_origin": "ast", "id": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": ".updateticketstatus()" }, { @@ -14797,7 +14458,7 @@ "_origin": "ast", "id": "backend_src_tickets_tickets_service_ticketsservice_constructor", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": ".constructor()" }, { @@ -14809,7 +14470,7 @@ "_origin": "ast", "id": "backend_src_tickets_tickets_service_ticketsservice_createticket", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": ".createticket()" }, { @@ -14821,7 +14482,7 @@ "_origin": "ast", "id": "backend_src_tickets_tickets_service_ticketsservice_generateticketnumber", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": ".generateticketnumber()" }, { @@ -14833,7 +14494,7 @@ "_origin": "ast", "id": "backend_src_tickets_tickets_service_ticketsservice_getadmintickets", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": ".getadmintickets()" }, { @@ -14845,7 +14506,7 @@ "_origin": "ast", "id": "backend_src_tickets_tickets_service_ticketsservice_getticketdetails", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": ".getticketdetails()" }, { @@ -14857,7 +14518,7 @@ "_origin": "ast", "id": "backend_src_tickets_tickets_service_ticketsservice_getusertickets", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": ".getusertickets()" }, { @@ -14869,7 +14530,7 @@ "_origin": "ast", "id": "backend_src_tickets_tickets_service_ticketsservice_replytoticket", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": ".replytoticket()" }, { @@ -14881,14 +14542,38 @@ "_origin": "ast", "id": "backend_src_tickets_tickets_service_ticketsservice_updateticketstatus", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": ".updateticketstatus()" }, + { + "label": ".createUser()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_controller_admincontroller_createuser", + "community": 60, + "community_name": "CreateUserDto", + "norm_label": ".createuser()" + }, + { + "label": ".updateUser()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L74", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_admin_controller_admincontroller_updateuser", + "community": 60, + "community_name": "CreateUserDto", + "norm_label": ".updateuser()" + }, { "label": ".createUser()", "file_type": "code", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L217", + "source_location": "L220", "_callable": true, "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_createuser", @@ -14900,7 +14585,7 @@ "label": ".updateUser()", "file_type": "code", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L260", + "source_location": "L263", "_callable": true, "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_updateuser", @@ -14969,88 +14654,76 @@ "norm_label": "tooltip()" }, { - "label": ".constructor()", + "label": "VideoModalPlayer()", "file_type": "code", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L29", + "source_file": "frontend/application/components/VideoModalPlayer.tsx", + "source_location": "L40", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_wiki_controller_wikicontroller_constructor", + "id": "frontend_application_components_videomodalplayer_videomodalplayer", + "community": 61, + "community_name": "ProductPage.tsx", + "norm_label": "videomodalplayer()" + }, + { + "label": "handleClickOutside()", + "file_type": "code", + "source_file": "frontend/application/components/VideoModalPlayer.tsx", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_videomodalplayer_videomodalplayer_handleclickoutside", + "community": 61, + "community_name": "ProductPage.tsx", + "norm_label": "handleclickoutside()" + }, + { + "label": "buildTorobProductSpec()", + "file_type": "code", + "source_file": "backend/src/products/torob.controller.ts", + "source_location": "L64", + "_callable": true, + "_origin": "ast", + "id": "backend_src_products_torob_controller_buildtorobproductspec", "community": 62, - "community_name": "WikiService", - "norm_label": ".constructor()" + "community_name": "torob.controller.ts", + "norm_label": "buildtorobproductspec()" + }, + { + "label": "buildTorobProductTitle()", + "file_type": "code", + "source_file": "backend/src/products/torob.controller.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "backend_src_products_torob_controller_buildtorobproducttitle", + "community": 62, + "community_name": "torob.controller.ts", + "norm_label": "buildtorobproducttitle()" }, { "label": ".constructor()", "file_type": "code", - "source_file": "backend/src/admin/wiki.service.ts", - "source_location": "L13", + "source_file": "backend/src/products/torob.controller.ts", + "source_location": "L102", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_wiki_service_wikiservice_constructor", + "id": "backend_src_products_torob_controller_torobcontroller_constructor", "community": 62, - "community_name": "WikiService", + "community_name": "torob.controller.ts", "norm_label": ".constructor()" }, { - "label": ".createTerm()", + "label": ".getTorobProducts()", "file_type": "code", - "source_file": "backend/src/admin/wiki.service.ts", - "source_location": "L45", + "source_file": "backend/src/products/torob.controller.ts", + "source_location": "L108", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_wiki_service_wikiservice_createterm", + "id": "backend_src_products_torob_controller_torobcontroller_gettorobproducts", "community": 62, - "community_name": "WikiService", - "norm_label": ".createterm()" - }, - { - "label": ".deleteTerm()", - "file_type": "code", - "source_file": "backend/src/admin/wiki.service.ts", - "source_location": "L57", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_wiki_service_wikiservice_deleteterm", - "community": 62, - "community_name": "WikiService", - "norm_label": ".deleteterm()" - }, - { - "label": ".getTerms()", - "file_type": "code", - "source_file": "backend/src/admin/wiki.service.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_wiki_service_wikiservice_getterms", - "community": 62, - "community_name": "WikiService", - "norm_label": ".getterms()" - }, - { - "label": ".updateTerm()", - "file_type": "code", - "source_file": "backend/src/admin/wiki.service.ts", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_wiki_service_wikiservice_updateterm", - "community": 62, - "community_name": "WikiService", - "norm_label": ".updateterm()" - }, - { - "label": ".createProduct()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L439", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_createproduct", - "community": 65, - "community_name": "admin.service.ts", - "norm_label": ".createproduct()" + "community_name": "torob.controller.ts", + "norm_label": ".gettorobproducts()" }, { "label": "applyRounding()", @@ -15080,7 +14753,7 @@ "label": ".getCoupons()", "file_type": "code", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L234", + "source_location": "L237", "_callable": true, "_origin": "ast", "id": "backend_src_admin_admin_controller_admincontroller_getcoupons", @@ -15088,30 +14761,6 @@ "community_name": "AdminQueryDto", "norm_label": ".getcoupons()" }, - { - "label": ".getDashboardStats()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L39", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_getdashboardstats", - "community": 66, - "community_name": "AdminQueryDto", - "norm_label": ".getdashboardstats()" - }, - { - "label": ".getDoctors()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L272", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_getdoctors", - "community": 66, - "community_name": "AdminQueryDto", - "norm_label": ".getdoctors()" - }, { "label": ".getOrders()", "file_type": "code", @@ -15124,18 +14773,6 @@ "community_name": "AdminQueryDto", "norm_label": ".getorders()" }, - { - "label": ".getPricingSettings()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L157", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_getpricingsettings", - "community": 66, - "community_name": "AdminQueryDto", - "norm_label": ".getpricingsettings()" - }, { "label": ".getProducts()", "file_type": "code", @@ -15164,7 +14801,7 @@ "label": ".getCoupons()", "file_type": "code", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L907", + "source_location": "L1053", "_callable": true, "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_getcoupons", @@ -15172,35 +14809,11 @@ "community_name": "AdminQueryDto", "norm_label": ".getcoupons()" }, - { - "label": ".getDashboardStats()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L70", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_getdashboardstats", - "community": 66, - "community_name": "AdminQueryDto", - "norm_label": ".getdashboardstats()" - }, - { - "label": ".getDoctors()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1103", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_getdoctors", - "community": 66, - "community_name": "AdminQueryDto", - "norm_label": ".getdoctors()" - }, { "label": ".getOrders()", "file_type": "code", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L739", + "source_location": "L744", "_callable": true, "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_getorders", @@ -15212,7 +14825,7 @@ "label": ".getProducts()", "file_type": "code", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L351", + "source_location": "L354", "_callable": true, "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_getproducts", @@ -15224,7 +14837,7 @@ "label": ".getUsers()", "file_type": "code", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L114", + "source_location": "L117", "_callable": true, "_origin": "ast", "id": "backend_src_admin_admin_service_adminservice_getusers", @@ -15241,7 +14854,7 @@ "_origin": "ast", "id": "backend_src_admin_reports_controller_reportscontroller_constructor", "community": 67, - "community_name": "ReportsController", + "community_name": "admin.module.ts", "norm_label": ".constructor()" }, { @@ -15253,7 +14866,7 @@ "_origin": "ast", "id": "backend_src_admin_reports_controller_reportscontroller_getreports", "community": 67, - "community_name": "ReportsController", + "community_name": "admin.module.ts", "norm_label": ".getreports()" }, { @@ -15265,7 +14878,7 @@ "_origin": "ast", "id": "backend_src_admin_reports_service_reportsservice_constructor", "community": 67, - "community_name": "ReportsController", + "community_name": "admin.module.ts", "norm_label": ".constructor()" }, { @@ -15277,9 +14890,81 @@ "_origin": "ast", "id": "backend_src_admin_reports_service_reportsservice_getdashboardreports", "community": 67, - "community_name": "ReportsController", + "community_name": "admin.module.ts", "norm_label": ".getdashboardreports()" }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_wiki_service_wikiservice_constructor", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": ".constructor()" + }, + { + "label": ".createTerm()", + "file_type": "code", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_wiki_service_wikiservice_createterm", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": ".createterm()" + }, + { + "label": ".deleteTerm()", + "file_type": "code", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_wiki_service_wikiservice_deleteterm", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": ".deleteterm()" + }, + { + "label": ".getTerms()", + "file_type": "code", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_wiki_service_wikiservice_getterms", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": ".getterms()" + }, + { + "label": ".updateTerm()", + "file_type": "code", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_wiki_service_wikiservice_updateterm", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": ".updateterm()" + }, + { + "label": "HomeClient()", + "file_type": "code", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_homeclient_homeclient", + "community": 68, + "community_name": "useSettingsStore", + "norm_label": "homeclient()" + }, { "label": "B2BLandingClient()", "file_type": "code", @@ -15317,16 +15002,16 @@ "norm_label": "loadblogs()" }, { - "label": "BrandLogo()", + "label": "EnamadBadge()", "file_type": "code", - "source_file": "frontend/application/components/BrandLogo.tsx", - "source_location": "L14", + "source_file": "frontend/application/components/EnamadBadge.tsx", + "source_location": "L9", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_brandlogo_brandlogo", + "id": "frontend_application_components_enamadbadge_enamadbadge", "community": 68, "community_name": "useSettingsStore", - "norm_label": "brandlogo()" + "norm_label": "enamadbadge()" }, { "label": "FAQSection()", @@ -15353,22 +15038,34 @@ "norm_label": "loadfaqs()" }, { - "label": "Footer()", + "label": "FeaturedProducts()", "file_type": "code", - "source_file": "frontend/application/components/Footer.tsx", - "source_location": "L11", + "source_file": "frontend/application/components/FeaturedProducts.tsx", + "source_location": "L157", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_footer_footer", + "id": "frontend_application_components_featuredproducts_featuredproducts", "community": 68, "community_name": "useSettingsStore", - "norm_label": "footer()" + "norm_label": "featuredproducts()" + }, + { + "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": 68, + "community_name": "useSettingsStore", + "norm_label": "productcard()" }, { "label": "Hero()", "file_type": "code", "source_file": "frontend/application/components/Hero.tsx", - "source_location": "L41", + "source_location": "L34", "_callable": true, "_origin": "ast", "id": "frontend_application_components_hero_hero", @@ -15380,7 +15077,7 @@ "label": "StatCounter()", "file_type": "code", "source_file": "frontend/application/components/Hero.tsx", - "source_location": "L12", + "source_location": "L11", "_callable": true, "_origin": "ast", "id": "frontend_application_components_hero_statcounter", @@ -15389,16 +15086,16 @@ "norm_label": "statcounter()" }, { - "label": "MaintenancePage()", + "label": "SafeImage()", "file_type": "code", - "source_file": "frontend/application/components/MaintenancePage.tsx", - "source_location": "L7", + "source_file": "frontend/application/components/SafeImage.tsx", + "source_location": "L22", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_maintenancepage_maintenancepage", + "id": "frontend_application_components_safeimage_safeimage", "community": 68, "community_name": "useSettingsStore", - "norm_label": "maintenancepage()" + "norm_label": "safeimage()" }, { "label": "TestimonialsSection()", @@ -15424,6 +15121,18 @@ "community_name": "useSettingsStore", "norm_label": "loadtestimonials()" }, + { + "label": "VetGallery()", + "file_type": "code", + "source_file": "frontend/application/components/VetGallery.tsx", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_vetgallery_vetgallery", + "community": 68, + "community_name": "useSettingsStore", + "norm_label": "vetgallery()" + }, { "label": "getBaseURL()", "file_type": "code", @@ -15436,11 +15145,23 @@ "community_name": "useSettingsStore", "norm_label": "getbaseurl()" }, + { + "label": "normalizeVideo()", + "file_type": "code", + "source_file": "frontend/application/lib/services/videoService.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_lib_services_videoservice_normalizevideo", + "community": 68, + "community_name": "useSettingsStore", + "norm_label": "normalizevideo()" + }, { "label": "SmsSettingsPage()", "file_type": "code", "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L93", + "source_location": "L126", "_callable": true, "_origin": "ast", "id": "frontend_admin_panel_src_pages_smssettingspage_smssettingspage", @@ -15452,7 +15173,7 @@ "label": "toPersianDigits()", "file_type": "code", "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L87", + "source_location": "L120", "_callable": true, "_origin": "ast", "id": "frontend_admin_panel_src_pages_smssettingspage_topersiandigits", @@ -15664,6 +15385,54 @@ "community_name": "getPageMetadata", "norm_label": "shop()" }, + { + "label": "generateMetadata()", + "file_type": "code", + "source_file": "frontend/application/app/track/page.tsx", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_track_page_generatemetadata", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "generatemetadata()" + }, + { + "label": "TrackPage()", + "file_type": "code", + "source_file": "frontend/application/app/track/page.tsx", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_track_page_trackpage", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "trackpage()" + }, + { + "label": "generateMetadata()", + "file_type": "code", + "source_file": "frontend/application/app/trust-seals/page.tsx", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_trust_seals_page_generatemetadata", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "generatemetadata()" + }, + { + "label": "TrustSealsPage()", + "file_type": "code", + "source_file": "frontend/application/app/trust-seals/page.tsx", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_trust_seals_page_trustsealspage", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "trustsealspage()" + }, { "label": "generateMetadata()", "file_type": "code", @@ -15700,6 +15469,18 @@ "community_name": "getPageMetadata", "norm_label": "getpagemetadata()" }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "id": "backend_src_admin_wiki_controller_wikicontroller_constructor", + "community": 74, + "community_name": "WikiController", + "norm_label": ".constructor()" + }, { "label": ".createTerm()", "file_type": "code", @@ -16144,54 +15925,6 @@ "community_name": "ProductsService", "norm_label": ".updatedosageconfig()" }, - { - "label": "buildTorobProductSpec()", - "file_type": "code", - "source_file": "backend/src/products/torob.controller.ts", - "source_location": "L64", - "_callable": true, - "_origin": "ast", - "id": "backend_src_products_torob_controller_buildtorobproductspec", - "community": 76, - "community_name": "ProductsService", - "norm_label": "buildtorobproductspec()" - }, - { - "label": "buildTorobProductTitle()", - "file_type": "code", - "source_file": "backend/src/products/torob.controller.ts", - "source_location": "L5", - "_callable": true, - "_origin": "ast", - "id": "backend_src_products_torob_controller_buildtorobproducttitle", - "community": 76, - "community_name": "ProductsService", - "norm_label": "buildtorobproducttitle()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/products/torob.controller.ts", - "source_location": "L102", - "_callable": true, - "_origin": "ast", - "id": "backend_src_products_torob_controller_torobcontroller_constructor", - "community": 76, - "community_name": "ProductsService", - "norm_label": ".constructor()" - }, - { - "label": ".getTorobProducts()", - "file_type": "code", - "source_file": "backend/src/products/torob.controller.ts", - "source_location": "L108", - "_callable": true, - "_origin": "ast", - "id": "backend_src_products_torob_controller_torobcontroller_gettorobproducts", - "community": 76, - "community_name": "ProductsService", - "norm_label": ".gettorobproducts()" - }, { "label": ".constructor()", "file_type": "code", @@ -16288,76 +16021,340 @@ "community_name": "rss.xml/route.ts", "norm_label": "get()" }, + { + "label": ".addPattern()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L811", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_addpattern", + "community": 8, + "community_name": "SmsService", + "norm_label": ".addpattern()" + }, { "label": ".clearAllSmsLogs()", "file_type": "code", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L255", + "source_location": "L488", "_callable": true, "_origin": "ast", "id": "backend_src_common_services_sms_service_smsservice_clearallsmslogs", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".clearallsmslogs()" }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_constructor", + "community": 8, + "community_name": "SmsService", + "norm_label": ".constructor()" + }, { "label": ".deleteSmsLog()", "file_type": "code", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L248", + "source_location": "L481", "_callable": true, "_origin": "ast", "id": "backend_src_common_services_sms_service_smsservice_deletesmslog", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".deletesmslog()" }, + { + "label": ".editPattern()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L890", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_editpattern", + "community": 8, + "community_name": "SmsService", + "norm_label": ".editpattern()" + }, { "label": ".getCredit()", "file_type": "code", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L300", + "source_location": "L540", "_callable": true, "_origin": "ast", "id": "backend_src_common_services_sms_service_smsservice_getcredit", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".getcredit()" }, + { + "label": ".getEventDefinitions()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L277", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_geteventdefinitions", + "community": 8, + "community_name": "SmsService", + "norm_label": ".geteventdefinitions()" + }, + { + "label": ".getPatterns()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L643", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_getpatterns", + "community": 8, + "community_name": "SmsService", + "norm_label": ".getpatterns()" + }, + { + "label": ".getSmsConfig()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L78", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_getsmsconfig", + "community": 8, + "community_name": "SmsService", + "norm_label": ".getsmsconfig()" + }, { "label": ".getSmsLogs()", "file_type": "code", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L191", + "source_location": "L424", "_callable": true, "_origin": "ast", "id": "backend_src_common_services_sms_service_smsservice_getsmslogs", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".getsmslogs()" }, + { + "label": ".parsePatternsXml()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L495", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_parsepatternsxml", + "community": 8, + "community_name": "SmsService", + "norm_label": ".parsepatternsxml()" + }, + { + "label": ".postAsmx()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L356", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_postasmx", + "community": 8, + "community_name": "SmsService", + "norm_label": ".postasmx()" + }, + { + "label": ".recordLog()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L392", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_recordlog", + "community": 8, + "community_name": "SmsService", + "norm_label": ".recordlog()" + }, + { + "label": ".renderPatternMessage()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L610", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_renderpatternmessage", + "community": 8, + "community_name": "SmsService", + "norm_label": ".renderpatternmessage()" + }, + { + "label": ".saveLocalPattern()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L945", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_savelocalpattern", + "community": 8, + "community_name": "SmsService", + "norm_label": ".savelocalpattern()" + }, + { + "label": ".sendB2bNotification()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L1334", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_sendb2bnotification", + "community": 8, + "community_name": "SmsService", + "norm_label": ".sendb2bnotification()" + }, + { + "label": ".sendOrderConfirmation()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L1298", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation", + "community": 8, + "community_name": "SmsService", + "norm_label": ".sendorderconfirmation()" + }, + { + "label": ".sendOtp()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L1285", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_sendotp", + "community": 8, + "community_name": "SmsService", + "norm_label": ".sendotp()" + }, + { + "label": ".sendPatternSms()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L1013", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_sendpatternsms", + "community": 8, + "community_name": "SmsService", + "norm_label": ".sendpatternsms()" + }, + { + "label": ".sendPetCareReminder()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L1350", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_sendpetcarereminder", + "community": 8, + "community_name": "SmsService", + "norm_label": ".sendpetcarereminder()" + }, + { + "label": ".sendShippingNotification()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L1317", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_sendshippingnotification", + "community": 8, + "community_name": "SmsService", + "norm_label": ".sendshippingnotification()" + }, + { + "label": ".sendSms()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L1368", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_sendsms", + "community": 8, + "community_name": "SmsService", + "norm_label": ".sendsms()" + }, + { + "label": ".testRule()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L284", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_testrule", + "community": 8, + "community_name": "SmsService", + "norm_label": ".testrule()" + }, + { + "label": ".testSms()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L1154", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_testsms", + "community": 8, + "community_name": "SmsService", + "norm_label": ".testsms()" + }, + { + "label": ".triggerEvent()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L151", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_triggerevent", + "community": 8, + "community_name": "SmsService", + "norm_label": ".triggerevent()" + }, + { + "label": ".updateLocalPattern()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L973", + "_callable": true, + "_origin": "ast", + "id": "backend_src_common_services_sms_service_smsservice_updatelocalpattern", + "community": 8, + "community_name": "SmsService", + "norm_label": ".updatelocalpattern()" + }, { "label": ".addPattern()", "file_type": "code", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L238", + "source_location": "L261", "_callable": true, "_origin": "ast", "id": "backend_src_settings_settings_controller_settingscontroller_addpattern", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".addpattern()" }, { "label": ".clearAllSmsLogs()", "file_type": "code", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L283", + "source_location": "L306", "_callable": true, "_origin": "ast", "id": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".clearallsmslogs()" }, { @@ -16369,7 +16366,7 @@ "_origin": "ast", "id": "backend_src_settings_settings_controller_settingscontroller_constructor", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".constructor()" }, { @@ -16381,31 +16378,31 @@ "_origin": "ast", "id": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".deletescientificterm()" }, { "label": ".deleteSmsLog()", "file_type": "code", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L274", + "source_location": "L297", "_callable": true, "_origin": "ast", "id": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".deletesmslog()" }, { "label": ".editPattern()", "file_type": "code", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L253", + "source_location": "L276", "_callable": true, "_origin": "ast", "id": "backend_src_settings_settings_controller_settingscontroller_editpattern", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".editpattern()" }, { @@ -16417,7 +16414,7 @@ "_origin": "ast", "id": "backend_src_settings_settings_controller_settingscontroller_getfinancial", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".getfinancial()" }, { @@ -16429,19 +16426,19 @@ "_origin": "ast", "id": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".getfinancialsettings()" }, { "label": ".getPatterns()", "file_type": "code", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L229", + "source_location": "L252", "_callable": true, "_origin": "ast", "id": "backend_src_settings_settings_controller_settingscontroller_getpatterns", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".getpatterns()" }, { @@ -16453,7 +16450,7 @@ "_origin": "ast", "id": "backend_src_settings_settings_controller_settingscontroller_getscientificterms", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".getscientificterms()" }, { @@ -16465,7 +16462,7 @@ "_origin": "ast", "id": "backend_src_settings_settings_controller_settingscontroller_getseosettings", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".getseosettings()" }, { @@ -16477,19 +16474,31 @@ "_origin": "ast", "id": "backend_src_settings_settings_controller_settingscontroller_getsmscredit", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".getsmscredit()" }, + { + "label": ".getSmsEvents()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L230", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_getsmsevents", + "community": 8, + "community_name": "SmsService", + "norm_label": ".getsmsevents()" + }, { "label": ".getSmsLogs()", "file_type": "code", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L265", + "source_location": "L288", "_callable": true, "_origin": "ast", "id": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".getsmslogs()" }, { @@ -16501,7 +16510,7 @@ "_origin": "ast", "id": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".getsmssettings()" }, { @@ -16513,7 +16522,7 @@ "_origin": "ast", "id": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".getsystemsettings()" }, { @@ -16525,7 +16534,7 @@ "_origin": "ast", "id": "backend_src_settings_settings_controller_settingscontroller_getuitexts", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".getuitexts()" }, { @@ -16537,7 +16546,7 @@ "_origin": "ast", "id": "backend_src_settings_settings_controller_settingscontroller_patchuitext", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".patchuitext()" }, { @@ -16549,7 +16558,7 @@ "_origin": "ast", "id": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".putbulkuitexts()" }, { @@ -16561,7 +16570,7 @@ "_origin": "ast", "id": "backend_src_settings_settings_controller_settingscontroller_putuitext", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".putuitext()" }, { @@ -16573,9 +16582,21 @@ "_origin": "ast", "id": "backend_src_settings_settings_controller_settingscontroller_testsms", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".testsms()" }, + { + "label": ".testSmsRule()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L241", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_controller_settingscontroller_testsmsrule", + "community": 8, + "community_name": "SmsService", + "norm_label": ".testsmsrule()" + }, { "label": ".updateFinancial()", "file_type": "code", @@ -16585,7 +16606,7 @@ "_origin": "ast", "id": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".updatefinancial()" }, { @@ -16597,7 +16618,7 @@ "_origin": "ast", "id": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".updatefinancialsettings()" }, { @@ -16609,7 +16630,7 @@ "_origin": "ast", "id": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".updateseosettings()" }, { @@ -16621,7 +16642,7 @@ "_origin": "ast", "id": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".updatesmssettings()" }, { @@ -16633,7 +16654,7 @@ "_origin": "ast", "id": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".updatesystemsettings()" }, { @@ -16645,21 +16666,45 @@ "_origin": "ast", "id": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".upsertscientificterm()" }, + { + "label": ".addPattern()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L682", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_addpattern", + "community": 8, + "community_name": "SmsService", + "norm_label": ".addpattern()" + }, { "label": ".clearAllSmsLogs()", "file_type": "code", "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L646", + "source_location": "L698", "_callable": true, "_origin": "ast", "id": "backend_src_settings_settings_service_settingsservice_clearallsmslogs", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".clearallsmslogs()" }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L148", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_constructor", + "community": 8, + "community_name": "SmsService", + "norm_label": ".constructor()" + }, { "label": ".deleteScientificTerm()", "file_type": "code", @@ -16669,21 +16714,33 @@ "_origin": "ast", "id": "backend_src_settings_settings_service_settingsservice_deletescientificterm", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".deletescientificterm()" }, { "label": ".deleteSmsLog()", "file_type": "code", "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L642", + "source_location": "L694", "_callable": true, "_origin": "ast", "id": "backend_src_settings_settings_service_settingsservice_deletesmslog", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".deletesmslog()" }, + { + "label": ".editPattern()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L686", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_editpattern", + "community": 8, + "community_name": "SmsService", + "norm_label": ".editpattern()" + }, { "label": ".getCategorySetting()", "file_type": "code", @@ -16693,7 +16750,7 @@ "_origin": "ast", "id": "backend_src_settings_settings_service_settingsservice_getcategorysetting", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".getcategorysetting()" }, { @@ -16705,9 +16762,21 @@ "_origin": "ast", "id": "backend_src_settings_settings_service_settingsservice_getfinancialsettings", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".getfinancialsettings()" }, + { + "label": ".getPatterns()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L678", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_getpatterns", + "community": 8, + "community_name": "SmsService", + "norm_label": ".getpatterns()" + }, { "label": ".getScientificTerms()", "file_type": "code", @@ -16717,33 +16786,57 @@ "_origin": "ast", "id": "backend_src_settings_settings_service_settingsservice_getscientificterms", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".getscientificterms()" }, { "label": ".getSmsCredit()", "file_type": "code", "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L609", + "source_location": "L653", "_callable": true, "_origin": "ast", "id": "backend_src_settings_settings_service_settingsservice_getsmscredit", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".getsmscredit()" }, + { + "label": ".getSmsEvents()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L670", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_getsmsevents", + "community": 8, + "community_name": "SmsService", + "norm_label": ".getsmsevents()" + }, { "label": ".getSmsLogs()", "file_type": "code", "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L638", + "source_location": "L690", "_callable": true, "_origin": "ast", "id": "backend_src_settings_settings_service_settingsservice_getsmslogs", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".getsmslogs()" }, + { + "label": ".getSmsSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L649", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_getsmssettings", + "community": 8, + "community_name": "SmsService", + "norm_label": ".getsmssettings()" + }, { "label": ".getUiTexts()", "file_type": "code", @@ -16753,7 +16846,7 @@ "_origin": "ast", "id": "backend_src_settings_settings_service_settingsservice_getuitexts", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".getuitexts()" }, { @@ -16765,7 +16858,7 @@ "_origin": "ast", "id": "backend_src_settings_settings_service_settingsservice_onmoduleinit", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".onmoduleinit()" }, { @@ -16777,9 +16870,33 @@ "_origin": "ast", "id": "backend_src_settings_settings_service_settingsservice_seeddefaultuitexts", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".seeddefaultuitexts()" }, + { + "label": ".testSms()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L666", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_testsms", + "community": 8, + "community_name": "SmsService", + "norm_label": ".testsms()" + }, + { + "label": ".testSmsRule()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L674", + "_callable": true, + "_origin": "ast", + "id": "backend_src_settings_settings_service_settingsservice_testsmsrule", + "community": 8, + "community_name": "SmsService", + "norm_label": ".testsmsrule()" + }, { "label": ".updateBulkUiTexts()", "file_type": "code", @@ -16789,19 +16906,19 @@ "_origin": "ast", "id": "backend_src_settings_settings_service_settingsservice_updatebulkuitexts", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".updatebulkuitexts()" }, { "label": ".updateCategorySetting()", "file_type": "code", "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L499", + "source_location": "L535", "_callable": true, "_origin": "ast", "id": "backend_src_settings_settings_service_settingsservice_updatecategorysetting", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".updatecategorysetting()" }, { @@ -16813,19 +16930,19 @@ "_origin": "ast", "id": "backend_src_settings_settings_service_settingsservice_updatefinancialsettings", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".updatefinancialsettings()" }, { "label": ".updateSmsSettings()", "file_type": "code", "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L613", + "source_location": "L657", "_callable": true, "_origin": "ast", "id": "backend_src_settings_settings_service_settingsservice_updatesmssettings", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".updatesmssettings()" }, { @@ -16837,7 +16954,7 @@ "_origin": "ast", "id": "backend_src_settings_settings_service_settingsservice_updateuitext", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".updateuitext()" }, { @@ -16849,45 +16966,9 @@ "_origin": "ast", "id": "backend_src_settings_settings_service_settingsservice_upsertscientificterm", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": ".upsertscientificterm()" }, - { - "label": "getJwtRefreshSecret()", - "file_type": "code", - "source_file": "backend/src/auth/auth.constants.ts", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_constants_getjwtrefreshsecret", - "community": 85, - "community_name": "auth.module.ts", - "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": 85, - "community_name": "auth.module.ts", - "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": 85, - "community_name": "auth.module.ts", - "norm_label": ".constructor()" - }, { "label": ".checkHealth()", "file_type": "code", @@ -17056,6 +17137,90 @@ "community_name": "seed-products.ts", "norm_label": "slugify()" }, + { + "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": 90, + "community_name": "useCartStore", + "norm_label": "successpage()" + }, + { + "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": 90, + "community_name": "useCartStore", + "norm_label": "b2bportal()" + }, + { + "label": "CartDrawer()", + "file_type": "code", + "source_file": "frontend/application/components/CartDrawer.tsx", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_cartdrawer_cartdrawer", + "community": 90, + "community_name": "useCartStore", + "norm_label": "cartdrawer()" + }, + { + "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": 90, + "community_name": "useCartStore", + "norm_label": "deleteconfirmmodal()" + }, + { + "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": 90, + "community_name": "useCartStore", + "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": 90, + "community_name": "useCartStore", + "norm_label": "ordertracking()" + }, + { + "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": 90, + "community_name": "useCartStore", + "norm_label": "userdashboard()" + }, { "label": ".constructor()", "file_type": "code", @@ -17065,7 +17230,7 @@ "_origin": "ast", "id": "frontend_application_lib_services_orderservice_orderservice_constructor", "community": 90, - "community_name": "OrderService", + "community_name": "useCartStore", "norm_label": ".constructor()" }, { @@ -17077,7 +17242,7 @@ "_origin": "ast", "id": "frontend_application_lib_services_orderservice_orderservice_createorder", "community": 90, - "community_name": "OrderService", + "community_name": "useCartStore", "norm_label": ".createorder()" }, { @@ -17089,7 +17254,7 @@ "_origin": "ast", "id": "frontend_application_lib_services_orderservice_orderservice_getinstance", "community": 90, - "community_name": "OrderService", + "community_name": "useCartStore", "norm_label": ".getinstance()" }, { @@ -17101,7 +17266,7 @@ "_origin": "ast", "id": "frontend_application_lib_services_orderservice_orderservice_getorderbyid", "community": 90, - "community_name": "OrderService", + "community_name": "useCartStore", "norm_label": ".getorderbyid()" }, { @@ -17113,21 +17278,9 @@ "_origin": "ast", "id": "frontend_application_lib_services_orderservice_orderservice_getuserorders", "community": 90, - "community_name": "OrderService", + "community_name": "useCartStore", "norm_label": ".getuserorders()" }, - { - "label": ".sendOrderConfirmation()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L945", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation", - "community": 92, - "community_name": "OrdersService", - "norm_label": ".sendorderconfirmation()" - }, { "label": ".constructor()", "file_type": "code", @@ -17200,6 +17353,42 @@ "community_name": "OrdersService", "norm_label": ".validatecoupon()" }, + { + "label": ".buildOrderEventData()", + "file_type": "code", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L310", + "_callable": true, + "_origin": "ast", + "id": "backend_src_orders_orders_service_ordersservice_buildordereventdata", + "community": 92, + "community_name": "OrdersService", + "norm_label": ".buildordereventdata()" + }, + { + "label": ".checkAndSendRefillReminders()", + "file_type": "code", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L511", + "_callable": true, + "_origin": "ast", + "id": "backend_src_orders_orders_service_ordersservice_checkandsendrefillreminders", + "community": 92, + "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": 92, + "community_name": "OrdersService", + "norm_label": ".constructor()" + }, { "label": ".create()", "file_type": "code", @@ -17216,7 +17405,7 @@ "label": ".findAllByUser()", "file_type": "code", "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L353", + "source_location": "L464", "_callable": true, "_origin": "ast", "id": "backend_src_orders_orders_service_ordersservice_findallbyuser", @@ -17228,7 +17417,7 @@ "label": ".findOne()", "file_type": "code", "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L386", + "source_location": "L497", "_callable": true, "_origin": "ast", "id": "backend_src_orders_orders_service_ordersservice_findone", @@ -17252,7 +17441,7 @@ "label": ".releaseExpiredInventoryReservations()", "file_type": "code", "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L430", + "source_location": "L541", "_callable": true, "_origin": "ast", "id": "backend_src_orders_orders_service_ordersservice_releaseexpiredinventoryreservations", @@ -17264,7 +17453,7 @@ "label": ".retryPayment()", "file_type": "code", "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L452", + "source_location": "L563", "_callable": true, "_origin": "ast", "id": "backend_src_orders_orders_service_ordersservice_retrypayment", @@ -17272,6 +17461,18 @@ "community_name": "OrdersService", "norm_label": ".retrypayment()" }, + { + "label": ".updateStatus()", + "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_updatestatus", + "community": 92, + "community_name": "OrdersService", + "norm_label": ".updatestatus()" + }, { "label": ".validateCoupon()", "file_type": "code", @@ -17284,6 +17485,42 @@ "community_name": "OrdersService", "norm_label": ".validatecoupon()" }, + { + "label": "BlogLoading()", + "file_type": "code", + "source_file": "frontend/application/app/blog/loading.tsx", + "source_location": "L4", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_blog_loading_blogloading", + "community": 93, + "community_name": "ArchivePage.tsx", + "norm_label": "blogloading()" + }, + { + "label": "GlobalLoading()", + "file_type": "code", + "source_file": "frontend/application/app/loading.tsx", + "source_location": "L4", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_loading_globalloading", + "community": 93, + "community_name": "ArchivePage.tsx", + "norm_label": "globalloading()" + }, + { + "label": "ShopLoading()", + "file_type": "code", + "source_file": "frontend/application/app/shop/loading.tsx", + "source_location": "L4", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_app_shop_loading_shoploading", + "community": 93, + "community_name": "ArchivePage.tsx", + "norm_label": "shoploading()" + }, { "label": "ArchivePage()", "file_type": "code", @@ -17320,6 +17557,30 @@ "community_name": "ArchivePage.tsx", "norm_label": "bannerplacement()" }, + { + "label": "OrderRowSkeleton()", + "file_type": "code", + "source_file": "frontend/application/components/Skeleton.tsx", + "source_location": "L70", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_skeleton_orderrowskeleton", + "community": 93, + "community_name": "ArchivePage.tsx", + "norm_label": "orderrowskeleton()" + }, + { + "label": "PetProfileSkeleton()", + "file_type": "code", + "source_file": "frontend/application/components/Skeleton.tsx", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_skeleton_petprofileskeleton", + "community": 93, + "community_name": "ArchivePage.tsx", + "norm_label": "petprofileskeleton()" + }, { "label": "ProductCardSkeleton()", "file_type": "code", @@ -17332,11 +17593,23 @@ "community_name": "ArchivePage.tsx", "norm_label": "productcardskeleton()" }, + { + "label": "Skeleton()", + "file_type": "code", + "source_file": "frontend/application/components/Skeleton.tsx", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "id": "frontend_application_components_skeleton_skeleton", + "community": 93, + "community_name": "ArchivePage.tsx", + "norm_label": "skeleton()" + }, { "label": ".getBanners()", "file_type": "code", "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L343", + "source_location": "L322", "_callable": true, "_origin": "ast", "id": "frontend_application_lib_services_productservice_productservice_getbanners", @@ -17353,7 +17626,7 @@ "_origin": "ast", "id": "frontend_application_app_blog_slug_page_blogpostpage", "community": 95, - "community_name": "wiki/[slug]/page.tsx", + "community_name": "getSeoConfig", "norm_label": "blogpostpage()" }, { @@ -17365,7 +17638,7 @@ "_origin": "ast", "id": "frontend_application_app_blog_slug_page_generatemetadata", "community": 95, - "community_name": "wiki/[slug]/page.tsx", + "community_name": "getSeoConfig", "norm_label": "generatemetadata()" }, { @@ -17377,7 +17650,7 @@ "_origin": "ast", "id": "frontend_application_app_blog_slug_page_getblog", "community": 95, - "community_name": "wiki/[slug]/page.tsx", + "community_name": "getSeoConfig", "norm_label": "getblog()" }, { @@ -17389,7 +17662,7 @@ "_origin": "ast", "id": "frontend_application_app_blog_slug_page_safeiso", "community": 95, - "community_name": "wiki/[slug]/page.tsx", + "community_name": "getSeoConfig", "norm_label": "safeiso()" }, { @@ -17401,7 +17674,7 @@ "_origin": "ast", "id": "frontend_application_app_blog_slug_page_safelocaldate", "community": 95, - "community_name": "wiki/[slug]/page.tsx", + "community_name": "getSeoConfig", "norm_label": "safelocaldate()" }, { @@ -17413,7 +17686,7 @@ "_origin": "ast", "id": "frontend_application_app_shop_slug_page_generatemetadata", "community": 95, - "community_name": "wiki/[slug]/page.tsx", + "community_name": "getSeoConfig", "norm_label": "generatemetadata()" }, { @@ -17425,57 +17698,9 @@ "_origin": "ast", "id": "frontend_application_app_shop_slug_page_shopproductpage", "community": 95, - "community_name": "wiki/[slug]/page.tsx", + "community_name": "getSeoConfig", "norm_label": "shopproductpage()" }, - { - "label": "generateMetadata()", - "file_type": "code", - "source_file": "frontend/application/app/wiki/[slug]/page.tsx", - "source_location": "L38", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_wiki_slug_page_generatemetadata", - "community": 95, - "community_name": "wiki/[slug]/page.tsx", - "norm_label": "generatemetadata()" - }, - { - "label": "getRelatedProducts()", - "file_type": "code", - "source_file": "frontend/application/app/wiki/[slug]/page.tsx", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_wiki_slug_page_getrelatedproducts", - "community": 95, - "community_name": "wiki/[slug]/page.tsx", - "norm_label": "getrelatedproducts()" - }, - { - "label": "getWikiTerm()", - "file_type": "code", - "source_file": "frontend/application/app/wiki/[slug]/page.tsx", - "source_location": "L11", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_wiki_slug_page_getwikiterm", - "community": 95, - "community_name": "wiki/[slug]/page.tsx", - "norm_label": "getwikiterm()" - }, - { - "label": "WikiTermPage()", - "file_type": "code", - "source_file": "frontend/application/app/wiki/[slug]/page.tsx", - "source_location": "L78", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_wiki_slug_page_wikitermpage", - "community": 95, - "community_name": "wiki/[slug]/page.tsx", - "norm_label": "wikitermpage()" - }, { "label": "BlogPostClient()", "file_type": "code", @@ -17485,21 +17710,9 @@ "_origin": "ast", "id": "frontend_application_components_blogpostclient_blogpostclient", "community": 95, - "community_name": "wiki/[slug]/page.tsx", + "community_name": "getSeoConfig", "norm_label": "blogpostclient()" }, - { - "label": "generateMedicalWebPageSchema()", - "file_type": "code", - "source_file": "frontend/application/lib/schema.ts", - "source_location": "L159", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_schema_generatemedicalwebpageschema", - "community": 95, - "community_name": "wiki/[slug]/page.tsx", - "norm_label": "generatemedicalwebpageschema()" - }, { "label": "formatPageTitle()", "file_type": "code", @@ -17509,7 +17722,7 @@ "_origin": "ast", "id": "frontend_application_lib_seo_formatpagetitle", "community": 95, - "community_name": "wiki/[slug]/page.tsx", + "community_name": "getSeoConfig", "norm_label": "formatpagetitle()" }, { @@ -17521,26 +17734,14 @@ "_origin": "ast", "id": "frontend_application_lib_seo_getseoconfig", "community": 95, - "community_name": "wiki/[slug]/page.tsx", + "community_name": "getSeoConfig", "norm_label": "getseoconfig()" }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L42", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_constructor", - "community": 97, - "community_name": "PaymentService", - "norm_label": ".constructor()" - }, { "label": ".adminLiveInquiry()", "file_type": "code", "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L845", + "source_location": "L978", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_service_paymentservice_adminliveinquiry", @@ -17552,7 +17753,7 @@ "label": ".adminManualReject()", "file_type": "code", "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L988", + "source_location": "L1154", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_service_paymentservice_adminmanualreject", @@ -17564,7 +17765,7 @@ "label": ".adminManualVerify()", "file_type": "code", "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L925", + "source_location": "L1058", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_service_paymentservice_adminmanualverify", @@ -17576,7 +17777,7 @@ "label": ".checkGatewayHealth()", "file_type": "code", "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L1014", + "source_location": "L1180", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_service_paymentservice_checkgatewayhealth", @@ -17584,11 +17785,23 @@ "community_name": "PaymentService", "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": 97, + "community_name": "PaymentService", + "norm_label": ".constructor()" + }, { "label": ".getAdminTransactionStats()", "file_type": "code", "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L798", + "source_location": "L931", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_service_paymentservice_getadmintransactionstats", @@ -17600,7 +17813,7 @@ "label": ".getTransaction()", "file_type": "code", "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L635", + "source_location": "L768", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_service_paymentservice_gettransaction", @@ -17612,7 +17825,7 @@ "label": ".getTransactionByTrackId()", "file_type": "code", "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L896", + "source_location": "L1029", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_service_paymentservice_gettransactionbytrackid", @@ -17620,11 +17833,47 @@ "community_name": "PaymentService", "norm_label": ".gettransactionbytrackid()" }, + { + "label": ".handleAdminGatewayRefund()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L1187", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_service_paymentservice_handleadmingatewayrefund", + "community": 97, + "community_name": "PaymentService", + "norm_label": ".handleadmingatewayrefund()" + }, + { + "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": 97, + "community_name": "PaymentService", + "norm_label": ".initiateorderpayment()" + }, + { + "label": ".initiateWalletTopup()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L139", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_payment_service_paymentservice_initiatewallettopup", + "community": 97, + "community_name": "PaymentService", + "norm_label": ".initiatewallettopup()" + }, { "label": ".inquiryDirectZibal()", "file_type": "code", "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L902", + "source_location": "L1035", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_service_paymentservice_inquirydirectzibal", @@ -17636,7 +17885,7 @@ "label": ".reconcilePendingTransactions()", "file_type": "code", "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L540", + "source_location": "L673", "_callable": true, "_origin": "ast", "id": "backend_src_payment_payment_service_paymentservice_reconcilependingtransactions", @@ -17656,6 +17905,18 @@ "community_name": "PaymentService", "norm_label": ".verifyandprocess()" }, + { + "label": ".getBackendUrl()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L130", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_zibal_service_zibalservice_getbackendurl", + "community": 97, + "community_name": "PaymentService", + "norm_label": ".getbackendurl()" + }, { "label": ".getResultMessage()", "file_type": "code", @@ -17668,6 +17929,18 @@ "community_name": "PaymentService", "norm_label": ".getresultmessage()" }, + { + "label": ".getStartUrl()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L211", + "_callable": true, + "_origin": "ast", + "id": "backend_src_payment_zibal_service_zibalservice_getstarturl", + "community": 97, + "community_name": "PaymentService", + "norm_label": ".getstarturl()" + }, { "label": ".getStatusMessage()", "file_type": "code", @@ -17704,6 +17977,18 @@ "community_name": "BlogsController", "norm_label": ".addcomment()" }, + { + "label": ".constructor()", + "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_constructor", + "community": 99, + "community_name": "BlogsController", + "norm_label": ".constructor()" + }, { "label": ".findAll()", "file_type": "code", @@ -17986,39 +18271,6 @@ "community_name": "app.module.ts", "norm_label": "module" }, - { - "label": "revalidation.module.ts", - "file_type": "code", - "source_file": "backend/src/common/revalidation/revalidation.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_common_revalidation_revalidation_module", - "community": 1, - "community_name": "app.module.ts", - "norm_label": "revalidation.module.ts" - }, - { - "label": "Global", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_common_revalidation_revalidation_module_ts_global", - "community": 1, - "community_name": "app.module.ts", - "norm_label": "global" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_common_revalidation_revalidation_module_ts_module", - "community": 1, - "community_name": "app.module.ts", - "norm_label": "module" - }, { "label": "sms.module.ts", "file_type": "code", @@ -18096,39 +18348,6 @@ "community_name": "app.module.ts", "norm_label": "module" }, - { - "label": "faq.module.ts", - "file_type": "code", - "source_file": "backend/src/faq/faq.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_faq_faq_module", - "community": 1, - "community_name": "app.module.ts", - "norm_label": "faq.module.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_faq_faq_module_ts_module", - "community": 1, - "community_name": "app.module.ts", - "norm_label": "module" - }, - { - "label": "faq.service.ts", - "file_type": "code", - "source_file": "backend/src/faq/faq.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_faq_faq_service", - "community": 1, - "community_name": "app.module.ts", - "norm_label": "faq.service.ts" - }, { "label": "ingredients.module.ts", "file_type": "code", @@ -18151,6 +18370,28 @@ "community_name": "app.module.ts", "norm_label": "module" }, + { + "label": "menu.module.ts", + "file_type": "code", + "source_file": "backend/src/menu/menu.module.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_menu_menu_module", + "community": 1, + "community_name": "app.module.ts", + "norm_label": "menu.module.ts" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_menu_menu_module_ts_module", + "community": 1, + "community_name": "app.module.ts", + "norm_label": "module" + }, { "label": "payment.module.ts", "file_type": "code", @@ -18173,6 +18414,17 @@ "community_name": "app.module.ts", "norm_label": "module" }, + { + "label": "prescriptions.module.ts", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.module.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_prescriptions_prescriptions_module", + "community": 1, + "community_name": "app.module.ts", + "norm_label": "prescriptions.module.ts" + }, { "label": "Module", "file_type": "code", @@ -18349,94 +18601,6 @@ "community_name": "app.module.ts", "norm_label": "module" }, - { - "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": 10, - "community_name": "CreateReviewDto", - "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": 10, - "community_name": "CreateReviewDto", - "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": 10, - "community_name": "CreateReviewDto", - "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": 10, - "community_name": "CreateReviewDto", - "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": 10, - "community_name": "CreateReviewDto", - "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": 10, - "community_name": "CreateReviewDto", - "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": 10, - "community_name": "CreateReviewDto", - "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": 10, - "community_name": "CreateReviewDto", - "norm_label": "update-review.dto.ts" - }, { "label": "ApiProperty", "file_type": "code", @@ -18445,7 +18609,7 @@ "_origin": "ast", "id": "backend_src_reviews_dto_update_review_dto_ts_apiproperty", "community": 10, - "community_name": "CreateReviewDto", + "community_name": "ReviewsService", "norm_label": "apiproperty" }, { @@ -18456,7 +18620,7 @@ "_origin": "ast", "id": "backend_src_reviews_dto_update_review_dto_ts_isin", "community": 10, - "community_name": "CreateReviewDto", + "community_name": "ReviewsService", "norm_label": "isin" }, { @@ -18467,7 +18631,7 @@ "_origin": "ast", "id": "backend_src_reviews_dto_update_review_dto_ts_isoptional", "community": 10, - "community_name": "CreateReviewDto", + "community_name": "ReviewsService", "norm_label": "isoptional" }, { @@ -18478,7 +18642,7 @@ "_origin": "ast", "id": "backend_src_reviews_dto_update_review_dto_ts_isstring", "community": 10, - "community_name": "CreateReviewDto", + "community_name": "ReviewsService", "norm_label": "isstring" }, { @@ -18489,7 +18653,7 @@ "_origin": "ast", "id": "backend_src_reviews_reviews_controller_ts_apibearerauth", "community": 10, - "community_name": "CreateReviewDto", + "community_name": "ReviewsService", "norm_label": "apibearerauth" }, { @@ -18500,7 +18664,7 @@ "_origin": "ast", "id": "backend_src_reviews_reviews_controller_ts_apioperation", "community": 10, - "community_name": "CreateReviewDto", + "community_name": "ReviewsService", "norm_label": "apioperation" }, { @@ -18511,7 +18675,7 @@ "_origin": "ast", "id": "backend_src_reviews_reviews_controller_ts_apitags", "community": 10, - "community_name": "CreateReviewDto", + "community_name": "ReviewsService", "norm_label": "apitags" }, { @@ -18522,7 +18686,7 @@ "_origin": "ast", "id": "backend_src_reviews_reviews_controller_ts_body", "community": 10, - "community_name": "CreateReviewDto", + "community_name": "ReviewsService", "norm_label": "body" }, { @@ -18533,7 +18697,7 @@ "_origin": "ast", "id": "backend_src_reviews_reviews_controller_ts_controller", "community": 10, - "community_name": "CreateReviewDto", + "community_name": "ReviewsService", "norm_label": "controller" }, { @@ -18544,7 +18708,7 @@ "_origin": "ast", "id": "backend_src_reviews_reviews_controller_ts_delete", "community": 10, - "community_name": "CreateReviewDto", + "community_name": "ReviewsService", "norm_label": "delete" }, { @@ -18555,7 +18719,7 @@ "_origin": "ast", "id": "backend_src_reviews_reviews_controller_ts_get", "community": 10, - "community_name": "CreateReviewDto", + "community_name": "ReviewsService", "norm_label": "get" }, { @@ -18566,7 +18730,7 @@ "_origin": "ast", "id": "backend_src_reviews_reviews_controller_ts_param", "community": 10, - "community_name": "CreateReviewDto", + "community_name": "ReviewsService", "norm_label": "param" }, { @@ -18577,7 +18741,7 @@ "_origin": "ast", "id": "backend_src_reviews_reviews_controller_ts_patch", "community": 10, - "community_name": "CreateReviewDto", + "community_name": "ReviewsService", "norm_label": "patch" }, { @@ -18588,7 +18752,7 @@ "_origin": "ast", "id": "backend_src_reviews_reviews_controller_ts_post", "community": 10, - "community_name": "CreateReviewDto", + "community_name": "ReviewsService", "norm_label": "post" }, { @@ -18599,7 +18763,7 @@ "_origin": "ast", "id": "backend_src_reviews_reviews_controller_ts_query", "community": 10, - "community_name": "CreateReviewDto", + "community_name": "ReviewsService", "norm_label": "query" }, { @@ -18610,7 +18774,7 @@ "_origin": "ast", "id": "backend_src_reviews_reviews_controller_ts_req", "community": 10, - "community_name": "CreateReviewDto", + "community_name": "ReviewsService", "norm_label": "req" }, { @@ -18621,7 +18785,7 @@ "_origin": "ast", "id": "backend_src_reviews_reviews_controller_ts_throttle", "community": 10, - "community_name": "CreateReviewDto", + "community_name": "ReviewsService", "norm_label": "throttle" }, { @@ -18632,7 +18796,7 @@ "_origin": "ast", "id": "backend_src_reviews_reviews_controller_ts_useguards", "community": 10, - "community_name": "CreateReviewDto", + "community_name": "ReviewsService", "norm_label": "useguards" }, { @@ -18643,20 +18807,9 @@ "_origin": "ast", "id": "backend_src_reviews_reviews_service_ts_injectable", "community": 10, - "community_name": "CreateReviewDto", + "community_name": "ReviewsService", "norm_label": "injectable" }, - { - "label": "Max", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "max", - "community": 10, - "community_name": "CreateReviewDto", - "norm_label": "max" - }, { "label": "16-deep-audit-summary.md", "file_type": "document", @@ -19306,6 +19459,17 @@ "community_name": "Products.tsx", "norm_label": "products.tsx" }, + { + "label": "ShippingSettingsPage.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/ShippingSettingsPage.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_shippingsettingspage", + "community": 104, + "community_name": "Products.tsx", + "norm_label": "shippingsettingspage.tsx" + }, { "label": "Coupons", "file_type": "code", @@ -19339,6 +19503,17 @@ "community_name": "Products.tsx", "norm_label": "products" }, + { + "label": "ShippingSettingsPage", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L37", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_shippingsettingspage", + "community": 104, + "community_name": "Products.tsx", + "norm_label": "shippingsettingspage" + }, { "label": "pricing.ts", "file_type": "code", @@ -19494,37 +19669,15 @@ "norm_label": "strict input specifications (what files to read)" }, { - "label": "cms.controller.ts", + "label": "initiate-payment.dto.ts", "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", + "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_cms_cms_controller", + "id": "backend_src_payment_dto_initiate_payment_dto", "community": 106, - "community_name": "cms.controller.ts", - "norm_label": "cms.controller.ts" - }, - { - "label": "cms.service.ts", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_cms_cms_service", - "community": 106, - "community_name": "cms.controller.ts", - "norm_label": "cms.service.ts" - }, - { - "label": "cms.dto.ts", - "file_type": "code", - "source_file": "backend/src/cms/dto/cms.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_cms_dto_cms_dto", - "community": 106, - "community_name": "cms.controller.ts", - "norm_label": "cms.dto.ts" + "community_name": "InitiatePaymentDto", + "norm_label": "initiate-payment.dto.ts" }, { "label": "ApiProperty", @@ -19532,9 +19685,9 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_cms_dto_cms_dto_ts_apiproperty", + "id": "backend_src_payment_dto_initiate_payment_dto_ts_apiproperty", "community": 106, - "community_name": "cms.controller.ts", + "community_name": "InitiatePaymentDto", "norm_label": "apiproperty" }, { @@ -19543,32 +19696,21 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_cms_dto_cms_dto_ts_apipropertyoptional", + "id": "backend_src_payment_dto_initiate_payment_dto_ts_apipropertyoptional", "community": 106, - "community_name": "cms.controller.ts", + "community_name": "InitiatePaymentDto", "norm_label": "apipropertyoptional" }, { - "label": "IsBoolean", + "label": "IsNotEmpty", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_cms_dto_cms_dto_ts_isboolean", + "id": "backend_src_payment_dto_initiate_payment_dto_ts_isnotempty", "community": 106, - "community_name": "cms.controller.ts", - "norm_label": "isboolean" - }, - { - "label": "IsNumber", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_cms_dto_cms_dto_ts_isnumber", - "community": 106, - "community_name": "cms.controller.ts", - "norm_label": "isnumber" + "community_name": "InitiatePaymentDto", + "norm_label": "isnotempty" }, { "label": "IsOptional", @@ -19576,9 +19718,9 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_cms_dto_cms_dto_ts_isoptional", + "id": "backend_src_payment_dto_initiate_payment_dto_ts_isoptional", "community": 106, - "community_name": "cms.controller.ts", + "community_name": "InitiatePaymentDto", "norm_label": "isoptional" }, { @@ -19587,32 +19729,32 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_cms_dto_cms_dto_ts_isstring", + "id": "backend_src_payment_dto_initiate_payment_dto_ts_isstring", "community": 106, - "community_name": "cms.controller.ts", + "community_name": "InitiatePaymentDto", "norm_label": "isstring" }, { - "label": "IsUUID", + "label": "blogs/blogs.controller.ts", "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "isuuid", - "community": 106, - "community_name": "cms.controller.ts", - "norm_label": "isuuid" - }, - { - "label": "admin.module.ts", - "file_type": "code", - "source_file": "backend/src/admin/admin.module.ts", + "source_file": "backend/src/blogs/blogs.controller.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_admin_admin_module", + "id": "backend_src_blogs_blogs_controller", "community": 107, "community_name": "PaginationDto", - "norm_label": "admin.module.ts" + "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": 107, + "community_name": "PaginationDto", + "norm_label": "blogs.module.ts" }, { "label": "Module", @@ -19620,65 +19762,32 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_admin_module_ts_module", + "id": "backend_src_blogs_blogs_module_ts_module", "community": 107, "community_name": "PaginationDto", "norm_label": "module" }, { - "label": "admin/blogs.controller.ts", + "label": "blogs/blogs.service.ts", "file_type": "code", - "source_file": "backend/src/admin/blogs.controller.ts", + "source_file": "backend/src/blogs/blogs.service.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_admin_blogs_controller", + "id": "backend_src_blogs_blogs_service", "community": 107, "community_name": "PaginationDto", - "norm_label": "admin/blogs.controller.ts" + "norm_label": "blogs/blogs.service.ts" }, { - "label": "admin/blogs.service.ts", + "label": "Injectable", "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L1", + "source_file": "", + "source_location": "", "_origin": "ast", - "id": "backend_src_admin_blogs_service", + "id": "backend_src_blogs_blogs_service_ts_injectable", "community": 107, "community_name": "PaginationDto", - "norm_label": "admin/blogs.service.ts" - }, - { - "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": 107, - "community_name": "PaginationDto", - "norm_label": "categories.controller.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": 107, - "community_name": "PaginationDto", - "norm_label": "admin/pets.controller.ts" - }, - { - "label": "admin/wiki.controller.ts", - "file_type": "code", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_admin_wiki_controller", - "community": 107, - "community_name": "PaginationDto", - "norm_label": "admin/wiki.controller.ts" + "norm_label": "injectable" }, { "label": "pagination.dto.ts", @@ -19779,6 +19888,94 @@ "community_name": "PaginationDto", "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": 107, + "community_name": "PaginationDto", + "norm_label": "apinotfoundresponse" + }, + { + "label": "ApiOkResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_wiki_wiki_controller_ts_apiokresponse", + "community": 107, + "community_name": "PaginationDto", + "norm_label": "apiokresponse" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_wiki_wiki_controller_ts_apioperation", + "community": 107, + "community_name": "PaginationDto", + "norm_label": "apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_wiki_wiki_controller_ts_apitags", + "community": 107, + "community_name": "PaginationDto", + "norm_label": "apitags" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_wiki_wiki_controller_ts_controller", + "community": 107, + "community_name": "PaginationDto", + "norm_label": "controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_wiki_wiki_controller_ts_get", + "community": 107, + "community_name": "PaginationDto", + "norm_label": "get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_wiki_wiki_controller_ts_param", + "community": 107, + "community_name": "PaginationDto", + "norm_label": "param" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_wiki_wiki_controller_ts_query", + "community": 107, + "community_name": "PaginationDto", + "norm_label": "query" + }, { "label": "wiki.module.ts", "file_type": "code", @@ -19834,28 +20031,6 @@ "community_name": "PrismaService", "norm_label": "categories.service.ts" }, - { - "label": "admin/pets.service.ts", - "file_type": "code", - "source_file": "backend/src/admin/pets.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_admin_pets_service", - "community": 108, - "community_name": "PrismaService", - "norm_label": "admin/pets.service.ts" - }, - { - "label": "admin/wiki.service.ts", - "file_type": "code", - "source_file": "backend/src/admin/wiki.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_admin_wiki_service", - "community": 108, - "community_name": "PrismaService", - "norm_label": "admin/wiki.service.ts" - }, { "label": "auth.service.spec.ts", "file_type": "code", @@ -19890,26 +20065,48 @@ "norm_label": "banners.service.ts" }, { - "label": "revalidation.service.ts", + "label": "metrics.controller.ts", "file_type": "code", - "source_file": "backend/src/common/revalidation/revalidation.service.ts", + "source_file": "backend/src/common/metrics.controller.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_common_revalidation_revalidation_service", + "id": "backend_src_common_metrics_controller", "community": 108, "community_name": "PrismaService", - "norm_label": "revalidation.service.ts" + "norm_label": "metrics.controller.ts" }, { - "label": "Injectable", + "label": "sms-events.constants.ts", "file_type": "code", - "source_file": "", - "source_location": "", + "source_file": "backend/src/common/services/sms-events.constants.ts", + "source_location": "L1", "_origin": "ast", - "id": "backend_src_common_revalidation_revalidation_service_ts_injectable", + "id": "backend_src_common_services_sms_events_constants", "community": 108, "community_name": "PrismaService", - "norm_label": "injectable" + "norm_label": "sms-events.constants.ts" + }, + { + "label": "DEFAULT_SMS_RULES", + "file_type": "code", + "source_file": "backend/src/common/services/sms-events.constants.ts", + "source_location": "L221", + "_origin": "ast", + "id": "backend_src_common_services_sms_events_constants_default_sms_rules", + "community": 108, + "community_name": "PrismaService", + "norm_label": "default_sms_rules" + }, + { + "label": "SMS_EVENT_DEFINITIONS", + "file_type": "code", + "source_file": "backend/src/common/services/sms-events.constants.ts", + "source_location": "L26", + "_origin": "ast", + "id": "backend_src_common_services_sms_events_constants_sms_event_definitions", + "community": 108, + "community_name": "PrismaService", + "norm_label": "sms_event_definitions" }, { "label": "sms.service.ts", @@ -19922,17 +20119,6 @@ "community_name": "PrismaService", "norm_label": "sms.service.ts" }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_common_services_sms_service_ts_injectable", - "community": 108, - "community_name": "PrismaService", - "norm_label": "injectable" - }, { "label": "contact.service.ts", "file_type": "code", @@ -19955,6 +20141,17 @@ "community_name": "PrismaService", "norm_label": "ingredients.service.ts" }, + { + "label": "menu.service.ts", + "file_type": "code", + "source_file": "backend/src/menu/menu.service.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_menu_menu_service", + "community": 108, + "community_name": "PrismaService", + "norm_label": "menu.service.ts" + }, { "label": "orders.service.spec.ts", "file_type": "code", @@ -19967,15 +20164,15 @@ "norm_label": "orders.service.spec.ts" }, { - "label": "payment.service.ts", + "label": "zibal-ebank.service.ts", "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", + "source_file": "backend/src/payment/zibal-ebank.service.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_payment_payment_service", + "id": "backend_src_payment_zibal_ebank_service", "community": 108, "community_name": "PrismaService", - "norm_label": "payment.service.ts" + "norm_label": "zibal-ebank.service.ts" }, { "label": "pets.service.spec.ts", @@ -19988,17 +20185,6 @@ "community_name": "PrismaService", "norm_label": "pets.service.spec.ts" }, - { - "label": "prescriptions.module.ts", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_module", - "community": 108, - "community_name": "PrismaService", - "norm_label": "prescriptions.module.ts" - }, { "label": "prescriptions.service.ts", "file_type": "code", @@ -20010,17 +20196,6 @@ "community_name": "PrismaService", "norm_label": "prescriptions.service.ts" }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_service_ts_injectable", - "community": 108, - "community_name": "PrismaService", - "norm_label": "injectable" - }, { "label": "prisma.service.ts", "file_type": "code", @@ -20043,28 +20218,6 @@ "community_name": "PrismaService", "norm_label": "injectable" }, - { - "label": "products.service.spec.ts", - "file_type": "code", - "source_file": "backend/src/products/products.service.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_products_products_service_spec", - "community": 108, - "community_name": "PrismaService", - "norm_label": "products.service.spec.ts" - }, - { - "label": "reviews.service.ts", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_reviews_reviews_service", - "community": 108, - "community_name": "PrismaService", - "norm_label": "reviews.service.ts" - }, { "label": "default-ui-texts.ts", "file_type": "code", @@ -20132,15 +20285,26 @@ "norm_label": "testimonials.service.ts" }, { - "label": "videos.service.ts", + "label": "users.service.ts", "file_type": "code", - "source_file": "backend/src/videos/videos.service.ts", + "source_file": "backend/src/users/users.service.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_videos_videos_service", + "id": "backend_src_users_users_service", "community": 108, "community_name": "PrismaService", - "norm_label": "videos.service.ts" + "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": 108, + "community_name": "PrismaService", + "norm_label": "users.service.spec.ts" }, { "label": "wholesale.service.ts", @@ -20286,92 +20450,136 @@ "norm_label": "phase 2.6 integrity repair & audit quality gate report" }, { - "label": "ApiNotFoundResponse", + "label": "ConfirmModal.tsx", "file_type": "code", - "source_file": "", - "source_location": "", + "source_file": "frontend/admin-panel/src/components/ui/ConfirmModal.tsx", + "source_location": "L1", "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_ts_apinotfoundresponse", + "id": "frontend_admin_panel_src_components_ui_confirmmodal", "community": 11, - "community_name": "WikiController", - "norm_label": "apinotfoundresponse" + "community_name": "ConfirmModal.tsx", + "norm_label": "confirmmodal.tsx" }, { - "label": "ApiOkResponse", + "label": "Pagination.tsx", "file_type": "code", - "source_file": "", - "source_location": "", + "source_file": "frontend/admin-panel/src/components/ui/Pagination.tsx", + "source_location": "L1", "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_ts_apiokresponse", + "id": "frontend_admin_panel_src_components_ui_pagination", "community": 11, - "community_name": "WikiController", - "norm_label": "apiokresponse" + "community_name": "ConfirmModal.tsx", + "norm_label": "pagination.tsx" }, { - "label": "ApiOperation", + "label": "Categories.tsx", "file_type": "code", - "source_file": "", - "source_location": "", + "source_file": "frontend/admin-panel/src/pages/Categories.tsx", + "source_location": "L1", "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_ts_apioperation", + "id": "frontend_admin_panel_src_pages_categories", "community": 11, - "community_name": "WikiController", - "norm_label": "apioperation" + "community_name": "ConfirmModal.tsx", + "norm_label": "categories.tsx" }, { - "label": "ApiTags", + "label": "Pets.tsx", "file_type": "code", - "source_file": "", - "source_location": "", + "source_file": "frontend/admin-panel/src/pages/Pets.tsx", + "source_location": "L1", "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_ts_apitags", + "id": "frontend_admin_panel_src_pages_pets", "community": 11, - "community_name": "WikiController", - "norm_label": "apitags" + "community_name": "ConfirmModal.tsx", + "norm_label": "pets.tsx" }, { - "label": "Controller", + "label": "Videos.tsx", "file_type": "code", - "source_file": "", - "source_location": "", + "source_file": "frontend/admin-panel/src/pages/Videos.tsx", + "source_location": "L1", "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_ts_controller", + "id": "frontend_admin_panel_src_pages_videos", "community": 11, - "community_name": "WikiController", - "norm_label": "controller" + "community_name": "ConfirmModal.tsx", + "norm_label": "videos.tsx" }, { - "label": "Get", + "label": "WholesaleApplications.tsx", "file_type": "code", - "source_file": "", - "source_location": "", + "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", + "source_location": "L1", "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_ts_get", + "id": "frontend_admin_panel_src_pages_wholesaleapplications", "community": 11, - "community_name": "WikiController", - "norm_label": "get" + "community_name": "ConfirmModal.tsx", + "norm_label": "wholesaleapplications.tsx" }, { - "label": "Param", + "label": "Wiki.tsx", "file_type": "code", - "source_file": "", - "source_location": "", + "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", + "source_location": "L1", "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_ts_param", + "id": "frontend_admin_panel_src_pages_wiki", "community": 11, - "community_name": "WikiController", - "norm_label": "param" + "community_name": "ConfirmModal.tsx", + "norm_label": "wiki.tsx" }, { - "label": "Query", + "label": "Categories", "file_type": "code", - "source_file": "", - "source_location": "", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L17", "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_ts_query", + "id": "frontend_admin_panel_src_routes_adminroutes_categories", "community": 11, - "community_name": "WikiController", - "norm_label": "query" + "community_name": "ConfirmModal.tsx", + "norm_label": "categories" + }, + { + "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": 11, + "community_name": "ConfirmModal.tsx", + "norm_label": "pets" + }, + { + "label": "Videos", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L25", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_videos", + "community": 11, + "community_name": "ConfirmModal.tsx", + "norm_label": "videos" + }, + { + "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": 11, + "community_name": "ConfirmModal.tsx", + "norm_label": "wholesaleapplications" + }, + { + "label": "Wiki", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L19", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_wiki", + "community": 11, + "community_name": "ConfirmModal.tsx", + "norm_label": "wiki" }, { "label": "01_auditor.md", @@ -20736,6 +20944,17 @@ "community_name": "Operational Rules & Boundaries", "norm_label": "strict input specifications (what files to read)" }, + { + "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": 113, + "community_name": "PetsController", + "norm_label": "admin/pets.controller.ts" + }, { "label": "ApiBearerAuth", "file_type": "code", @@ -20846,6 +21065,17 @@ "community_name": "PetsController", "norm_label": "useguards" }, + { + "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": 113, + "community_name": "PetsController", + "norm_label": "admin/pets.service.ts" + }, { "label": "Injectable", "file_type": "code", @@ -20945,39 +21175,6 @@ "community_name": "Spinner.tsx", "norm_label": "mediaselector.tsx" }, - { - "label": "Modal.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Modal.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_modal", - "community": 115, - "community_name": "Spinner.tsx", - "norm_label": "modal.tsx" - }, - { - "label": "maxWidthClasses", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Modal.tsx", - "source_location": "L16", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_modal_maxwidthclasses", - "community": 115, - "community_name": "Spinner.tsx", - "norm_label": "maxwidthclasses" - }, - { - "label": "Pagination.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Pagination.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_pagination", - "community": 115, - "community_name": "Spinner.tsx", - "norm_label": "pagination.tsx" - }, { "label": "Spinner.tsx", "file_type": "code", @@ -21000,17 +21197,6 @@ "community_name": "Spinner.tsx", "norm_label": "bannersmanager.tsx" }, - { - "label": "Categories.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Categories.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_categories", - "community": 115, - "community_name": "Spinner.tsx", - "norm_label": "categories.tsx" - }, { "label": "DoctorsManager.tsx", "file_type": "code", @@ -21044,17 +21230,6 @@ "community_name": "Spinner.tsx", "norm_label": "media.tsx" }, - { - "label": "Pets.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Pets.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_pets", - "community": 115, - "community_name": "Spinner.tsx", - "norm_label": "pets.tsx" - }, { "label": "PrescriptionsManager.tsx", "file_type": "code", @@ -21066,6 +21241,17 @@ "community_name": "Spinner.tsx", "norm_label": "prescriptionsmanager.tsx" }, + { + "label": "SeoSettingsPage.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_seosettingspage", + "community": 115, + "community_name": "Spinner.tsx", + "norm_label": "seosettingspage.tsx" + }, { "label": "TestimonialsManager.tsx", "file_type": "code", @@ -21077,39 +21263,6 @@ "community_name": "Spinner.tsx", "norm_label": "testimonialsmanager.tsx" }, - { - "label": "Videos.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Videos.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_videos", - "community": 115, - "community_name": "Spinner.tsx", - "norm_label": "videos.tsx" - }, - { - "label": "Wiki.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_wiki", - "community": 115, - "community_name": "Spinner.tsx", - "norm_label": "wiki.tsx" - }, - { - "label": "ZibalPortalPage.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/ZibalPortalPage.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_zibalportalpage", - "community": 115, - "community_name": "Spinner.tsx", - "norm_label": "zibalportalpage.tsx" - }, { "label": "BannersManager", "file_type": "code", @@ -21121,17 +21274,6 @@ "community_name": "Spinner.tsx", "norm_label": "bannersmanager" }, - { - "label": "Categories", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L17", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_categories", - "community": 115, - "community_name": "Spinner.tsx", - "norm_label": "categories" - }, { "label": "DoctorsManager", "file_type": "code", @@ -21155,15 +21297,15 @@ "norm_label": "ingredientsmanager" }, { - "label": "Pets", + "label": "SeoSettingsPage", "file_type": "code", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L20", + "source_location": "L33", "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_pets", + "id": "frontend_admin_panel_src_routes_adminroutes_seosettingspage", "community": 115, "community_name": "Spinner.tsx", - "norm_label": "pets" + "norm_label": "seosettingspage" }, { "label": "TestimonialsManager", @@ -21176,39 +21318,6 @@ "community_name": "Spinner.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": 115, - "community_name": "Spinner.tsx", - "norm_label": "videos" - }, - { - "label": "Wiki", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L19", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_wiki", - "community": 115, - "community_name": "Spinner.tsx", - "norm_label": "wiki" - }, - { - "label": "ZibalPortalPage", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L36", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_zibalportalpage", - "community": 115, - "community_name": "Spinner.tsx", - "norm_label": "zibalportalpage" - }, { "label": "BASE_DOMAIN", "file_type": "code", @@ -22386,6 +22495,17 @@ "community_name": "backend/README.md", "norm_label": "support" }, + { + "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": 122, + "community_name": "AdminService", + "norm_label": "admin.controller.spec.ts" + }, { "label": "ApiBearerAuth", "file_type": "code", @@ -22394,7 +22514,7 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_ts_apibearerauth", "community": 122, - "community_name": "AdminController", + "community_name": "AdminService", "norm_label": "apibearerauth" }, { @@ -22405,7 +22525,7 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_ts_apioperation", "community": 122, - "community_name": "AdminController", + "community_name": "AdminService", "norm_label": "apioperation" }, { @@ -22416,20 +22536,9 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_ts_apitags", "community": 122, - "community_name": "AdminController", + "community_name": "AdminService", "norm_label": "apitags" }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_admin_controller_ts_body", - "community": 122, - "community_name": "AdminController", - "norm_label": "body" - }, { "label": "Controller", "file_type": "code", @@ -22438,7 +22547,7 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_ts_controller", "community": 122, - "community_name": "AdminController", + "community_name": "AdminService", "norm_label": "controller" }, { @@ -22449,9 +22558,20 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_ts_delete", "community": 122, - "community_name": "AdminController", + "community_name": "AdminService", "norm_label": "delete" }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_admin_controller_ts_get", + "community": 122, + "community_name": "AdminService", + "norm_label": "get" + }, { "label": "Param", "file_type": "code", @@ -22460,20 +22580,9 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_ts_param", "community": 122, - "community_name": "AdminController", + "community_name": "AdminService", "norm_label": "param" }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_admin_controller_ts_post", - "community": 122, - "community_name": "AdminController", - "norm_label": "post" - }, { "label": "Put", "file_type": "code", @@ -22482,7 +22591,7 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_ts_put", "community": 122, - "community_name": "AdminController", + "community_name": "AdminService", "norm_label": "put" }, { @@ -22493,9 +22602,97 @@ "_origin": "ast", "id": "backend_src_admin_admin_controller_ts_useguards", "community": 122, - "community_name": "AdminController", + "community_name": "AdminService", "norm_label": "useguards" }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_admin_service_ts_injectable", + "community": 122, + "community_name": "AdminService", + "norm_label": "injectable" + }, + { + "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": 123, + "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": 123, + "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": 123, + "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": 123, + "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": 123, + "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": 123, + "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": 123, + "community_name": "UsersService", + "norm_label": "injectable" + }, { "label": "address.dto.ts", "file_type": "code", @@ -22827,26 +23024,26 @@ "norm_label": "useguards" }, { - "label": "users.service.ts", + "label": "users.module.ts", "file_type": "code", - "source_file": "backend/src/users/users.service.ts", + "source_file": "backend/src/users/users.module.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_users_users_service", + "id": "backend_src_users_users_module", "community": 123, "community_name": "UsersService", - "norm_label": "users.service.ts" + "norm_label": "users.module.ts" }, { - "label": "users.service.spec.ts", + "label": "Module", "file_type": "code", - "source_file": "backend/src/users/users.service.spec.ts", - "source_location": "L1", + "source_file": "", + "source_location": "", "_origin": "ast", - "id": "backend_src_users_users_service_spec", + "id": "backend_src_users_users_module_ts_module", "community": 123, "community_name": "UsersService", - "norm_label": "users.service.spec.ts" + "norm_label": "module" }, { "label": "Injectable", @@ -22859,6 +23056,17 @@ "community_name": "UsersService", "norm_label": "injectable" }, + { + "label": "Optional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_users_users_service_ts_optional", + "community": 123, + "community_name": "UsersService", + "norm_label": "optional" + }, { "label": "00-repository-map.md", "file_type": "document", @@ -23300,15 +23508,26 @@ "norm_label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628" }, { - "label": "Injectable", + "label": "Body", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_admin_service_ts_injectable", + "id": "backend_src_admin_admin_controller_ts_body", "community": 128, - "community_name": "AdminService", - "norm_label": "injectable" + "community_name": "Body", + "norm_label": "body" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_admin_controller_ts_post", + "community": 128, + "community_name": "Body", + "norm_label": "post" }, { "label": "Reports.tsx", @@ -23343,28 +23562,6 @@ "community_name": "Reports.tsx", "norm_label": "reports" }, - { - "label": "generate-openapi.ts", - "file_type": "code", - "source_file": "backend/scripts/generate-openapi.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "generate-openapi.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_app_module_ts_module", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "module" - }, { "label": "env.validation.ts", "file_type": "code", @@ -23662,17 +23859,6 @@ "community_name": "app-audit-verification.e2e-spec.js", "norm_label": "app-audit-verification.e2e-spec.ts" }, - { - "label": "app.e2e-spec.ts", - "file_type": "code", - "source_file": "backend/test/app.e2e-spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_test_app_e2e_spec_ts_backend_test_app_e2e_spec", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "app.e2e-spec.ts" - }, { "label": "application/public/fonts/sahel-font-v3.4.0/README.md", "file_type": "document", @@ -24421,6 +24607,17 @@ "community_name": "layout.tsx", "norm_label": "layout.tsx" }, + { + "label": "AnalyticsDeferred.tsx", + "file_type": "code", + "source_file": "frontend/application/components/AnalyticsDeferred.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_analyticsdeferred", + "community": 139, + "community_name": "layout.tsx", + "norm_label": "analyticsdeferred.tsx" + }, { "label": "fonts.ts", "file_type": "code", @@ -24436,7 +24633,7 @@ "label": "lalezar", "file_type": "code", "source_file": "frontend/application/lib/fonts.ts", - "source_location": "L16", + "source_location": "L17", "_origin": "ast", "id": "frontend_application_lib_fonts_lalezar", "community": 139, @@ -24447,7 +24644,7 @@ "label": "vazirmatn", "file_type": "code", "source_file": "frontend/application/lib/fonts.ts", - "source_location": "L3", + "source_location": "L4", "_origin": "ast", "id": "frontend_application_lib_fonts_vazirmatn", "community": 139, @@ -24476,6 +24673,17 @@ "community_name": "toPersian", "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": 14, + "community_name": "toPersian", + "norm_label": "backbutton.tsx" + }, { "label": "CheckoutPage.tsx", "file_type": "code", @@ -24509,28 +24717,6 @@ "community_name": "toPersian", "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": 14, - "community_name": "toPersian", - "norm_label": "topupmodal.tsx" - }, - { - "label": "PRESET_AMOUNTS", - "file_type": "code", - "source_file": "frontend/application/components/TopUpModal.tsx", - "source_location": "L18", - "_origin": "ast", - "id": "frontend_application_components_topupmodal_preset_amounts", - "community": 14, - "community_name": "toPersian", - "norm_label": "preset_amounts" - }, { "label": "provinces.ts", "file_type": "code", @@ -24839,50 +25025,6 @@ "community_name": "generate-openapi.js", "norm_label": "yaml" }, - { - "label": "BackButton.tsx", - "file_type": "code", - "source_file": "frontend/application/components/BackButton.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_backbutton", - "community": 144, - "community_name": "SafeImage.tsx", - "norm_label": "backbutton.tsx" - }, - { - "label": "BlogPostClient.tsx", - "file_type": "code", - "source_file": "frontend/application/components/BlogPostClient.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_blogpostclient", - "community": 144, - "community_name": "SafeImage.tsx", - "norm_label": "blogpostclient.tsx" - }, - { - "label": "PodcastInlinePlayer.tsx", - "file_type": "code", - "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_podcastinlineplayer", - "community": 144, - "community_name": "SafeImage.tsx", - "norm_label": "podcastinlineplayer.tsx" - }, - { - "label": "PLAYBACK_RATES", - "file_type": "code", - "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", - "source_location": "L33", - "_origin": "ast", - "id": "frontend_application_components_podcastinlineplayer_playback_rates", - "community": 144, - "community_name": "SafeImage.tsx", - "norm_label": "playback_rates" - }, { "label": "PodcastPlayerModal.tsx", "file_type": "code", @@ -24891,7 +25033,7 @@ "_origin": "ast", "id": "frontend_application_components_podcastplayermodal", "community": 144, - "community_name": "SafeImage.tsx", + "community_name": "PodcastPlayerModal.tsx", "norm_label": "podcastplayermodal.tsx" }, { @@ -24902,85 +25044,74 @@ "_origin": "ast", "id": "frontend_application_components_podcastplayermodal_playback_rates", "community": 144, - "community_name": "SafeImage.tsx", + "community_name": "PodcastPlayerModal.tsx", "norm_label": "playback_rates" }, { - "label": "SafeImage.tsx", + "label": "admin-login.dto.ts", "file_type": "code", - "source_file": "frontend/application/components/SafeImage.tsx", + "source_file": "backend/src/auth/dto/admin-login.dto.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_safeimage", - "community": 144, - "community_name": "SafeImage.tsx", - "norm_label": "safeimage.tsx" + "id": "backend_src_auth_dto_admin_login_dto", + "community": 145, + "community_name": "AdminLoginDto", + "norm_label": "admin-login.dto.ts" }, { - "label": "VetGallery.tsx", + "label": "ApiProperty", "file_type": "code", - "source_file": "frontend/application/components/VetGallery.tsx", - "source_location": "L1", + "source_file": "", + "source_location": "", "_origin": "ast", - "id": "frontend_application_components_vetgallery", - "community": 144, - "community_name": "SafeImage.tsx", - "norm_label": "vetgallery.tsx" + "id": "backend_src_auth_dto_admin_login_dto_ts_apiproperty", + "community": 145, + "community_name": "AdminLoginDto", + "norm_label": "apiproperty" }, { - "label": "FALLBACK_VIDEOS", + "label": "IsEmail", "file_type": "code", - "source_file": "frontend/application/components/VetGallery.tsx", - "source_location": "L28", + "source_file": "", + "source_location": "", "_origin": "ast", - "id": "frontend_application_components_vetgallery_fallback_videos", - "community": 144, - "community_name": "SafeImage.tsx", - "norm_label": "fallback_videos" + "id": "backend_src_auth_dto_admin_login_dto_ts_isemail", + "community": 145, + "community_name": "AdminLoginDto", + "norm_label": "isemail" }, { - "label": "VideosPage.tsx", + "label": "IsNotEmpty", "file_type": "code", - "source_file": "frontend/application/components/VideosPage.tsx", - "source_location": "L1", + "source_file": "", + "source_location": "", "_origin": "ast", - "id": "frontend_application_components_videospage", - "community": 144, - "community_name": "SafeImage.tsx", - "norm_label": "videospage.tsx" + "id": "backend_src_auth_dto_admin_login_dto_ts_isnotempty", + "community": 145, + "community_name": "AdminLoginDto", + "norm_label": "isnotempty" }, { - "label": "media.ts", + "label": "IsString", "file_type": "code", - "source_file": "frontend/application/lib/media.ts", - "source_location": "L1", + "source_file": "", + "source_location": "", "_origin": "ast", - "id": "frontend_application_lib_media", - "community": 144, - "community_name": "SafeImage.tsx", - "norm_label": "media.ts" + "id": "backend_src_auth_dto_admin_login_dto_ts_isstring", + "community": 145, + "community_name": "AdminLoginDto", + "norm_label": "isstring" }, { - "label": "videoService.ts", + "label": "MinLength", "file_type": "code", - "source_file": "frontend/application/lib/services/videoService.ts", - "source_location": "L1", + "source_file": "", + "source_location": "", "_origin": "ast", - "id": "frontend_application_lib_services_videoservice", - "community": 144, - "community_name": "SafeImage.tsx", - "norm_label": "videoservice.ts" - }, - { - "label": "videoService", - "file_type": "code", - "source_file": "frontend/application/lib/services/videoService.ts", - "source_location": "L30", - "_origin": "ast", - "id": "frontend_application_lib_services_videoservice_videoservice", - "community": 144, - "community_name": "SafeImage.tsx", - "norm_label": "videoservice" + "id": "backend_src_auth_dto_admin_login_dto_ts_minlength", + "community": 145, + "community_name": "AdminLoginDto", + "norm_label": "minlength" }, { "label": "01-system-discovery.md", @@ -25181,48 +25312,70 @@ "norm_label": "injectable" }, { - "label": "track/page.tsx", + "label": "ApiProperty", "file_type": "code", - "source_file": "frontend/application/app/track/page.tsx", - "source_location": "L1", + "source_file": "", + "source_location": "", "_origin": "ast", - "id": "frontend_application_app_track_page", + "id": "backend_src_auth_dto_verify_otp_dto_ts_apiproperty", "community": 148, - "community_name": "track/page.tsx", - "norm_label": "track/page.tsx" + "community_name": "VerifyOtpDto", + "norm_label": "apiproperty" }, { - "label": "OrderTracking.tsx", + "label": "IsNotEmpty", "file_type": "code", - "source_file": "frontend/application/components/OrderTracking.tsx", - "source_location": "L1", + "source_file": "", + "source_location": "", "_origin": "ast", - "id": "frontend_application_components_ordertracking", + "id": "backend_src_auth_dto_verify_otp_dto_ts_isnotempty", "community": 148, - "community_name": "track/page.tsx", - "norm_label": "ordertracking.tsx" + "community_name": "VerifyOtpDto", + "norm_label": "isnotempty" }, { - "label": "trust-seals/page.tsx", + "label": "IsString", "file_type": "code", - "source_file": "frontend/application/app/trust-seals/page.tsx", - "source_location": "L1", + "source_file": "", + "source_location": "", "_origin": "ast", - "id": "frontend_application_app_trust_seals_page", - "community": 149, - "community_name": "trust-seals/page.tsx", - "norm_label": "trust-seals/page.tsx" + "id": "backend_src_auth_dto_verify_otp_dto_ts_isstring", + "community": 148, + "community_name": "VerifyOtpDto", + "norm_label": "isstring" }, { - "label": "EnamadBadge.tsx", + "label": "Matches", "file_type": "code", - "source_file": "frontend/application/components/EnamadBadge.tsx", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_auth_dto_verify_otp_dto_ts_matches", + "community": 148, + "community_name": "VerifyOtpDto", + "norm_label": "matches" + }, + { + "label": "Length", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "length", + "community": 148, + "community_name": "VerifyOtpDto", + "norm_label": "length" + }, + { + "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_components_enamadbadge", + "id": "frontend_application_app_wiki_slug_page", "community": 149, - "community_name": "trust-seals/page.tsx", - "norm_label": "enamadbadge.tsx" + "community_name": "wiki/[slug]/page.tsx", + "norm_label": "wiki/[slug]/page.tsx" }, { "label": "Layout.tsx", @@ -25290,6 +25443,17 @@ "community_name": "src/services/api.ts", "norm_label": "b2bmanager.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": 15, + "community_name": "src/services/api.ts", + "norm_label": "dashboard.tsx" + }, { "label": "Login.tsx", "file_type": "code", @@ -25301,17 +25465,6 @@ "community_name": "src/services/api.ts", "norm_label": "login.tsx" }, - { - "label": "SeoSettingsPage.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_seosettingspage", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "seosettingspage.tsx" - }, { "label": "SmartAdvisorManager.tsx", "file_type": "code", @@ -25357,15 +25510,15 @@ "norm_label": "b2bmanager" }, { - "label": "SeoSettingsPage", + "label": "Dashboard", "file_type": "code", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L33", + "source_location": "L10", "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_seosettingspage", + "id": "frontend_admin_panel_src_routes_adminroutes_dashboard", "community": 15, "community_name": "src/services/api.ts", - "norm_label": "seosettingspage" + "norm_label": "dashboard" }, { "label": "SmartAdvisorManager", @@ -25411,6 +25564,17 @@ "community_name": "src/services/api.ts", "norm_label": "src/services/api.ts" }, + { + "label": "api", + "file_type": "code", + "source_file": "frontend/admin-panel/src/services/api.ts", + "source_location": "L23", + "_origin": "ast", + "id": "frontend_admin_panel_src_services_api_api", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "api" + }, { "label": "failedQueue", "file_type": "code", @@ -25533,37 +25697,26 @@ "norm_label": "product requirement document (prd)" }, { - "label": "menu.module.ts", + "label": "@types/node", "file_type": "code", - "source_file": "backend/src/menu/menu.module.ts", - "source_location": "L1", + "source_file": "backend/package.json", + "source_location": "L60", "_origin": "ast", - "id": "backend_src_menu_menu_module", + "id": "backend_package_devdependencies_types_node", "community": 151, - "community_name": "menu.module.ts", - "norm_label": "menu.module.ts" + "community_name": "@types/node", + "norm_label": "@types/node" }, { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", + "label": "@types/node", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L60", "_origin": "ast", - "id": "backend_src_menu_menu_module_ts_module", + "id": "backend_package_json_types_node", "community": 151, - "community_name": "menu.module.ts", - "norm_label": "module" - }, - { - "label": "menu.service.ts", - "file_type": "code", - "source_file": "backend/src/menu/menu.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_menu_menu_service", - "community": 151, - "community_name": "menu.module.ts", - "norm_label": "menu.service.ts" + "community_name": "@types/node", + "norm_label": "@types/node" }, { "label": "admin.service.spec.ts", @@ -25573,19 +25726,74 @@ "_origin": "ast", "id": "backend_src_admin_admin_service_spec", "community": 152, - "community_name": "auth.service.ts", + "community_name": "RevalidationService", "norm_label": "admin.service.spec.ts" }, { - "label": "auth.service.ts", + "label": "Optional", "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_admin_service_ts_optional", + "community": 152, + "community_name": "RevalidationService", + "norm_label": "optional" + }, + { + "label": "admin/blogs.service.ts", + "file_type": "code", + "source_file": "backend/src/admin/blogs.service.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_auth_auth_service", + "id": "backend_src_admin_blogs_service", "community": 152, - "community_name": "auth.service.ts", - "norm_label": "auth.service.ts" + "community_name": "RevalidationService", + "norm_label": "admin/blogs.service.ts" + }, + { + "label": "revalidation.module.ts", + "file_type": "code", + "source_file": "backend/src/common/revalidation/revalidation.module.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_common_revalidation_revalidation_module", + "community": 152, + "community_name": "RevalidationService", + "norm_label": "revalidation.module.ts" + }, + { + "label": "Global", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_common_revalidation_revalidation_module_ts_global", + "community": 152, + "community_name": "RevalidationService", + "norm_label": "global" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_common_revalidation_revalidation_module_ts_module", + "community": 152, + "community_name": "RevalidationService", + "norm_label": "module" + }, + { + "label": "revalidation.service.ts", + "file_type": "code", + "source_file": "backend/src/common/revalidation/revalidation.service.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_common_revalidation_revalidation_service", + "community": 152, + "community_name": "RevalidationService", + "norm_label": "revalidation.service.ts" }, { "label": "Injectable", @@ -25593,21 +25801,21 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_auth_auth_service_ts_injectable", + "id": "backend_src_common_revalidation_revalidation_service_ts_injectable", "community": 152, - "community_name": "auth.service.ts", + "community_name": "RevalidationService", "norm_label": "injectable" }, { - "label": "phone.utils.ts", + "label": "products.service.spec.ts", "file_type": "code", - "source_file": "backend/src/common/utils/phone.utils.ts", + "source_file": "backend/src/products/products.service.spec.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_common_utils_phone_utils", + "id": "backend_src_products_products_service_spec", "community": 152, - "community_name": "auth.service.ts", - "norm_label": "phone.utils.ts" + "community_name": "RevalidationService", + "norm_label": "products.service.spec.ts" }, { "label": "redis.module.ts", @@ -25617,7 +25825,7 @@ "_origin": "ast", "id": "backend_src_redis_redis_module", "community": 152, - "community_name": "auth.service.ts", + "community_name": "RevalidationService", "norm_label": "redis.module.ts" }, { @@ -25628,7 +25836,7 @@ "_origin": "ast", "id": "backend_src_redis_redis_module_ts_global", "community": 152, - "community_name": "auth.service.ts", + "community_name": "RevalidationService", "norm_label": "global" }, { @@ -25639,7 +25847,7 @@ "_origin": "ast", "id": "backend_src_redis_redis_module_ts_module", "community": 152, - "community_name": "auth.service.ts", + "community_name": "RevalidationService", "norm_label": "module" }, { @@ -25650,7 +25858,7 @@ "_origin": "ast", "id": "backend_src_redis_redis_service", "community": 152, - "community_name": "auth.service.ts", + "community_name": "RevalidationService", "norm_label": "redis.service.ts" }, { @@ -25661,7 +25869,7 @@ "_origin": "ast", "id": "backend_src_redis_redis_service_spec", "community": 152, - "community_name": "auth.service.ts", + "community_name": "RevalidationService", "norm_label": "redis.service.spec.ts" }, { @@ -25672,7 +25880,7 @@ "_origin": "ast", "id": "backend_src_redis_redis_service_ts_injectable", "community": 152, - "community_name": "auth.service.ts", + "community_name": "RevalidationService", "norm_label": "injectable" }, { @@ -27375,6 +27583,28 @@ "community_name": "app.e2e-spec.js", "norm_label": "testing_1" }, + { + "label": "admin/blogs.controller.ts", + "file_type": "code", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_admin_blogs_controller", + "community": 18, + "community_name": "JwtAuthGuard", + "norm_label": "admin/blogs.controller.ts" + }, + { + "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": 18, + "community_name": "JwtAuthGuard", + "norm_label": "categories.controller.ts" + }, { "label": "ssl.controller.ts", "file_type": "code", @@ -27551,6 +27781,61 @@ "community_name": "JwtAuthGuard", "norm_label": "menu.controller.ts" }, + { + "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": 18, + "community_name": "JwtAuthGuard", + "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": 18, + "community_name": "JwtAuthGuard", + "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": 18, + "community_name": "JwtAuthGuard", + "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": 18, + "community_name": "JwtAuthGuard", + "norm_label": "isstring" + }, + { + "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": 18, + "community_name": "JwtAuthGuard", + "norm_label": "payment.controller.ts" + }, { "label": "prescriptions.controller.ts", "file_type": "code", @@ -27562,6 +27847,94 @@ "community_name": "JwtAuthGuard", "norm_label": "prescriptions.controller.ts" }, + { + "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": 18, + "community_name": "JwtAuthGuard", + "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": 18, + "community_name": "JwtAuthGuard", + "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": 18, + "community_name": "JwtAuthGuard", + "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": 18, + "community_name": "JwtAuthGuard", + "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": 18, + "community_name": "JwtAuthGuard", + "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": 18, + "community_name": "JwtAuthGuard", + "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": 18, + "community_name": "JwtAuthGuard", + "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": 18, + "community_name": "JwtAuthGuard", + "norm_label": "update-review.dto.ts" + }, { "label": "reviews.controller.ts", "file_type": "code", @@ -27573,6 +27946,17 @@ "community_name": "JwtAuthGuard", "norm_label": "reviews.controller.ts" }, + { + "label": "reviews.service.ts", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_reviews_reviews_service", + "community": 18, + "community_name": "JwtAuthGuard", + "norm_label": "reviews.service.ts" + }, { "label": "settings.controller.ts", "file_type": "code", @@ -27617,17 +28001,6 @@ "community_name": "JwtAuthGuard", "norm_label": "testimonials.controller.ts" }, - { - "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": 18, - "community_name": "JwtAuthGuard", - "norm_label": "tickets.controller.ts" - }, { "label": "wholesale.controller.ts", "file_type": "code", @@ -27639,6 +28012,17 @@ "community_name": "JwtAuthGuard", "norm_label": "wholesale.controller.ts" }, + { + "label": "Max", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "max", + "community": 18, + "community_name": "JwtAuthGuard", + "norm_label": "max" + }, { "label": "api_contract.md", "file_type": "document", @@ -27823,19 +28207,30 @@ "_origin": "ast", "id": "apiexcludecontroller", "community": 184, - "community_name": "MetricsController", + "community_name": "AppModule", "norm_label": "apiexcludecontroller" }, { - "label": "metrics.controller.ts", + "label": "generate-openapi.ts", "file_type": "code", - "source_file": "backend/src/common/metrics.controller.ts", + "source_file": "backend/scripts/generate-openapi.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_common_metrics_controller", + "id": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi", "community": 184, - "community_name": "MetricsController", - "norm_label": "metrics.controller.ts" + "community_name": "AppModule", + "norm_label": "generate-openapi.ts" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_app_module_ts_module", + "community": 184, + "community_name": "AppModule", + "norm_label": "module" }, { "label": "Controller", @@ -27845,7 +28240,7 @@ "_origin": "ast", "id": "backend_src_common_metrics_controller_ts_controller", "community": 184, - "community_name": "MetricsController", + "community_name": "AppModule", "norm_label": "controller" }, { @@ -27856,7 +28251,7 @@ "_origin": "ast", "id": "backend_src_common_metrics_controller_ts_get", "community": 184, - "community_name": "MetricsController", + "community_name": "AppModule", "norm_label": "get" }, { @@ -27867,19 +28262,41 @@ "_origin": "ast", "id": "backend_src_common_metrics_controller_ts_res", "community": 184, - "community_name": "MetricsController", + "community_name": "AppModule", "norm_label": "res" }, { - "label": "RouteErrorBoundary.tsx", + "label": "app.e2e-spec.ts", "file_type": "code", - "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", + "source_file": "backend/test/app.e2e-spec.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_src_components_routeerrorboundary", + "id": "backend_test_app_e2e_spec_ts_backend_test_app_e2e_spec", + "community": 184, + "community_name": "AppModule", + "norm_label": "app.e2e-spec.ts" + }, + { + "label": "eslint-config-next", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L31", + "_origin": "ast", + "id": "frontend_application_package_devdependencies_eslint_config_next", "community": 185, - "community_name": "RouteErrorBoundary", - "norm_label": "routeerrorboundary.tsx" + "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": "L31", + "_origin": "ast", + "id": "eslint_config_next", + "community": 185, + "community_name": "eslint-config-next", + "norm_label": "eslint-config-next" }, { "label": "seed-ui-texts.ts", @@ -28398,28 +28815,6 @@ "community_name": "userStore.ts", "norm_label": "authmodal" }, - { - "label": "B2BPortal", - "file_type": "code", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L15", - "_origin": "ast", - "id": "frontend_application_app_clientlayout_b2bportal", - "community": 197, - "community_name": "userStore.ts", - "norm_label": "b2bportal" - }, - { - "label": "CartDrawer", - "file_type": "code", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L12", - "_origin": "ast", - "id": "frontend_application_app_clientlayout_cartdrawer", - "community": 197, - "community_name": "userStore.ts", - "norm_label": "cartdrawer" - }, { "label": "LoginModal", "file_type": "code", @@ -28443,26 +28838,26 @@ "norm_label": "authmodal.tsx" }, { - "label": "B2BPortal.tsx", + "label": "BrandLogo.tsx", "file_type": "code", - "source_file": "frontend/application/components/B2BPortal.tsx", + "source_file": "frontend/application/components/BrandLogo.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_b2bportal", + "id": "frontend_application_components_brandlogo", "community": 197, "community_name": "userStore.ts", - "norm_label": "b2bportal.tsx" + "norm_label": "brandlogo.tsx" }, { - "label": "CartDrawer.tsx", + "label": "Footer.tsx", "file_type": "code", - "source_file": "frontend/application/components/CartDrawer.tsx", + "source_file": "frontend/application/components/Footer.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_cartdrawer", + "id": "frontend_application_components_footer", "community": 197, "community_name": "userStore.ts", - "norm_label": "cartdrawer.tsx" + "norm_label": "footer.tsx" }, { "label": "Header.tsx", @@ -28497,6 +28892,17 @@ "community_name": "userStore.ts", "norm_label": "loginmodal.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": 197, + "community_name": "userStore.ts", + "norm_label": "maintenancepage.tsx" + }, { "label": "NavigationProgressBar.tsx", "file_type": "code", @@ -28531,26 +28937,15 @@ "norm_label": "prescriptionuploadmodal.tsx" }, { - "label": "CartDrawer.test.tsx", + "label": "Footer.test.tsx", "file_type": "code", - "source_file": "frontend/application/components/__tests__/CartDrawer.test.tsx", + "source_file": "frontend/application/components/__tests__/Footer.test.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_tests_cartdrawer_test", + "id": "frontend_application_components_tests_footer_test", "community": 197, "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": 197, - "community_name": "userStore.ts", - "norm_label": "mockproduct" + "norm_label": "footer.test.tsx" }, { "label": "Header.test.tsx", @@ -28597,26 +28992,15 @@ "norm_label": "authservice.ts" }, { - "label": "cartStore.ts", + "label": "userStore.test.ts", "file_type": "code", - "source_file": "frontend/application/lib/store/cartStore.ts", + "source_file": "frontend/application/lib/store/__tests__/userStore.test.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_lib_store_cartstore", + "id": "frontend_application_lib_store_tests_userstore_test", "community": 197, "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": 197, - "community_name": "userStore.ts", - "norm_label": "usecartstore" + "norm_label": "userstore.test.ts" }, { "label": "uiStore.ts", @@ -28655,7 +29039,7 @@ "label": "useUserStore", "file_type": "code", "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L63", + "source_location": "L65", "_origin": "ast", "id": "frontend_application_lib_store_userstore_useuserstore", "community": 197, @@ -28769,7 +29153,7 @@ "_origin": "ast", "id": "backend_src_payment_dto_admin_transaction_filter_dto", "community": 2, - "community_name": "AdminTransactionFilterDto", + "community_name": "payment.service.ts", "norm_label": "admin-transaction-filter.dto.ts" }, { @@ -28780,7 +29164,7 @@ "_origin": "ast", "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_apipropertyoptional", "community": 2, - "community_name": "AdminTransactionFilterDto", + "community_name": "payment.service.ts", "norm_label": "apipropertyoptional" }, { @@ -28791,7 +29175,7 @@ "_origin": "ast", "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isin", "community": 2, - "community_name": "AdminTransactionFilterDto", + "community_name": "payment.service.ts", "norm_label": "isin" }, { @@ -28802,7 +29186,7 @@ "_origin": "ast", "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isnumber", "community": 2, - "community_name": "AdminTransactionFilterDto", + "community_name": "payment.service.ts", "norm_label": "isnumber" }, { @@ -28813,7 +29197,7 @@ "_origin": "ast", "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isoptional", "community": 2, - "community_name": "AdminTransactionFilterDto", + "community_name": "payment.service.ts", "norm_label": "isoptional" }, { @@ -28824,7 +29208,7 @@ "_origin": "ast", "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isstring", "community": 2, - "community_name": "AdminTransactionFilterDto", + "community_name": "payment.service.ts", "norm_label": "isstring" }, { @@ -28835,9 +29219,20 @@ "_origin": "ast", "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_type", "community": 2, - "community_name": "AdminTransactionFilterDto", + "community_name": "payment.service.ts", "norm_label": "type" }, + { + "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": 2, + "community_name": "payment.service.ts", + "norm_label": "payment.service.ts" + }, { "label": "create-video.dto.ts", "file_type": "code", @@ -29146,6 +29541,17 @@ "community_name": "CreateVideoDto", "norm_label": "module" }, + { + "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": 20, + "community_name": "CreateVideoDto", + "norm_label": "videos.service.ts" + }, { "label": "Injectable", "file_type": "code", @@ -29327,17 +29733,6 @@ "community_name": "\ud83d\udc41\ufe0f UX & Persona Interface Review (08_visual_qa)", "norm_label": "\ud83d\udc41\ufe0f ux & persona interface review (08_visual_qa)" }, - { - "label": "zibal-ebank.service.ts", - "file_type": "code", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_payment_zibal_ebank_service", - "community": 204, - "community_name": "zibal-ebank.service.ts", - "norm_label": "zibal-ebank.service.ts" - }, { "label": "prisma/scientificTerms.ts", "file_type": "code", @@ -29470,6 +29865,149 @@ "community_name": "graphify reference: transcribe video and audio", "norm_label": "step 2.5 - transcribe video / audio files (only if video files detected)" }, + { + "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": 21, + "community_name": "auth.service.ts", + "norm_label": "auth.controller.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": 21, + "community_name": "auth.service.ts", + "norm_label": "auth.service.ts" + }, + { + "label": "login.dto.ts", + "file_type": "code", + "source_file": "backend/src/auth/dto/login.dto.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_auth_dto_login_dto", + "community": 21, + "community_name": "auth.service.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": 21, + "community_name": "auth.service.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": 21, + "community_name": "auth.service.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": 21, + "community_name": "auth.service.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": 21, + "community_name": "auth.service.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", + "id": "backend_src_auth_dto_send_otp_dto", + "community": 21, + "community_name": "auth.service.ts", + "norm_label": "send-otp.dto.ts" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_auth_dto_send_otp_dto_ts_apiproperty", + "community": 21, + "community_name": "auth.service.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": 21, + "community_name": "auth.service.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": 21, + "community_name": "auth.service.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": 21, + "community_name": "auth.service.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", + "id": "backend_src_auth_dto_verify_otp_dto", + "community": 21, + "community_name": "auth.service.ts", + "norm_label": "verify-otp.dto.ts" + }, { "label": "18-compiler-diagnostic-dispositions.md", "file_type": "document", @@ -29746,37 +30284,81 @@ "norm_label": "formfield.tsx" }, { - "label": "Injectable", + "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": 22, + "community_name": "ProductDto", + "norm_label": "product.dto.ts" + }, + { + "label": "ApiPropertyOptional", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_blogs_blogs_service_ts_injectable", + "id": "backend_src_admin_dto_product_dto_ts_apipropertyoptional", "community": 22, - "community_name": "BlogsService", - "norm_label": "injectable" + "community_name": "ProductDto", + "norm_label": "apipropertyoptional" }, { - "label": "jest", + "label": "IsArray", "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L67", + "source_file": "", + "source_location": "", "_origin": "ast", - "id": "backend_package_devdependencies_jest", - "community": 220, - "community_name": "jest", - "norm_label": "jest" + "id": "backend_src_admin_dto_product_dto_ts_isarray", + "community": 22, + "community_name": "ProductDto", + "norm_label": "isarray" }, { - "label": "jest", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L67", + "label": "IsBoolean", + "file_type": "code", + "source_file": "", + "source_location": "", "_origin": "ast", - "id": "jest", - "community": 220, - "community_name": "jest", - "norm_label": "jest" + "id": "backend_src_admin_dto_product_dto_ts_isboolean", + "community": 22, + "community_name": "ProductDto", + "norm_label": "isboolean" + }, + { + "label": "IsNumber", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_dto_product_dto_ts_isnumber", + "community": 22, + "community_name": "ProductDto", + "norm_label": "isnumber" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_dto_product_dto_ts_isoptional", + "community": 22, + "community_name": "ProductDto", + "norm_label": "isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_dto_product_dto_ts_isstring", + "community": 22, + "community_name": "ProductDto", + "norm_label": "isstring" }, { "label": "Textarea.tsx", @@ -29855,28 +30437,6 @@ "community_name": "tailwindcss", "norm_label": "tailwindcss" }, - { - "label": "class-transformer", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L35", - "_origin": "ast", - "id": "backend_package_dependencies_class_transformer", - "community": 224, - "community_name": "class-transformer", - "norm_label": "class-transformer" - }, - { - "label": "class-transformer", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L35", - "_origin": "ast", - "id": "class_transformer", - "community": 224, - "community_name": "class-transformer", - "norm_label": "class-transformer" - }, { "label": "next.config.ts", "file_type": "code", @@ -30196,28 +30756,6 @@ "community_name": "prisma", "norm_label": "prisma" }, - { - "label": "Reviews.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reviews", - "community": 233, - "community_name": "Reviews.tsx", - "norm_label": "reviews.tsx" - }, - { - "label": "Reviews", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L43", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_reviews", - "community": 233, - "community_name": "Reviews.tsx", - "norm_label": "reviews" - }, { "label": "source-map-support", "file_type": "code", @@ -31730,28 +32268,6 @@ "community_name": "@types/compression", "norm_label": "@types/compression" }, - { - "label": "helmet", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L38", - "_origin": "ast", - "id": "backend_package_dependencies_helmet", - "community": 265, - "community_name": "helmet", - "norm_label": "helmet" - }, - { - "label": "helmet", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L38", - "_origin": "ast", - "id": "helmet", - "community": 265, - "community_name": "helmet", - "norm_label": "helmet" - }, { "label": "@types/express", "file_type": "code", @@ -33028,50 +33544,6 @@ "community_name": "ZibalService", "norm_label": "injectable" }, - { - "label": "js-yaml", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L40", - "_origin": "ast", - "id": "backend_package_dependencies_js_yaml", - "community": 295, - "community_name": "js-yaml", - "norm_label": "js-yaml" - }, - { - "label": "js-yaml", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L40", - "_origin": "ast", - "id": "js_yaml", - "community": 295, - "community_name": "js-yaml", - "norm_label": "js-yaml" - }, - { - "label": "@nestjs/core", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L26", - "_origin": "ast", - "id": "backend_package_dependencies_nestjs_core", - "community": 296, - "community_name": "@nestjs/core", - "norm_label": "@nestjs/core" - }, - { - "label": "@nestjs/core", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L26", - "_origin": "ast", - "id": "nestjs_core", - "community": 296, - "community_name": "@nestjs/core", - "norm_label": "@nestjs/core" - }, { "label": "Injectable", "file_type": "code", @@ -33402,6 +33874,28 @@ "community_name": "productService.ts", "norm_label": "ingredient_match_keywords" }, + { + "label": "PodcastInlinePlayer.tsx", + "file_type": "code", + "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_podcastinlineplayer", + "community": 3, + "community_name": "productService.ts", + "norm_label": "podcastinlineplayer.tsx" + }, + { + "label": "PLAYBACK_RATES", + "file_type": "code", + "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", + "source_location": "L33", + "_origin": "ast", + "id": "frontend_application_components_podcastinlineplayer_playback_rates", + "community": 3, + "community_name": "productService.ts", + "norm_label": "playback_rates" + }, { "label": "products.ts", "file_type": "code", @@ -33435,6 +33929,17 @@ "community_name": "productService.ts", "norm_label": "products" }, + { + "label": "media.ts", + "file_type": "code", + "source_file": "frontend/application/lib/media.ts", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_lib_media", + "community": 3, + "community_name": "productService.ts", + "norm_label": "media.ts" + }, { "label": "productService.ts", "file_type": "code", @@ -33831,28 +34336,6 @@ "community_name": "typescript", "norm_label": "typescript" }, - { - "label": "@nestjs/jwt", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L27", - "_origin": "ast", - "id": "backend_package_dependencies_nestjs_jwt", - "community": 301, - "community_name": "@nestjs/jwt", - "norm_label": "@nestjs/jwt" - }, - { - "label": "@nestjs/jwt", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L27", - "_origin": "ast", - "id": "nestjs_jwt", - "community": 301, - "community_name": "@nestjs/jwt", - "norm_label": "@nestjs/jwt" - }, { "label": "typescript-eslint", "file_type": "code", @@ -33875,72 +34358,6 @@ "community_name": "typescript-eslint", "norm_label": "typescript-eslint" }, - { - "label": "@nestjs/throttler", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L31", - "_origin": "ast", - "id": "backend_package_dependencies_nestjs_throttler", - "community": 303, - "community_name": "@nestjs/throttler", - "norm_label": "@nestjs/throttler" - }, - { - "label": "@nestjs/throttler", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L31", - "_origin": "ast", - "id": "nestjs_throttler", - "community": 303, - "community_name": "@nestjs/throttler", - "norm_label": "@nestjs/throttler" - }, - { - "label": "passport", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L41", - "_origin": "ast", - "id": "backend_package_dependencies_passport", - "community": 304, - "community_name": "passport", - "norm_label": "passport" - }, - { - "label": "passport", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L41", - "_origin": "ast", - "id": "passport", - "community": 304, - "community_name": "passport", - "norm_label": "passport" - }, - { - "label": "reflect-metadata", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L43", - "_origin": "ast", - "id": "backend_package_dependencies_reflect_metadata", - "community": 305, - "community_name": "reflect-metadata", - "norm_label": "reflect-metadata" - }, - { - "label": "reflect-metadata", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L43", - "_origin": "ast", - "id": "reflect_metadata", - "community": 305, - "community_name": "reflect-metadata", - "norm_label": "reflect-metadata" - }, { "label": "@eslint/js", "file_type": "code", @@ -33963,50 +34380,6 @@ "community_name": "@eslint/js", "norm_label": "@eslint/js" }, - { - "label": "swagger-ui-express", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L45", - "_origin": "ast", - "id": "backend_package_dependencies_swagger_ui_express", - "community": 307, - "community_name": "swagger-ui-express", - "norm_label": "swagger-ui-express" - }, - { - "label": "swagger-ui-express", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L45", - "_origin": "ast", - "id": "swagger_ui_express", - "community": 307, - "community_name": "swagger-ui-express", - "norm_label": "swagger-ui-express" - }, - { - "label": "eslint-config-prettier", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L64", - "_origin": "ast", - "id": "backend_package_devdependencies_eslint_config_prettier", - "community": 308, - "community_name": "eslint-config-prettier", - "norm_label": "eslint-config-prettier" - }, - { - "label": "eslint-config-prettier", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L64", - "_origin": "ast", - "id": "eslint_config_prettier", - "community": 308, - "community_name": "eslint-config-prettier", - "norm_label": "eslint-config-prettier" - }, { "label": "axios", "file_type": "code", @@ -34381,28 +34754,6 @@ "community_name": "tailwindcss", "norm_label": "tailwindcss" }, - { - "label": "@eslint/eslintrc", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L48", - "_origin": "ast", - "id": "backend_package_devdependencies_eslint_eslintrc", - "community": 311, - "community_name": "@eslint/eslintrc", - "norm_label": "@eslint/eslintrc" - }, - { - "label": "@eslint/eslintrc", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L48", - "_origin": "ast", - "id": "eslint_eslintrc", - "community": 311, - "community_name": "@eslint/eslintrc", - "norm_label": "@eslint/eslintrc" - }, { "label": "@types/passport-jwt", "file_type": "code", @@ -34546,28 +34897,6 @@ "community_name": "MaskableField.tsx", "norm_label": "maskablefield.tsx" }, - { - "label": "@nestjs/cli", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L50", - "_origin": "ast", - "id": "backend_package_devdependencies_nestjs_cli", - "community": 319, - "community_name": "@nestjs/cli", - "norm_label": "@nestjs/cli" - }, - { - "label": "@nestjs/cli", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L50", - "_origin": "ast", - "id": "nestjs_cli", - "community": 319, - "community_name": "@nestjs/cli", - "norm_label": "@nestjs/cli" - }, { "label": "App.tsx", "file_type": "code", @@ -34579,6 +34908,17 @@ "community_name": "adminRoutes.tsx", "norm_label": "app.tsx" }, + { + "label": "RouteErrorBoundary.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_src_components_routeerrorboundary", + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "routeerrorboundary.tsx" + }, { "label": "main.tsx", "file_type": "code", @@ -34591,26 +34931,15 @@ "norm_label": "main.tsx" }, { - "label": "ContactSubmissions.tsx", + "label": "CMS.tsx", "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", + "source_file": "frontend/admin-panel/src/pages/CMS.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_src_pages_contactsubmissions", + "id": "frontend_admin_panel_src_pages_cms", "community": 32, "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": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "dashboard.tsx" + "norm_label": "cms.tsx" }, { "label": "PaymentGatewaysPage.tsx", @@ -34634,17 +34963,6 @@ "community_name": "adminRoutes.tsx", "norm_label": "settings.tsx" }, - { - "label": "ShippingSettingsPage.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/ShippingSettingsPage.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_shippingsettingspage", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "shippingsettingspage.tsx" - }, { "label": "SslSettingsPage.tsx", "file_type": "code", @@ -34656,17 +34974,6 @@ "community_name": "adminRoutes.tsx", "norm_label": "sslsettingspage.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": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "tickets.tsx" - }, { "label": "adminRoutes.tsx", "file_type": "code", @@ -34679,26 +34986,15 @@ "norm_label": "adminroutes.tsx" }, { - "label": "ContactSubmissions", + "label": "CMS", "file_type": "code", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L26", + "source_location": "L23", "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_contactsubmissions", + "id": "frontend_admin_panel_src_routes_adminroutes_cms", "community": 32, "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": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "dashboard" + "norm_label": "cms" }, { "label": "Media", @@ -34755,17 +35051,6 @@ "community_name": "adminRoutes.tsx", "norm_label": "settings" }, - { - "label": "ShippingSettingsPage", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L37", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_shippingsettingspage", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "shippingsettingspage" - }, { "label": "SslSettingsPage", "file_type": "code", @@ -34777,28 +35062,6 @@ "community_name": "adminRoutes.tsx", "norm_label": "sslsettingspage" }, - { - "label": "Tickets", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L42", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_tickets", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "tickets" - }, - { - "label": "api", - "file_type": "code", - "source_file": "frontend/admin-panel/src/services/api.ts", - "source_location": "L23", - "_origin": "ast", - "id": "frontend_admin_panel_src_services_api_api", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "api" - }, { "label": "lazyWithRetry.ts", "file_type": "code", @@ -34810,28 +35073,6 @@ "community_name": "adminRoutes.tsx", "norm_label": "lazywithretry.ts" }, - { - "label": "@nestjs/testing", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L52", - "_origin": "ast", - "id": "backend_package_devdependencies_nestjs_testing", - "community": 320, - "community_name": "@nestjs/testing", - "norm_label": "@nestjs/testing" - }, - { - "label": "@nestjs/testing", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L52", - "_origin": "ast", - "id": "nestjs_testing", - "community": 320, - "community_name": "@nestjs/testing", - "norm_label": "@nestjs/testing" - }, { "label": "orders/page.tsx", "file_type": "code", @@ -34854,50 +35095,6 @@ "community_name": "pets/page.tsx", "norm_label": "pets/page.tsx" }, - { - "label": "prettier", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L68", - "_origin": "ast", - "id": "backend_package_devdependencies_prettier", - "community": 323, - "community_name": "prettier", - "norm_label": "prettier" - }, - { - "label": "prettier", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L68", - "_origin": "ast", - "id": "prettier", - "community": 323, - "community_name": "prettier", - "norm_label": "prettier" - }, - { - "label": "eslint", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L63", - "_origin": "ast", - "id": "backend_package_devdependencies_eslint", - "community": 324, - "community_name": "eslint", - "norm_label": "eslint" - }, - { - "label": "eslint", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L63", - "_origin": "ast", - "id": "backend_package_json_eslint", - "community": 324, - "community_name": "eslint", - "norm_label": "eslint" - }, { "label": "@types/react-dom", "file_type": "code", @@ -34920,28 +35117,6 @@ "community_name": "@types/react-dom", "norm_label": "@types/react-dom" }, - { - "label": "@types/js-yaml", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L58", - "_origin": "ast", - "id": "backend_package_devdependencies_types_js_yaml", - "community": 326, - "community_name": "@types/js-yaml", - "norm_label": "@types/js-yaml" - }, - { - "label": "@types/js-yaml", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L58", - "_origin": "ast", - "id": "types_js_yaml", - "community": 326, - "community_name": "@types/js-yaml", - "norm_label": "@types/js-yaml" - }, { "label": "eslint-plugin-react-refresh", "file_type": "code", @@ -34964,28 +35139,6 @@ "community_name": "eslint-plugin-react-refresh", "norm_label": "eslint-plugin-react-refresh" }, - { - "label": "@types/supertest", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L62", - "_origin": "ast", - "id": "backend_package_devdependencies_types_supertest", - "community": 328, - "community_name": "@types/supertest", - "norm_label": "@types/supertest" - }, - { - "label": "@types/supertest", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L62", - "_origin": "ast", - "id": "types_supertest", - "community": 328, - "community_name": "@types/supertest", - "norm_label": "@types/supertest" - }, { "label": "typescript-eslint", "file_type": "code", @@ -35206,50 +35359,6 @@ "community_name": "WholesaleApplyDto", "norm_label": "injectable" }, - { - "label": "@nestjs/swagger", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L30", - "_origin": "ast", - "id": "backend_package_dependencies_nestjs_swagger", - "community": 330, - "community_name": "@nestjs/swagger", - "norm_label": "@nestjs/swagger" - }, - { - "label": "@nestjs/swagger", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L30", - "_origin": "ast", - "id": "nestjs_swagger", - "community": 330, - "community_name": "@nestjs/swagger", - "norm_label": "@nestjs/swagger" - }, - { - "label": "tailwindcss", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L33", - "_origin": "ast", - "id": "frontend_application_package_devdependencies_tailwindcss", - "community": 331, - "community_name": "tailwindcss", - "norm_label": "tailwindcss" - }, - { - "label": "tailwindcss", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L33", - "_origin": "ast", - "id": "frontend_application_package_json_tailwindcss", - "community": 331, - "community_name": "tailwindcss", - "norm_label": "tailwindcss" - }, { "label": "ApiBearerAuth", "file_type": "code", @@ -35624,6 +35733,39 @@ "community_name": "FaqService", "norm_label": "useguards" }, + { + "label": "faq.module.ts", + "file_type": "code", + "source_file": "backend/src/faq/faq.module.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_faq_faq_module", + "community": 36, + "community_name": "FaqService", + "norm_label": "faq.module.ts" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_faq_faq_module_ts_module", + "community": 36, + "community_name": "FaqService", + "norm_label": "module" + }, + { + "label": "faq.service.ts", + "file_type": "code", + "source_file": "backend/src/faq/faq.service.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_faq_faq_service", + "community": 36, + "community_name": "FaqService", + "norm_label": "faq.service.ts" + }, { "label": "Injectable", "file_type": "code", @@ -36163,17 +36305,6 @@ "community_name": "CategoriesController", "norm_label": "injectable" }, - { - "label": "[id]/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/checkout/success/[id]/page.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_checkout_success_id_page", - "community": 4, - "community_name": "PetProfile.tsx", - "norm_label": "[id]/page.tsx" - }, { "label": "smart-advisor/page.tsx", "file_type": "code", @@ -36182,7 +36313,7 @@ "_origin": "ast", "id": "frontend_application_app_smart_advisor_page", "community": 4, - "community_name": "PetProfile.tsx", + "community_name": "UserDashboard.tsx", "norm_label": "smart-advisor/page.tsx" }, { @@ -36193,31 +36324,9 @@ "_origin": "ast", "id": "frontend_application_app_smart_advisor_page_metadata", "community": 4, - "community_name": "PetProfile.tsx", + "community_name": "UserDashboard.tsx", "norm_label": "metadata" }, - { - "label": "FeaturedProducts.tsx", - "file_type": "code", - "source_file": "frontend/application/components/FeaturedProducts.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_featuredproducts", - "community": 4, - "community_name": "PetProfile.tsx", - "norm_label": "featuredproducts.tsx" - }, - { - "label": "OrderSuccess.tsx", - "file_type": "code", - "source_file": "frontend/application/components/OrderSuccess.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_ordersuccess", - "community": 4, - "community_name": "PetProfile.tsx", - "norm_label": "ordersuccess.tsx" - }, { "label": "PetProfile.tsx", "file_type": "code", @@ -36226,7 +36335,7 @@ "_origin": "ast", "id": "frontend_application_components_petprofile", "community": 4, - "community_name": "PetProfile.tsx", + "community_name": "UserDashboard.tsx", "norm_label": "petprofile.tsx" }, { @@ -36237,7 +36346,7 @@ "_origin": "ast", "id": "frontend_application_components_searchresultspage", "community": 4, - "community_name": "PetProfile.tsx", + "community_name": "UserDashboard.tsx", "norm_label": "searchresultspage.tsx" }, { @@ -36248,7 +36357,7 @@ "_origin": "ast", "id": "frontend_application_components_smartadvisor", "community": 4, - "community_name": "PetProfile.tsx", + "community_name": "UserDashboard.tsx", "norm_label": "smartadvisor.tsx" }, { @@ -36259,7 +36368,7 @@ "_origin": "ast", "id": "frontend_application_components_smartadvisor_current_symptoms", "community": 4, - "community_name": "PetProfile.tsx", + "community_name": "UserDashboard.tsx", "norm_label": "current_symptoms" }, { @@ -36270,7 +36379,7 @@ "_origin": "ast", "id": "frontend_application_components_smartadvisor_medical_histories", "community": 4, - "community_name": "PetProfile.tsx", + "community_name": "UserDashboard.tsx", "norm_label": "medical_histories" }, { @@ -36281,7 +36390,7 @@ "_origin": "ast", "id": "frontend_application_components_tests_featuredproducts_test", "community": 4, - "community_name": "PetProfile.tsx", + "community_name": "UserDashboard.tsx", "norm_label": "featuredproducts.test.tsx" }, { @@ -36292,7 +36401,7 @@ "_origin": "ast", "id": "frontend_application_components_tests_featuredproducts_test_mockproducts", "community": 4, - "community_name": "PetProfile.tsx", + "community_name": "UserDashboard.tsx", "norm_label": "mockproducts" }, { @@ -36303,9 +36412,42 @@ "_origin": "ast", "id": "frontend_application_components_tests_featuredproducts_test_mockpush", "community": 4, - "community_name": "PetProfile.tsx", + "community_name": "UserDashboard.tsx", "norm_label": "mockpush" }, + { + "label": "UserDashboard.tsx", + "file_type": "code", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_userdashboard", + "community": 4, + "community_name": "UserDashboard.tsx", + "norm_label": "userdashboard.tsx" + }, + { + "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": 4, + "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": 4, + "community_name": "UserDashboard.tsx", + "norm_label": "ticketservice" + }, { "label": "usePetStore.ts", "file_type": "code", @@ -36314,7 +36456,7 @@ "_origin": "ast", "id": "frontend_application_lib_store_usepetstore", "community": 4, - "community_name": "PetProfile.tsx", + "community_name": "UserDashboard.tsx", "norm_label": "usepetstore.ts" }, { @@ -36325,20 +36467,9 @@ "_origin": "ast", "id": "frontend_application_lib_store_usepetstore_usepetstore", "community": 4, - "community_name": "PetProfile.tsx", + "community_name": "UserDashboard.tsx", "norm_label": "usepetstore" }, - { - "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": 40, - "community_name": "MediaController", - "norm_label": "media.controller.ts" - }, { "label": "ApiBearerAuth", "file_type": "code", @@ -36482,17 +36613,6 @@ "community_name": "MediaController", "norm_label": "useinterceptors" }, - { - "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": 40, - "community_name": "MediaController", - "norm_label": "media.service.ts" - }, { "label": "Injectable", "file_type": "code", @@ -36911,17 +37031,6 @@ "community_name": "SslController", "norm_label": "useinterceptors" }, - { - "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": 42, - "community_name": "SslController", - "norm_label": "ssl.service.ts" - }, { "label": "Injectable", "file_type": "code", @@ -37813,17 +37922,6 @@ "community_name": "IngredientsService", "norm_label": "injectable" }, - { - "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": 48, - "community_name": "auth.controller.ts", - "norm_label": "auth.controller.ts" - }, { "label": "auth.controller.spec.ts", "file_type": "code", @@ -37832,7 +37930,7 @@ "_origin": "ast", "id": "backend_src_auth_auth_controller_spec", "community": 48, - "community_name": "auth.controller.ts", + "community_name": "AuthController", "norm_label": "auth.controller.spec.ts" }, { @@ -37843,7 +37941,7 @@ "_origin": "ast", "id": "backend_src_auth_auth_controller_ts_apibadrequestresponse", "community": 48, - "community_name": "auth.controller.ts", + "community_name": "AuthController", "norm_label": "apibadrequestresponse" }, { @@ -37854,7 +37952,7 @@ "_origin": "ast", "id": "backend_src_auth_auth_controller_ts_apibearerauth", "community": 48, - "community_name": "auth.controller.ts", + "community_name": "AuthController", "norm_label": "apibearerauth" }, { @@ -37865,7 +37963,7 @@ "_origin": "ast", "id": "backend_src_auth_auth_controller_ts_apiokresponse", "community": 48, - "community_name": "auth.controller.ts", + "community_name": "AuthController", "norm_label": "apiokresponse" }, { @@ -37876,7 +37974,7 @@ "_origin": "ast", "id": "backend_src_auth_auth_controller_ts_apioperation", "community": 48, - "community_name": "auth.controller.ts", + "community_name": "AuthController", "norm_label": "apioperation" }, { @@ -37887,7 +37985,7 @@ "_origin": "ast", "id": "backend_src_auth_auth_controller_ts_apitags", "community": 48, - "community_name": "auth.controller.ts", + "community_name": "AuthController", "norm_label": "apitags" }, { @@ -37898,7 +37996,7 @@ "_origin": "ast", "id": "backend_src_auth_auth_controller_ts_body", "community": 48, - "community_name": "auth.controller.ts", + "community_name": "AuthController", "norm_label": "body" }, { @@ -37909,7 +38007,7 @@ "_origin": "ast", "id": "backend_src_auth_auth_controller_ts_controller", "community": 48, - "community_name": "auth.controller.ts", + "community_name": "AuthController", "norm_label": "controller" }, { @@ -37920,7 +38018,7 @@ "_origin": "ast", "id": "backend_src_auth_auth_controller_ts_post", "community": 48, - "community_name": "auth.controller.ts", + "community_name": "AuthController", "norm_label": "post" }, { @@ -37931,7 +38029,7 @@ "_origin": "ast", "id": "backend_src_auth_auth_controller_ts_req", "community": 48, - "community_name": "auth.controller.ts", + "community_name": "AuthController", "norm_label": "req" }, { @@ -37942,7 +38040,7 @@ "_origin": "ast", "id": "backend_src_auth_auth_controller_ts_throttle", "community": 48, - "community_name": "auth.controller.ts", + "community_name": "AuthController", "norm_label": "throttle" }, { @@ -37953,328 +38051,9 @@ "_origin": "ast", "id": "backend_src_auth_auth_controller_ts_useguards", "community": 48, - "community_name": "auth.controller.ts", + "community_name": "AuthController", "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", - "id": "backend_src_auth_dto_admin_login_dto", - "community": 48, - "community_name": "auth.controller.ts", - "norm_label": "admin-login.dto.ts" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_admin_login_dto_ts_apiproperty", - "community": 48, - "community_name": "auth.controller.ts", - "norm_label": "apiproperty" - }, - { - "label": "IsEmail", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_admin_login_dto_ts_isemail", - "community": 48, - "community_name": "auth.controller.ts", - "norm_label": "isemail" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_admin_login_dto_ts_isnotempty", - "community": 48, - "community_name": "auth.controller.ts", - "norm_label": "isnotempty" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_admin_login_dto_ts_isstring", - "community": 48, - "community_name": "auth.controller.ts", - "norm_label": "isstring" - }, - { - "label": "MinLength", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_admin_login_dto_ts_minlength", - "community": 48, - "community_name": "auth.controller.ts", - "norm_label": "minlength" - }, - { - "label": "login.dto.ts", - "file_type": "code", - "source_file": "backend/src/auth/dto/login.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_auth_dto_login_dto", - "community": 48, - "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": 48, - "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": 48, - "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": 48, - "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": 48, - "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": 48, - "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": 48, - "community_name": "auth.controller.ts", - "norm_label": "apiproperty" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_register_dto_ts_apipropertyoptional", - "community": 48, - "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": 48, - "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": 48, - "community_name": "auth.controller.ts", - "norm_label": "isnotempty" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_register_dto_ts_isoptional", - "community": 48, - "community_name": "auth.controller.ts", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_register_dto_ts_isstring", - "community": 48, - "community_name": "auth.controller.ts", - "norm_label": "isstring" - }, - { - "label": "MinLength", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_register_dto_ts_minlength", - "community": 48, - "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", - "id": "backend_src_auth_dto_send_otp_dto", - "community": 48, - "community_name": "auth.controller.ts", - "norm_label": "send-otp.dto.ts" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_send_otp_dto_ts_apiproperty", - "community": 48, - "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": 48, - "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": 48, - "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": 48, - "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", - "id": "backend_src_auth_dto_verify_otp_dto", - "community": 48, - "community_name": "auth.controller.ts", - "norm_label": "verify-otp.dto.ts" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_verify_otp_dto_ts_apiproperty", - "community": 48, - "community_name": "auth.controller.ts", - "norm_label": "apiproperty" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_verify_otp_dto_ts_isnotempty", - "community": 48, - "community_name": "auth.controller.ts", - "norm_label": "isnotempty" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_verify_otp_dto_ts_isstring", - "community": 48, - "community_name": "auth.controller.ts", - "norm_label": "isstring" - }, - { - "label": "Matches", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_verify_otp_dto_ts_matches", - "community": 48, - "community_name": "auth.controller.ts", - "norm_label": "matches" - }, { "label": "HttpCode", "file_type": "code", @@ -38283,20 +38062,9 @@ "_origin": "ast", "id": "httpcode", "community": 48, - "community_name": "auth.controller.ts", + "community_name": "AuthController", "norm_label": "httpcode" }, - { - "label": "Length", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "length", - "community": 48, - "community_name": "auth.controller.ts", - "norm_label": "length" - }, { "label": "devDependencies", "file_type": "code", @@ -38506,6 +38274,17 @@ "community_name": "devDependencies", "norm_label": "postcss" }, + { + "label": "cms.controller.ts", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_cms_cms_controller", + "community": 5, + "community_name": "CmsController", + "norm_label": "cms.controller.ts" + }, { "label": "ApiBearerAuth", "file_type": "code", @@ -38627,6 +38406,17 @@ "community_name": "CmsController", "norm_label": "useguards" }, + { + "label": "cms.service.ts", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_cms_cms_service", + "community": 5, + "community_name": "CmsController", + "norm_label": "cms.service.ts" + }, { "label": "Injectable", "file_type": "code", @@ -38638,6 +38428,94 @@ "community_name": "CmsController", "norm_label": "injectable" }, + { + "label": "cms.dto.ts", + "file_type": "code", + "source_file": "backend/src/cms/dto/cms.dto.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_cms_dto_cms_dto", + "community": 5, + "community_name": "CmsController", + "norm_label": "cms.dto.ts" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_cms_dto_cms_dto_ts_apiproperty", + "community": 5, + "community_name": "CmsController", + "norm_label": "apiproperty" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_cms_dto_cms_dto_ts_apipropertyoptional", + "community": 5, + "community_name": "CmsController", + "norm_label": "apipropertyoptional" + }, + { + "label": "IsBoolean", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_cms_dto_cms_dto_ts_isboolean", + "community": 5, + "community_name": "CmsController", + "norm_label": "isboolean" + }, + { + "label": "IsNumber", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_cms_dto_cms_dto_ts_isnumber", + "community": 5, + "community_name": "CmsController", + "norm_label": "isnumber" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_cms_dto_cms_dto_ts_isoptional", + "community": 5, + "community_name": "CmsController", + "norm_label": "isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_cms_dto_cms_dto_ts_isstring", + "community": 5, + "community_name": "CmsController", + "norm_label": "isstring" + }, + { + "label": "IsUUID", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "isuuid", + "community": 5, + "community_name": "CmsController", + "norm_label": "isuuid" + }, { "label": "devDependencies", "file_type": "code", @@ -38660,17 +38538,6 @@ "community_name": "devDependencies", "norm_label": "eslint" }, - { - "label": "eslint-config-next", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L31", - "_origin": "ast", - "id": "frontend_application_package_devdependencies_eslint_config_next", - "community": 50, - "community_name": "devDependencies", - "norm_label": "eslint-config-next" - }, { "label": "jsdom", "file_type": "code", @@ -38682,6 +38549,17 @@ "community_name": "devDependencies", "norm_label": "jsdom" }, + { + "label": "tailwindcss", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L33", + "_origin": "ast", + "id": "frontend_application_package_devdependencies_tailwindcss", + "community": 50, + "community_name": "devDependencies", + "norm_label": "tailwindcss" + }, { "label": "@testing-library/jest-dom", "file_type": "code", @@ -38737,17 +38615,6 @@ "community_name": "devDependencies", "norm_label": "vitest" }, - { - "label": "eslint-config-next", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L31", - "_origin": "ast", - "id": "eslint_config_next", - "community": 50, - "community_name": "devDependencies", - "norm_label": "eslint-config-next" - }, { "label": "eslint", "file_type": "concept", @@ -38759,6 +38626,17 @@ "community_name": "devDependencies", "norm_label": "eslint" }, + { + "label": "tailwindcss", + "file_type": "concept", + "source_file": "frontend/application/package.json", + "source_location": "L33", + "_origin": "ast", + "id": "frontend_application_package_json_tailwindcss", + "community": 50, + "community_name": "devDependencies", + "norm_label": "tailwindcss" + }, { "label": "@types/node", "file_type": "concept", @@ -39009,7 +38887,7 @@ "_origin": "ast", "id": "backend_src_prescriptions_prescriptions_controller_ts_apibearerauth", "community": 52, - "community_name": "PrescriptionsController", + "community_name": "PrescriptionsService", "norm_label": "apibearerauth" }, { @@ -39020,7 +38898,7 @@ "_origin": "ast", "id": "backend_src_prescriptions_prescriptions_controller_ts_apioperation", "community": 52, - "community_name": "PrescriptionsController", + "community_name": "PrescriptionsService", "norm_label": "apioperation" }, { @@ -39031,7 +38909,7 @@ "_origin": "ast", "id": "backend_src_prescriptions_prescriptions_controller_ts_apitags", "community": 52, - "community_name": "PrescriptionsController", + "community_name": "PrescriptionsService", "norm_label": "apitags" }, { @@ -39042,7 +38920,7 @@ "_origin": "ast", "id": "backend_src_prescriptions_prescriptions_controller_ts_body", "community": 52, - "community_name": "PrescriptionsController", + "community_name": "PrescriptionsService", "norm_label": "body" }, { @@ -39053,7 +38931,7 @@ "_origin": "ast", "id": "backend_src_prescriptions_prescriptions_controller_ts_controller", "community": 52, - "community_name": "PrescriptionsController", + "community_name": "PrescriptionsService", "norm_label": "controller" }, { @@ -39064,7 +38942,7 @@ "_origin": "ast", "id": "backend_src_prescriptions_prescriptions_controller_ts_get", "community": 52, - "community_name": "PrescriptionsController", + "community_name": "PrescriptionsService", "norm_label": "get" }, { @@ -39075,7 +38953,7 @@ "_origin": "ast", "id": "backend_src_prescriptions_prescriptions_controller_ts_param", "community": 52, - "community_name": "PrescriptionsController", + "community_name": "PrescriptionsService", "norm_label": "param" }, { @@ -39086,7 +38964,7 @@ "_origin": "ast", "id": "backend_src_prescriptions_prescriptions_controller_ts_patch", "community": 52, - "community_name": "PrescriptionsController", + "community_name": "PrescriptionsService", "norm_label": "patch" }, { @@ -39097,7 +38975,7 @@ "_origin": "ast", "id": "backend_src_prescriptions_prescriptions_controller_ts_post", "community": 52, - "community_name": "PrescriptionsController", + "community_name": "PrescriptionsService", "norm_label": "post" }, { @@ -39108,7 +38986,7 @@ "_origin": "ast", "id": "backend_src_prescriptions_prescriptions_controller_ts_req", "community": 52, - "community_name": "PrescriptionsController", + "community_name": "PrescriptionsService", "norm_label": "req" }, { @@ -39119,9 +38997,20 @@ "_origin": "ast", "id": "backend_src_prescriptions_prescriptions_controller_ts_useguards", "community": 52, - "community_name": "PrescriptionsController", + "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": 52, + "community_name": "PrescriptionsService", + "norm_label": "injectable" + }, { "label": "ApiBearerAuth", "file_type": "code", @@ -39266,26 +39155,37 @@ "norm_label": "button.tsx" }, { - "label": "ConfirmModal.tsx", + "label": "Modal.tsx", "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/ConfirmModal.tsx", + "source_file": "frontend/admin-panel/src/components/ui/Modal.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_confirmmodal", + "id": "frontend_admin_panel_src_components_ui_modal", "community": 54, "community_name": "Button.tsx", - "norm_label": "confirmmodal.tsx" + "norm_label": "modal.tsx" }, { - "label": "CMS.tsx", + "label": "maxWidthClasses", "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/CMS.tsx", - "source_location": "L1", + "source_file": "frontend/admin-panel/src/components/ui/Modal.tsx", + "source_location": "L16", "_origin": "ast", - "id": "frontend_admin_panel_src_pages_cms", + "id": "frontend_admin_panel_src_components_ui_modal_maxwidthclasses", "community": 54, "community_name": "Button.tsx", - "norm_label": "cms.tsx" + "norm_label": "maxwidthclasses" + }, + { + "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": 54, + "community_name": "Button.tsx", + "norm_label": "contactsubmissions.tsx" }, { "label": "FAQManager.tsx", @@ -39321,26 +39221,48 @@ "norm_label": "menu_tabs" }, { - "label": "WholesaleApplications.tsx", + "label": "Reviews.tsx", "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", + "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_src_pages_wholesaleapplications", + "id": "frontend_admin_panel_src_pages_reviews", "community": 54, "community_name": "Button.tsx", - "norm_label": "wholesaleapplications.tsx" + "norm_label": "reviews.tsx" }, { - "label": "CMS", + "label": "Tickets.tsx", "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L23", + "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", + "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_cms", + "id": "frontend_admin_panel_src_pages_tickets", "community": 54, "community_name": "Button.tsx", - "norm_label": "cms" + "norm_label": "tickets.tsx" + }, + { + "label": "ZibalPortalPage.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/ZibalPortalPage.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_admin_panel_src_pages_zibalportalpage", + "community": 54, + "community_name": "Button.tsx", + "norm_label": "zibalportalpage.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": 54, + "community_name": "Button.tsx", + "norm_label": "contactsubmissions" }, { "label": "FAQManager", @@ -39365,15 +39287,37 @@ "norm_label": "menumanager" }, { - "label": "WholesaleApplications", + "label": "Reviews", "file_type": "code", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L24", + "source_location": "L43", "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_wholesaleapplications", + "id": "frontend_admin_panel_src_routes_adminroutes_reviews", "community": 54, "community_name": "Button.tsx", - "norm_label": "wholesaleapplications" + "norm_label": "reviews" + }, + { + "label": "Tickets", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L42", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_tickets", + "community": 54, + "community_name": "Button.tsx", + "norm_label": "tickets" + }, + { + "label": "ZibalPortalPage", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L36", + "_origin": "ast", + "id": "frontend_admin_panel_src_routes_adminroutes_zibalportalpage", + "community": 54, + "community_name": "Button.tsx", + "norm_label": "zibalportalpage" }, { "label": "IconPickerModal.tsx", @@ -39467,7 +39411,7 @@ "label": "SHARED_FOOTER_FIELDS", "file_type": "code", "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L664", + "source_location": "L570", "_origin": "ast", "id": "frontend_admin_panel_src_pages_uitexts_shared_footer_fields", "community": 55, @@ -39478,7 +39422,7 @@ "label": "SHARED_HEADER_FIELDS", "file_type": "code", "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L650", + "source_location": "L556", "_origin": "ast", "id": "frontend_admin_panel_src_pages_uitexts_shared_header_fields", "community": 55, @@ -39489,46 +39433,13 @@ "label": "SITE_PAGES", "file_type": "code", "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L273", + "source_location": "L116", "_origin": "ast", "id": "frontend_admin_panel_src_pages_uitexts_site_pages", "community": 55, "community_name": "UITexts.tsx", "norm_label": "site_pages" }, - { - "label": "V1_GROUP_PAGE_MAP", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L200", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_uitexts_v1_group_page_map", - "community": 55, - "community_name": "UITexts.tsx", - "norm_label": "v1_group_page_map" - }, - { - "label": "V1_GROUPS", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L64", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_uitexts_v1_groups", - "community": 55, - "community_name": "UITexts.tsx", - "norm_label": "v1_groups" - }, - { - "label": "V1_PAGE_TABS", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L55", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_uitexts_v1_page_tabs", - "community": 55, - "community_name": "UITexts.tsx", - "norm_label": "v1_page_tabs" - }, { "label": "Blogs", "file_type": "code", @@ -39610,7 +39521,7 @@ "label": "ORDER_STATUS_MAP", "file_type": "code", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L107", + "source_location": "L110", "_origin": "ast", "id": "frontend_admin_panel_src_pages_orders_order_status_map", "community": 56, @@ -39893,92 +39804,26 @@ "norm_label": "your domain \u2014 what you review (only these areas)" }, { - "label": "blog/loading.tsx", + "label": "Injectable", "file_type": "code", - "source_file": "frontend/application/app/blog/loading.tsx", - "source_location": "L1", + "source_file": "", + "source_location": "", "_origin": "ast", - "id": "frontend_application_app_blog_loading", + "id": "backend_src_auth_auth_service_ts_injectable", "community": 58, - "community_name": "UserDashboard.tsx", - "norm_label": "blog/loading.tsx" + "community_name": "AuthService", + "norm_label": "injectable" }, { - "label": "app/loading.tsx", + "label": "phone.utils.ts", "file_type": "code", - "source_file": "frontend/application/app/loading.tsx", + "source_file": "backend/src/common/utils/phone.utils.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_app_loading", + "id": "backend_src_common_utils_phone_utils", "community": 58, - "community_name": "UserDashboard.tsx", - "norm_label": "app/loading.tsx" - }, - { - "label": "shop/loading.tsx", - "file_type": "code", - "source_file": "frontend/application/app/shop/loading.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_shop_loading", - "community": 58, - "community_name": "UserDashboard.tsx", - "norm_label": "shop/loading.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": 58, - "community_name": "UserDashboard.tsx", - "norm_label": "deleteconfirmmodal.tsx" - }, - { - "label": "components/Skeleton.tsx", - "file_type": "code", - "source_file": "frontend/application/components/Skeleton.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_skeleton", - "community": 58, - "community_name": "UserDashboard.tsx", - "norm_label": "components/skeleton.tsx" - }, - { - "label": "UserDashboard.tsx", - "file_type": "code", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_userdashboard", - "community": 58, - "community_name": "UserDashboard.tsx", - "norm_label": "userdashboard.tsx" - }, - { - "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": 58, - "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": 58, - "community_name": "UserDashboard.tsx", - "norm_label": "ticketservice" + "community_name": "AuthService", + "norm_label": "phone.utils.ts" }, { "label": "backend/tsconfig.json", @@ -40329,7 +40174,7 @@ "_origin": "ast", "id": "backend_src_tickets_dto_create_ticket_dto", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": "create-ticket.dto.ts" }, { @@ -40340,7 +40185,7 @@ "_origin": "ast", "id": "backend_src_tickets_dto_create_ticket_dto_ts_apiproperty", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": "apiproperty" }, { @@ -40351,7 +40196,7 @@ "_origin": "ast", "id": "backend_src_tickets_dto_create_ticket_dto_ts_apipropertyoptional", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": "apipropertyoptional" }, { @@ -40362,7 +40207,7 @@ "_origin": "ast", "id": "backend_src_tickets_dto_create_ticket_dto_ts_isnotempty", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": "isnotempty" }, { @@ -40373,7 +40218,7 @@ "_origin": "ast", "id": "backend_src_tickets_dto_create_ticket_dto_ts_isoptional", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": "isoptional" }, { @@ -40384,7 +40229,7 @@ "_origin": "ast", "id": "backend_src_tickets_dto_create_ticket_dto_ts_isstring", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": "isstring" }, { @@ -40395,7 +40240,7 @@ "_origin": "ast", "id": "backend_src_tickets_dto_ticket_query_dto", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": "ticket-query.dto.ts" }, { @@ -40406,7 +40251,7 @@ "_origin": "ast", "id": "backend_src_tickets_dto_ticket_query_dto_ts_apipropertyoptional", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": "apipropertyoptional" }, { @@ -40417,7 +40262,7 @@ "_origin": "ast", "id": "backend_src_tickets_dto_ticket_query_dto_ts_isnumber", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": "isnumber" }, { @@ -40428,7 +40273,7 @@ "_origin": "ast", "id": "backend_src_tickets_dto_ticket_query_dto_ts_isoptional", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": "isoptional" }, { @@ -40439,7 +40284,7 @@ "_origin": "ast", "id": "backend_src_tickets_dto_ticket_query_dto_ts_isstring", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": "isstring" }, { @@ -40450,9 +40295,20 @@ "_origin": "ast", "id": "backend_src_tickets_dto_ticket_query_dto_ts_type", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": "type" }, + { + "label": "tickets.controller.ts", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_tickets_tickets_controller", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": "tickets.controller.ts" + }, { "label": "ApiBearerAuth", "file_type": "code", @@ -40461,7 +40317,7 @@ "_origin": "ast", "id": "backend_src_tickets_tickets_controller_ts_apibearerauth", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": "apibearerauth" }, { @@ -40472,7 +40328,7 @@ "_origin": "ast", "id": "backend_src_tickets_tickets_controller_ts_apioperation", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": "apioperation" }, { @@ -40483,7 +40339,7 @@ "_origin": "ast", "id": "backend_src_tickets_tickets_controller_ts_apitags", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": "apitags" }, { @@ -40494,7 +40350,7 @@ "_origin": "ast", "id": "backend_src_tickets_tickets_controller_ts_body", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": "body" }, { @@ -40505,7 +40361,7 @@ "_origin": "ast", "id": "backend_src_tickets_tickets_controller_ts_controller", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": "controller" }, { @@ -40516,7 +40372,7 @@ "_origin": "ast", "id": "backend_src_tickets_tickets_controller_ts_get", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": "get" }, { @@ -40527,7 +40383,7 @@ "_origin": "ast", "id": "backend_src_tickets_tickets_controller_ts_param", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": "param" }, { @@ -40538,7 +40394,7 @@ "_origin": "ast", "id": "backend_src_tickets_tickets_controller_ts_post", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": "post" }, { @@ -40549,7 +40405,7 @@ "_origin": "ast", "id": "backend_src_tickets_tickets_controller_ts_put", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": "put" }, { @@ -40560,7 +40416,7 @@ "_origin": "ast", "id": "backend_src_tickets_tickets_controller_ts_query", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": "query" }, { @@ -40571,7 +40427,7 @@ "_origin": "ast", "id": "backend_src_tickets_tickets_controller_ts_req", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": "req" }, { @@ -40582,7 +40438,7 @@ "_origin": "ast", "id": "backend_src_tickets_tickets_controller_ts_useguards", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": "useguards" }, { @@ -40593,7 +40449,7 @@ "_origin": "ast", "id": "backend_src_tickets_tickets_service", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": "tickets.service.ts" }, { @@ -40604,7 +40460,7 @@ "_origin": "ast", "id": "backend_src_tickets_tickets_service_ts_injectable", "community": 6, - "community_name": "TicketsService", + "community_name": "tickets.controller.ts", "norm_label": "injectable" }, { @@ -40861,15 +40717,70 @@ "norm_label": "scientific_terms" }, { - "label": "Injectable", + "label": "torob.controller.ts", + "file_type": "code", + "source_file": "backend/src/products/torob.controller.ts", + "source_location": "L1", + "_origin": "ast", + "id": "backend_src_products_torob_controller", + "community": 62, + "community_name": "torob.controller.ts", + "norm_label": "torob.controller.ts" + }, + { + "label": "ApiOperation", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_wiki_service_ts_injectable", + "id": "backend_src_products_torob_controller_ts_apioperation", "community": 62, - "community_name": "WikiService", - "norm_label": "injectable" + "community_name": "torob.controller.ts", + "norm_label": "apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_products_torob_controller_ts_apitags", + "community": 62, + "community_name": "torob.controller.ts", + "norm_label": "apitags" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_products_torob_controller_ts_controller", + "community": 62, + "community_name": "torob.controller.ts", + "norm_label": "controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_products_torob_controller_ts_get", + "community": 62, + "community_name": "torob.controller.ts", + "norm_label": "get" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_products_torob_controller_ts_query", + "community": 62, + "community_name": "torob.controller.ts", + "norm_label": "query" }, { "label": "dependencies", @@ -40904,6 +40815,17 @@ "community_name": "dependencies", "norm_label": "bcryptjs" }, + { + "label": "class-transformer", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L35", + "_origin": "ast", + "id": "backend_package_dependencies_class_transformer", + "community": 63, + "community_name": "dependencies", + "norm_label": "class-transformer" + }, { "label": "class-validator", "file_type": "code", @@ -40926,6 +40848,17 @@ "community_name": "dependencies", "norm_label": "compression" }, + { + "label": "helmet", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L38", + "_origin": "ast", + "id": "backend_package_dependencies_helmet", + "community": 63, + "community_name": "dependencies", + "norm_label": "helmet" + }, { "label": "ioredis", "file_type": "code", @@ -40937,6 +40870,17 @@ "community_name": "dependencies", "norm_label": "ioredis" }, + { + "label": "js-yaml", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L40", + "_origin": "ast", + "id": "backend_package_dependencies_js_yaml", + "community": 63, + "community_name": "dependencies", + "norm_label": "js-yaml" + }, { "label": "@nestjs/common", "file_type": "code", @@ -40948,6 +40892,28 @@ "community_name": "dependencies", "norm_label": "@nestjs/common" }, + { + "label": "@nestjs/core", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L26", + "_origin": "ast", + "id": "backend_package_dependencies_nestjs_core", + "community": 63, + "community_name": "dependencies", + "norm_label": "@nestjs/core" + }, + { + "label": "@nestjs/jwt", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L27", + "_origin": "ast", + "id": "backend_package_dependencies_nestjs_jwt", + "community": 63, + "community_name": "dependencies", + "norm_label": "@nestjs/jwt" + }, { "label": "@nestjs/passport", "file_type": "code", @@ -40970,6 +40936,39 @@ "community_name": "dependencies", "norm_label": "@nestjs/platform-express" }, + { + "label": "@nestjs/swagger", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L30", + "_origin": "ast", + "id": "backend_package_dependencies_nestjs_swagger", + "community": 63, + "community_name": "dependencies", + "norm_label": "@nestjs/swagger" + }, + { + "label": "@nestjs/throttler", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L31", + "_origin": "ast", + "id": "backend_package_dependencies_nestjs_throttler", + "community": 63, + "community_name": "dependencies", + "norm_label": "@nestjs/throttler" + }, + { + "label": "passport", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L41", + "_origin": "ast", + "id": "backend_package_dependencies_passport", + "community": 63, + "community_name": "dependencies", + "norm_label": "passport" + }, { "label": "passport-jwt", "file_type": "code", @@ -40992,6 +40991,17 @@ "community_name": "dependencies", "norm_label": "@prisma/client" }, + { + "label": "reflect-metadata", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L43", + "_origin": "ast", + "id": "backend_package_dependencies_reflect_metadata", + "community": 63, + "community_name": "dependencies", + "norm_label": "reflect-metadata" + }, { "label": "rxjs", "file_type": "code", @@ -41003,6 +41013,17 @@ "community_name": "dependencies", "norm_label": "rxjs" }, + { + "label": "swagger-ui-express", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L45", + "_origin": "ast", + "id": "backend_package_dependencies_swagger_ui_express", + "community": 63, + "community_name": "dependencies", + "norm_label": "swagger-ui-express" + }, { "label": "bcrypt", "file_type": "concept", @@ -41025,6 +41046,17 @@ "community_name": "dependencies", "norm_label": "bcryptjs" }, + { + "label": "class-transformer", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L35", + "_origin": "ast", + "id": "class_transformer", + "community": 63, + "community_name": "dependencies", + "norm_label": "class-transformer" + }, { "label": "class-validator", "file_type": "concept", @@ -41047,6 +41079,17 @@ "community_name": "dependencies", "norm_label": "compression" }, + { + "label": "helmet", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L38", + "_origin": "ast", + "id": "helmet", + "community": 63, + "community_name": "dependencies", + "norm_label": "helmet" + }, { "label": "ioredis", "file_type": "concept", @@ -41058,6 +41101,17 @@ "community_name": "dependencies", "norm_label": "ioredis" }, + { + "label": "js-yaml", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L40", + "_origin": "ast", + "id": "js_yaml", + "community": 63, + "community_name": "dependencies", + "norm_label": "js-yaml" + }, { "label": "@nestjs/common", "file_type": "concept", @@ -41069,6 +41123,28 @@ "community_name": "dependencies", "norm_label": "@nestjs/common" }, + { + "label": "@nestjs/core", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L26", + "_origin": "ast", + "id": "nestjs_core", + "community": 63, + "community_name": "dependencies", + "norm_label": "@nestjs/core" + }, + { + "label": "@nestjs/jwt", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L27", + "_origin": "ast", + "id": "nestjs_jwt", + "community": 63, + "community_name": "dependencies", + "norm_label": "@nestjs/jwt" + }, { "label": "@nestjs/passport", "file_type": "concept", @@ -41091,6 +41167,39 @@ "community_name": "dependencies", "norm_label": "@nestjs/platform-express" }, + { + "label": "@nestjs/swagger", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L30", + "_origin": "ast", + "id": "nestjs_swagger", + "community": 63, + "community_name": "dependencies", + "norm_label": "@nestjs/swagger" + }, + { + "label": "@nestjs/throttler", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L31", + "_origin": "ast", + "id": "nestjs_throttler", + "community": 63, + "community_name": "dependencies", + "norm_label": "@nestjs/throttler" + }, + { + "label": "passport", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L41", + "_origin": "ast", + "id": "passport", + "community": 63, + "community_name": "dependencies", + "norm_label": "passport" + }, { "label": "passport-jwt", "file_type": "concept", @@ -41113,6 +41222,17 @@ "community_name": "dependencies", "norm_label": "@prisma/client" }, + { + "label": "reflect-metadata", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L43", + "_origin": "ast", + "id": "reflect_metadata", + "community": 63, + "community_name": "dependencies", + "norm_label": "reflect-metadata" + }, { "label": "rxjs", "file_type": "concept", @@ -41124,6 +41244,17 @@ "community_name": "dependencies", "norm_label": "rxjs" }, + { + "label": "swagger-ui-express", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L45", + "_origin": "ast", + "id": "swagger_ui_express", + "community": 63, + "community_name": "dependencies", + "norm_label": "swagger-ui-express" + }, { "label": "tsconfig.node.json", "file_type": "code", @@ -41355,17 +41486,6 @@ "community_name": "compilerOptions", "norm_label": "vite.config.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": 65, - "community_name": "admin.service.ts", - "norm_label": "admin.controller.spec.ts" - }, { "label": "admin.service.ts", "file_type": "code", @@ -41377,83 +41497,6 @@ "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": 65, - "community_name": "admin.service.ts", - "norm_label": "product.dto.ts" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_dto_product_dto_ts_apipropertyoptional", - "community": 65, - "community_name": "admin.service.ts", - "norm_label": "apipropertyoptional" - }, - { - "label": "IsArray", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_dto_product_dto_ts_isarray", - "community": 65, - "community_name": "admin.service.ts", - "norm_label": "isarray" - }, - { - "label": "IsBoolean", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_dto_product_dto_ts_isboolean", - "community": 65, - "community_name": "admin.service.ts", - "norm_label": "isboolean" - }, - { - "label": "IsNumber", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_dto_product_dto_ts_isnumber", - "community": 65, - "community_name": "admin.service.ts", - "norm_label": "isnumber" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_dto_product_dto_ts_isoptional", - "community": 65, - "community_name": "admin.service.ts", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_dto_product_dto_ts_isstring", - "community": 65, - "community_name": "admin.service.ts", - "norm_label": "isstring" - }, { "label": "pricing.utils.ts", "file_type": "code", @@ -41498,17 +41541,6 @@ "community_name": "AdminQueryDto", "norm_label": "apiquery" }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_admin_controller_ts_get", - "community": 66, - "community_name": "AdminQueryDto", - "norm_label": "get" - }, { "label": "Query", "file_type": "code", @@ -41564,6 +41596,50 @@ "community_name": "AdminQueryDto", "norm_label": "isstring" }, + { + "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": 67, + "community_name": "admin.module.ts", + "norm_label": "admin.module.ts" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_admin_admin_module_ts_module", + "community": 67, + "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": 67, + "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": 67, + "community_name": "admin.module.ts", + "norm_label": "media.service.ts" + }, { "label": "reports.controller.ts", "file_type": "code", @@ -41572,7 +41648,7 @@ "_origin": "ast", "id": "backend_src_admin_reports_controller", "community": 67, - "community_name": "ReportsController", + "community_name": "admin.module.ts", "norm_label": "reports.controller.ts" }, { @@ -41583,7 +41659,7 @@ "_origin": "ast", "id": "backend_src_admin_reports_controller_ts_apibearerauth", "community": 67, - "community_name": "ReportsController", + "community_name": "admin.module.ts", "norm_label": "apibearerauth" }, { @@ -41594,7 +41670,7 @@ "_origin": "ast", "id": "backend_src_admin_reports_controller_ts_apioperation", "community": 67, - "community_name": "ReportsController", + "community_name": "admin.module.ts", "norm_label": "apioperation" }, { @@ -41605,7 +41681,7 @@ "_origin": "ast", "id": "backend_src_admin_reports_controller_ts_apiquery", "community": 67, - "community_name": "ReportsController", + "community_name": "admin.module.ts", "norm_label": "apiquery" }, { @@ -41616,7 +41692,7 @@ "_origin": "ast", "id": "backend_src_admin_reports_controller_ts_apitags", "community": 67, - "community_name": "ReportsController", + "community_name": "admin.module.ts", "norm_label": "apitags" }, { @@ -41627,7 +41703,7 @@ "_origin": "ast", "id": "backend_src_admin_reports_controller_ts_controller", "community": 67, - "community_name": "ReportsController", + "community_name": "admin.module.ts", "norm_label": "controller" }, { @@ -41638,7 +41714,7 @@ "_origin": "ast", "id": "backend_src_admin_reports_controller_ts_get", "community": 67, - "community_name": "ReportsController", + "community_name": "admin.module.ts", "norm_label": "get" }, { @@ -41649,7 +41725,7 @@ "_origin": "ast", "id": "backend_src_admin_reports_controller_ts_query", "community": 67, - "community_name": "ReportsController", + "community_name": "admin.module.ts", "norm_label": "query" }, { @@ -41660,7 +41736,7 @@ "_origin": "ast", "id": "backend_src_admin_reports_controller_ts_useguards", "community": 67, - "community_name": "ReportsController", + "community_name": "admin.module.ts", "norm_label": "useguards" }, { @@ -41671,7 +41747,7 @@ "_origin": "ast", "id": "backend_src_admin_reports_service", "community": 67, - "community_name": "ReportsController", + "community_name": "admin.module.ts", "norm_label": "reports.service.ts" }, { @@ -41682,7 +41758,51 @@ "_origin": "ast", "id": "backend_src_admin_reports_service_ts_injectable", "community": 67, - "community_name": "ReportsController", + "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": 67, + "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": 67, + "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": 67, + "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": 67, + "community_name": "admin.module.ts", "norm_label": "injectable" }, { @@ -41707,6 +41827,17 @@ "community_name": "useSettingsStore", "norm_label": "b2blandingclient.tsx" }, + { + "label": "BlogPostClient.tsx", + "file_type": "code", + "source_file": "frontend/application/components/BlogPostClient.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_blogpostclient", + "community": 68, + "community_name": "useSettingsStore", + "norm_label": "blogpostclient.tsx" + }, { "label": "BlogPreviewSection.tsx", "file_type": "code", @@ -41718,17 +41849,6 @@ "community_name": "useSettingsStore", "norm_label": "blogpreviewsection.tsx" }, - { - "label": "BrandLogo.tsx", - "file_type": "code", - "source_file": "frontend/application/components/BrandLogo.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_brandlogo", - "community": 68, - "community_name": "useSettingsStore", - "norm_label": "brandlogo.tsx" - }, { "label": "ContactFormClient.tsx", "file_type": "code", @@ -41740,6 +41860,17 @@ "community_name": "useSettingsStore", "norm_label": "contactformclient.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": 68, + "community_name": "useSettingsStore", + "norm_label": "enamadbadge.tsx" + }, { "label": "FAQSection.tsx", "file_type": "code", @@ -41752,15 +41883,15 @@ "norm_label": "faqsection.tsx" }, { - "label": "Footer.tsx", + "label": "FeaturedProducts.tsx", "file_type": "code", - "source_file": "frontend/application/components/Footer.tsx", + "source_file": "frontend/application/components/FeaturedProducts.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_footer", + "id": "frontend_application_components_featuredproducts", "community": 68, "community_name": "useSettingsStore", - "norm_label": "footer.tsx" + "norm_label": "featuredproducts.tsx" }, { "label": "Hero.tsx", @@ -41773,17 +41904,6 @@ "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": 68, - "community_name": "useSettingsStore", - "norm_label": "maintenancepage.tsx" - }, { "label": "OrderDetailsModal.tsx", "file_type": "code", @@ -41795,6 +41915,17 @@ "community_name": "useSettingsStore", "norm_label": "orderdetailsmodal.tsx" }, + { + "label": "SafeImage.tsx", + "file_type": "code", + "source_file": "frontend/application/components/SafeImage.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_safeimage", + "community": 68, + "community_name": "useSettingsStore", + "norm_label": "safeimage.tsx" + }, { "label": "TestimonialsSection.tsx", "file_type": "code", @@ -41806,17 +41937,6 @@ "community_name": "useSettingsStore", "norm_label": "testimonialssection.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": 68, - "community_name": "useSettingsStore", - "norm_label": "footer.test.tsx" - }, { "label": "Hero.test.tsx", "file_type": "code", @@ -41828,6 +41948,61 @@ "community_name": "useSettingsStore", "norm_label": "hero.test.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": 68, + "community_name": "useSettingsStore", + "norm_label": "topupmodal.tsx" + }, + { + "label": "PRESET_AMOUNTS", + "file_type": "code", + "source_file": "frontend/application/components/TopUpModal.tsx", + "source_location": "L18", + "_origin": "ast", + "id": "frontend_application_components_topupmodal_preset_amounts", + "community": 68, + "community_name": "useSettingsStore", + "norm_label": "preset_amounts" + }, + { + "label": "VetGallery.tsx", + "file_type": "code", + "source_file": "frontend/application/components/VetGallery.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_vetgallery", + "community": 68, + "community_name": "useSettingsStore", + "norm_label": "vetgallery.tsx" + }, + { + "label": "FALLBACK_VIDEOS", + "file_type": "code", + "source_file": "frontend/application/components/VetGallery.tsx", + "source_location": "L28", + "_origin": "ast", + "id": "frontend_application_components_vetgallery_fallback_videos", + "community": 68, + "community_name": "useSettingsStore", + "norm_label": "fallback_videos" + }, + { + "label": "VideosPage.tsx", + "file_type": "code", + "source_file": "frontend/application/components/VideosPage.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_videospage", + "community": 68, + "community_name": "useSettingsStore", + "norm_label": "videospage.tsx" + }, { "label": "lib/services/api.ts", "file_type": "code", @@ -41873,15 +42048,26 @@ "norm_label": "baseurl" }, { - "label": "orderService.ts", + "label": "videoService.ts", "file_type": "code", - "source_file": "frontend/application/lib/services/orderService.ts", + "source_file": "frontend/application/lib/services/videoService.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_lib_services_orderservice", + "id": "frontend_application_lib_services_videoservice", "community": 68, "community_name": "useSettingsStore", - "norm_label": "orderservice.ts" + "norm_label": "videoservice.ts" + }, + { + "label": "videoService", + "file_type": "code", + "source_file": "frontend/application/lib/services/videoService.ts", + "source_location": "L30", + "_origin": "ast", + "id": "frontend_application_lib_services_videoservice_videoservice", + "community": 68, + "community_name": "useSettingsStore", + "norm_label": "videoservice" }, { "label": "settingsStore.ts", @@ -41905,28 +42091,6 @@ "community_name": "useSettingsStore", "norm_label": "usesettingsstore" }, - { - "label": "cartStore.test.ts", - "file_type": "code", - "source_file": "frontend/application/lib/store/__tests__/cartStore.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_store_tests_cartstore_test", - "community": 68, - "community_name": "useSettingsStore", - "norm_label": "cartstore.test.ts" - }, - { - "label": "mockProduct", - "file_type": "code", - "source_file": "frontend/application/lib/store/__tests__/cartStore.test.ts", - "source_location": "L20", - "_origin": "ast", - "id": "frontend_application_lib_store_tests_cartstore_test_mockproduct", - "community": 68, - "community_name": "useSettingsStore", - "norm_label": "mockproduct" - }, { "label": "settingsStore.test.ts", "file_type": "code", @@ -41938,17 +42102,6 @@ "community_name": "useSettingsStore", "norm_label": "settingsstore.test.ts" }, - { - "label": "userStore.test.ts", - "file_type": "code", - "source_file": "frontend/application/lib/store/__tests__/userStore.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_store_tests_userstore_test", - "community": 68, - "community_name": "useSettingsStore", - "norm_label": "userstore.test.ts" - }, { "label": "31-module-audit-closure.md", "file_type": "document", @@ -42543,6 +42696,28 @@ "community_name": "getPageMetadata", "norm_label": "shop/page.tsx" }, + { + "label": "track/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/track/page.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_app_track_page", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "track/page.tsx" + }, + { + "label": "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": 71, + "community_name": "getPageMetadata", + "norm_label": "trust-seals/page.tsx" + }, { "label": "wiki/page.tsx", "file_type": "code", @@ -43863,72 +44038,6 @@ "community_name": "ProductsService", "norm_label": "injectable" }, - { - "label": "torob.controller.ts", - "file_type": "code", - "source_file": "backend/src/products/torob.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_products_torob_controller", - "community": 76, - "community_name": "ProductsService", - "norm_label": "torob.controller.ts" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_products_torob_controller_ts_apioperation", - "community": 76, - "community_name": "ProductsService", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_products_torob_controller_ts_apitags", - "community": 76, - "community_name": "ProductsService", - "norm_label": "apitags" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_products_torob_controller_ts_controller", - "community": 76, - "community_name": "ProductsService", - "norm_label": "controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_products_torob_controller_ts_get", - "community": 76, - "community_name": "ProductsService", - "norm_label": "get" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_products_torob_controller_ts_query", - "community": 76, - "community_name": "ProductsService", - "norm_label": "query" - }, { "label": "seo.controller.ts", "file_type": "code", @@ -44259,6 +44368,17 @@ "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", "norm_label": "your identity" }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_common_services_sms_service_ts_injectable", + "community": 8, + "community_name": "SmsService", + "norm_label": "injectable" + }, { "label": "ApiBearerAuth", "file_type": "code", @@ -44267,7 +44387,7 @@ "_origin": "ast", "id": "backend_src_settings_settings_controller_ts_apibearerauth", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": "apibearerauth" }, { @@ -44278,7 +44398,7 @@ "_origin": "ast", "id": "backend_src_settings_settings_controller_ts_apiokresponse", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": "apiokresponse" }, { @@ -44289,7 +44409,7 @@ "_origin": "ast", "id": "backend_src_settings_settings_controller_ts_apioperation", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": "apioperation" }, { @@ -44300,7 +44420,7 @@ "_origin": "ast", "id": "backend_src_settings_settings_controller_ts_apitags", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": "apitags" }, { @@ -44311,7 +44431,7 @@ "_origin": "ast", "id": "backend_src_settings_settings_controller_ts_body", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": "body" }, { @@ -44322,7 +44442,7 @@ "_origin": "ast", "id": "backend_src_settings_settings_controller_ts_controller", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": "controller" }, { @@ -44333,7 +44453,7 @@ "_origin": "ast", "id": "backend_src_settings_settings_controller_ts_delete", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": "delete" }, { @@ -44344,7 +44464,7 @@ "_origin": "ast", "id": "backend_src_settings_settings_controller_ts_get", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": "get" }, { @@ -44355,7 +44475,7 @@ "_origin": "ast", "id": "backend_src_settings_settings_controller_ts_param", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": "param" }, { @@ -44366,7 +44486,7 @@ "_origin": "ast", "id": "backend_src_settings_settings_controller_ts_patch", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": "patch" }, { @@ -44377,7 +44497,7 @@ "_origin": "ast", "id": "backend_src_settings_settings_controller_ts_post", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": "post" }, { @@ -44388,7 +44508,7 @@ "_origin": "ast", "id": "backend_src_settings_settings_controller_ts_put", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": "put" }, { @@ -44399,7 +44519,7 @@ "_origin": "ast", "id": "backend_src_settings_settings_controller_ts_query", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": "query" }, { @@ -44410,7 +44530,7 @@ "_origin": "ast", "id": "backend_src_settings_settings_controller_ts_useguards", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": "useguards" }, { @@ -44421,7 +44541,7 @@ "_origin": "ast", "id": "backend_src_settings_settings_service_ts_injectable", "community": 8, - "community_name": "SettingsController", + "community_name": "SmsService", "norm_label": "injectable" }, { @@ -45558,103 +45678,92 @@ "norm_label": "your domain \u2014 what you review (only these areas)" }, { - "label": "auth.constants.ts", + "label": "register.dto.ts", "file_type": "code", - "source_file": "backend/src/auth/auth.constants.ts", + "source_file": "backend/src/auth/dto/register.dto.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_auth_auth_constants", + "id": "backend_src_auth_dto_register_dto", "community": 85, - "community_name": "auth.module.ts", - "norm_label": "auth.constants.ts" + "community_name": "RegisterDto", + "norm_label": "register.dto.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": 85, - "community_name": "auth.module.ts", - "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": 85, - "community_name": "auth.module.ts", - "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": 85, - "community_name": "auth.module.ts", - "norm_label": "auth.module.ts" - }, - { - "label": "Module", + "label": "ApiProperty", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_auth_auth_module_ts_module", + "id": "backend_src_auth_dto_register_dto_ts_apiproperty", "community": 85, - "community_name": "auth.module.ts", - "norm_label": "module" + "community_name": "RegisterDto", + "norm_label": "apiproperty" }, { - "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": 85, - "community_name": "auth.module.ts", - "norm_label": "jwt.strategy.ts" - }, - { - "label": "Injectable", + "label": "ApiPropertyOptional", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_auth_jwt_strategy_ts_injectable", + "id": "backend_src_auth_dto_register_dto_ts_apipropertyoptional", "community": 85, - "community_name": "auth.module.ts", - "norm_label": "injectable" + "community_name": "RegisterDto", + "norm_label": "apipropertyoptional" }, { - "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": 85, - "community_name": "auth.module.ts", - "norm_label": "users.module.ts" - }, - { - "label": "Module", + "label": "IsEmail", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_users_users_module_ts_module", + "id": "backend_src_auth_dto_register_dto_ts_isemail", "community": 85, - "community_name": "auth.module.ts", - "norm_label": "module" + "community_name": "RegisterDto", + "norm_label": "isemail" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_auth_dto_register_dto_ts_isnotempty", + "community": 85, + "community_name": "RegisterDto", + "norm_label": "isnotempty" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_auth_dto_register_dto_ts_isoptional", + "community": 85, + "community_name": "RegisterDto", + "norm_label": "isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_auth_dto_register_dto_ts_isstring", + "community": 85, + "community_name": "RegisterDto", + "norm_label": "isstring" + }, + { + "label": "MinLength", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "id": "backend_src_auth_dto_register_dto_ts_minlength", + "community": 85, + "community_name": "RegisterDto", + "norm_label": "minlength" }, { "label": "payment-gateway.interface.ts", @@ -45895,7 +46004,7 @@ "_origin": "ast", "id": "backend_src_payment_dto_ebank_checkout_dto", "community": 88, - "community_name": "payment.controller.ts", + "community_name": "CreateEBankCheckoutDto", "norm_label": "ebank-checkout.dto.ts" }, { @@ -45906,7 +46015,7 @@ "_origin": "ast", "id": "backend_src_payment_dto_ebank_checkout_dto_ts_apiproperty", "community": 88, - "community_name": "payment.controller.ts", + "community_name": "CreateEBankCheckoutDto", "norm_label": "apiproperty" }, { @@ -45917,7 +46026,7 @@ "_origin": "ast", "id": "backend_src_payment_dto_ebank_checkout_dto_ts_apipropertyoptional", "community": 88, - "community_name": "payment.controller.ts", + "community_name": "CreateEBankCheckoutDto", "norm_label": "apipropertyoptional" }, { @@ -45928,7 +46037,7 @@ "_origin": "ast", "id": "backend_src_payment_dto_ebank_checkout_dto_ts_isnotempty", "community": 88, - "community_name": "payment.controller.ts", + "community_name": "CreateEBankCheckoutDto", "norm_label": "isnotempty" }, { @@ -45939,7 +46048,7 @@ "_origin": "ast", "id": "backend_src_payment_dto_ebank_checkout_dto_ts_isnumber", "community": 88, - "community_name": "payment.controller.ts", + "community_name": "CreateEBankCheckoutDto", "norm_label": "isnumber" }, { @@ -45950,7 +46059,7 @@ "_origin": "ast", "id": "backend_src_payment_dto_ebank_checkout_dto_ts_isoptional", "community": 88, - "community_name": "payment.controller.ts", + "community_name": "CreateEBankCheckoutDto", "norm_label": "isoptional" }, { @@ -45961,7 +46070,7 @@ "_origin": "ast", "id": "backend_src_payment_dto_ebank_checkout_dto_ts_isstring", "community": 88, - "community_name": "payment.controller.ts", + "community_name": "CreateEBankCheckoutDto", "norm_label": "isstring" }, { @@ -45972,130 +46081,9 @@ "_origin": "ast", "id": "backend_src_payment_dto_ebank_checkout_dto_ts_min", "community": 88, - "community_name": "payment.controller.ts", + "community_name": "CreateEBankCheckoutDto", "norm_label": "min" }, - { - "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": 88, - "community_name": "payment.controller.ts", - "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": 88, - "community_name": "payment.controller.ts", - "norm_label": "apiproperty" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_dto_initiate_payment_dto_ts_apipropertyoptional", - "community": 88, - "community_name": "payment.controller.ts", - "norm_label": "apipropertyoptional" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_dto_initiate_payment_dto_ts_isnotempty", - "community": 88, - "community_name": "payment.controller.ts", - "norm_label": "isnotempty" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_dto_initiate_payment_dto_ts_isoptional", - "community": 88, - "community_name": "payment.controller.ts", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_dto_initiate_payment_dto_ts_isstring", - "community": 88, - "community_name": "payment.controller.ts", - "norm_label": "isstring" - }, - { - "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": 88, - "community_name": "payment.controller.ts", - "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": 88, - "community_name": "payment.controller.ts", - "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": 88, - "community_name": "payment.controller.ts", - "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": 88, - "community_name": "payment.controller.ts", - "norm_label": "isstring" - }, - { - "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": 88, - "community_name": "payment.controller.ts", - "norm_label": "payment.controller.ts" - }, { "label": "seed.ts", "file_type": "code", @@ -46195,6 +46183,83 @@ "community_name": "devDependencies", "norm_label": "devdependencies" }, + { + "label": "eslint", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L63", + "_origin": "ast", + "id": "backend_package_devdependencies_eslint", + "community": 9, + "community_name": "devDependencies", + "norm_label": "eslint" + }, + { + "label": "eslint-config-prettier", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L64", + "_origin": "ast", + "id": "backend_package_devdependencies_eslint_config_prettier", + "community": 9, + "community_name": "devDependencies", + "norm_label": "eslint-config-prettier" + }, + { + "label": "@eslint/eslintrc", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L48", + "_origin": "ast", + "id": "backend_package_devdependencies_eslint_eslintrc", + "community": 9, + "community_name": "devDependencies", + "norm_label": "@eslint/eslintrc" + }, + { + "label": "jest", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L67", + "_origin": "ast", + "id": "backend_package_devdependencies_jest", + "community": 9, + "community_name": "devDependencies", + "norm_label": "jest" + }, + { + "label": "@nestjs/cli", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L50", + "_origin": "ast", + "id": "backend_package_devdependencies_nestjs_cli", + "community": 9, + "community_name": "devDependencies", + "norm_label": "@nestjs/cli" + }, + { + "label": "@nestjs/testing", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L52", + "_origin": "ast", + "id": "backend_package_devdependencies_nestjs_testing", + "community": 9, + "community_name": "devDependencies", + "norm_label": "@nestjs/testing" + }, + { + "label": "prettier", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L68", + "_origin": "ast", + "id": "backend_package_devdependencies_prettier", + "community": 9, + "community_name": "devDependencies", + "norm_label": "prettier" + }, { "label": "ts-jest", "file_type": "code", @@ -46218,15 +46283,26 @@ "norm_label": "@types/bcryptjs" }, { - "label": "@types/node", + "label": "@types/js-yaml", "file_type": "code", "source_file": "backend/package.json", - "source_location": "L60", + "source_location": "L58", "_origin": "ast", - "id": "backend_package_devdependencies_types_node", + "id": "backend_package_devdependencies_types_js_yaml", "community": 9, "community_name": "devDependencies", - "norm_label": "@types/node" + "norm_label": "@types/js-yaml" + }, + { + "label": "@types/supertest", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L62", + "_origin": "ast", + "id": "backend_package_devdependencies_types_supertest", + "community": 9, + "community_name": "devDependencies", + "norm_label": "@types/supertest" }, { "label": "typescript", @@ -46240,15 +46316,15 @@ "norm_label": "typescript" }, { - "label": "@types/node", + "label": "eslint", "file_type": "concept", "source_file": "backend/package.json", - "source_location": "L60", + "source_location": "L63", "_origin": "ast", - "id": "backend_package_json_types_node", + "id": "backend_package_json_eslint", "community": 9, "community_name": "devDependencies", - "norm_label": "@types/node" + "norm_label": "eslint" }, { "label": "typescript", @@ -46261,6 +46337,72 @@ "community_name": "devDependencies", "norm_label": "typescript" }, + { + "label": "eslint-config-prettier", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L64", + "_origin": "ast", + "id": "eslint_config_prettier", + "community": 9, + "community_name": "devDependencies", + "norm_label": "eslint-config-prettier" + }, + { + "label": "@eslint/eslintrc", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L48", + "_origin": "ast", + "id": "eslint_eslintrc", + "community": 9, + "community_name": "devDependencies", + "norm_label": "@eslint/eslintrc" + }, + { + "label": "jest", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L67", + "_origin": "ast", + "id": "jest", + "community": 9, + "community_name": "devDependencies", + "norm_label": "jest" + }, + { + "label": "@nestjs/cli", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L50", + "_origin": "ast", + "id": "nestjs_cli", + "community": 9, + "community_name": "devDependencies", + "norm_label": "@nestjs/cli" + }, + { + "label": "@nestjs/testing", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L52", + "_origin": "ast", + "id": "nestjs_testing", + "community": 9, + "community_name": "devDependencies", + "norm_label": "@nestjs/testing" + }, + { + "label": "prettier", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L68", + "_origin": "ast", + "id": "prettier", + "community": 9, + "community_name": "devDependencies", + "norm_label": "prettier" + }, { "label": "ts-jest", "file_type": "concept", @@ -46283,6 +46425,193 @@ "community_name": "devDependencies", "norm_label": "@types/bcryptjs" }, + { + "label": "@types/js-yaml", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L58", + "_origin": "ast", + "id": "types_js_yaml", + "community": 9, + "community_name": "devDependencies", + "norm_label": "@types/js-yaml" + }, + { + "label": "@types/supertest", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L62", + "_origin": "ast", + "id": "types_supertest", + "community": 9, + "community_name": "devDependencies", + "norm_label": "@types/supertest" + }, + { + "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": 90, + "community_name": "useCartStore", + "norm_label": "[id]/page.tsx" + }, + { + "label": "B2BPortal", + "file_type": "code", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L15", + "_origin": "ast", + "id": "frontend_application_app_clientlayout_b2bportal", + "community": 90, + "community_name": "useCartStore", + "norm_label": "b2bportal" + }, + { + "label": "CartDrawer", + "file_type": "code", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L12", + "_origin": "ast", + "id": "frontend_application_app_clientlayout_cartdrawer", + "community": 90, + "community_name": "useCartStore", + "norm_label": "cartdrawer" + }, + { + "label": "B2BPortal.tsx", + "file_type": "code", + "source_file": "frontend/application/components/B2BPortal.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_b2bportal", + "community": 90, + "community_name": "useCartStore", + "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": 90, + "community_name": "useCartStore", + "norm_label": "cartdrawer.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": 90, + "community_name": "useCartStore", + "norm_label": "deleteconfirmmodal.tsx" + }, + { + "label": "OrderSuccess.tsx", + "file_type": "code", + "source_file": "frontend/application/components/OrderSuccess.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_ordersuccess", + "community": 90, + "community_name": "useCartStore", + "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": 90, + "community_name": "useCartStore", + "norm_label": "ordertracking.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": 90, + "community_name": "useCartStore", + "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": 90, + "community_name": "useCartStore", + "norm_label": "mockproduct" + }, + { + "label": "orderService.ts", + "file_type": "code", + "source_file": "frontend/application/lib/services/orderService.ts", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_lib_services_orderservice", + "community": 90, + "community_name": "useCartStore", + "norm_label": "orderservice.ts" + }, + { + "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": 90, + "community_name": "useCartStore", + "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": 90, + "community_name": "useCartStore", + "norm_label": "usecartstore" + }, + { + "label": "cartStore.test.ts", + "file_type": "code", + "source_file": "frontend/application/lib/store/__tests__/cartStore.test.ts", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_lib_store_tests_cartstore_test", + "community": 90, + "community_name": "useCartStore", + "norm_label": "cartstore.test.ts" + }, + { + "label": "mockProduct", + "file_type": "code", + "source_file": "frontend/application/lib/store/__tests__/cartStore.test.ts", + "source_location": "L20", + "_origin": "ast", + "id": "frontend_application_lib_store_tests_cartstore_test_mockproduct", + "community": 90, + "community_name": "useCartStore", + "norm_label": "mockproduct" + }, { "label": "02-audit-plan.md", "file_type": "document", @@ -46833,6 +47162,39 @@ "community_name": "OrdersService", "norm_label": "validatenested" }, + { + "label": "blog/loading.tsx", + "file_type": "code", + "source_file": "frontend/application/app/blog/loading.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_app_blog_loading", + "community": 93, + "community_name": "ArchivePage.tsx", + "norm_label": "blog/loading.tsx" + }, + { + "label": "app/loading.tsx", + "file_type": "code", + "source_file": "frontend/application/app/loading.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_app_loading", + "community": 93, + "community_name": "ArchivePage.tsx", + "norm_label": "app/loading.tsx" + }, + { + "label": "shop/loading.tsx", + "file_type": "code", + "source_file": "frontend/application/app/shop/loading.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_app_shop_loading", + "community": 93, + "community_name": "ArchivePage.tsx", + "norm_label": "shop/loading.tsx" + }, { "label": "ArchivePage.tsx", "file_type": "code", @@ -46877,6 +47239,17 @@ "community_name": "ArchivePage.tsx", "norm_label": "bannerplacement.tsx" }, + { + "label": "components/Skeleton.tsx", + "file_type": "code", + "source_file": "frontend/application/components/Skeleton.tsx", + "source_location": "L1", + "_origin": "ast", + "id": "frontend_application_components_skeleton", + "community": 93, + "community_name": "ArchivePage.tsx", + "norm_label": "components/skeleton.tsx" + }, { "label": "types.ts", "file_type": "code", @@ -47061,7 +47434,7 @@ "_origin": "ast", "id": "frontend_application_app_blog_slug_page", "community": 95, - "community_name": "wiki/[slug]/page.tsx", + "community_name": "getSeoConfig", "norm_label": "blog/[slug]/page.tsx" }, { @@ -47072,7 +47445,7 @@ "_origin": "ast", "id": "frontend_application_app_blog_slug_page_revalidate", "community": 95, - "community_name": "wiki/[slug]/page.tsx", + "community_name": "getSeoConfig", "norm_label": "revalidate" }, { @@ -47083,7 +47456,7 @@ "_origin": "ast", "id": "frontend_application_app_shop_slug_page", "community": 95, - "community_name": "wiki/[slug]/page.tsx", + "community_name": "getSeoConfig", "norm_label": "shop/[slug]/page.tsx" }, { @@ -47094,20 +47467,9 @@ "_origin": "ast", "id": "frontend_application_app_shop_slug_page_revalidate", "community": 95, - "community_name": "wiki/[slug]/page.tsx", + "community_name": "getSeoConfig", "norm_label": "revalidate" }, - { - "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": 95, - "community_name": "wiki/[slug]/page.tsx", - "norm_label": "wiki/[slug]/page.tsx" - }, { "label": "application/tsconfig.json", "file_type": "code", @@ -47647,17 +48009,6 @@ "community_name": "scripts", "norm_label": "test:watch" }, - { - "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": 99, - "community_name": "BlogsController", - "norm_label": "blogs/blogs.controller.ts" - }, { "label": "ApiNotFoundResponse", "file_type": "code", @@ -47779,39 +48130,6 @@ "community_name": "BlogsController", "norm_label": "throttle" }, - { - "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": 99, - "community_name": "BlogsController", - "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": 99, - "community_name": "BlogsController", - "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": 99, - "community_name": "BlogsController", - "norm_label": "blogs/blogs.service.ts" - }, { "label": "Vazirmatn Authors", "_origin": "semantic", @@ -48372,7 +48690,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1281", + "source_location": "L1458", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice_applyglobalmargins", @@ -48385,7 +48703,7 @@ "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1330", + "source_location": "L1507", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice_applyglobalmargins", @@ -48396,7 +48714,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1400", + "source_location": "L1577", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice_bulkpriceadjustment", @@ -48409,7 +48727,7 @@ "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1453", + "source_location": "L1630", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice_bulkpriceadjustment", @@ -48421,7 +48739,7 @@ "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L218", + "source_location": "L221", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice_createuser", @@ -48433,7 +48751,7 @@ "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1234", + "source_location": "L1411", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice_updatepricingsettings", @@ -48444,7 +48762,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1017", + "source_location": "L1163", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice_updatesettings", @@ -48457,7 +48775,7 @@ "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L273", + "source_location": "L276", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice_updateuser", @@ -48732,7 +49050,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L482", + "source_location": "L816", "weight": 1.0, "_origin": "ast", "source": "backend_src_common_services_sms_service_smsservice_addpattern", @@ -48744,7 +49062,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L492", + "source_location": "L826", "weight": 1.0, "_origin": "ast", "source": "backend_src_common_services_sms_service_smsservice_addpattern", @@ -48756,7 +49074,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L505", + "source_location": "L839", "weight": 1.0, "_origin": "ast", "source": "backend_src_common_services_sms_service_smsservice_addpattern", @@ -48768,7 +49086,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L560", + "source_location": "L894", "weight": 1.0, "_origin": "ast", "source": "backend_src_common_services_sms_service_smsservice_editpattern", @@ -48780,7 +49098,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L570", + "source_location": "L904", "weight": 1.0, "_origin": "ast", "source": "backend_src_common_services_sms_service_smsservice_editpattern", @@ -48792,7 +49110,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L582", + "source_location": "L916", "weight": 1.0, "_origin": "ast", "source": "backend_src_common_services_sms_service_smsservice_editpattern", @@ -48804,7 +49122,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L305", + "source_location": "L545", "weight": 1.0, "_origin": "ast", "source": "backend_src_common_services_sms_service_smsservice_getcredit", @@ -48816,7 +49134,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L371", + "source_location": "L644", "weight": 1.0, "_origin": "ast", "source": "backend_src_common_services_sms_service_smsservice_getpatterns", @@ -48828,7 +49146,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L376", + "source_location": "L649", "weight": 1.0, "_origin": "ast", "source": "backend_src_common_services_sms_service_smsservice_getpatterns", @@ -48840,7 +49158,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L380", + "source_location": "L653", "weight": 1.0, "_origin": "ast", "source": "backend_src_common_services_sms_service_smsservice_getpatterns", @@ -48852,7 +49170,19 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L985", + "source_location": "L619", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service_smsservice_renderpatternmessage", + "target": "backend_src_common_services_sms_service_smsservice_getpatterns", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L1338", "weight": 1.0, "_origin": "ast", "source": "backend_src_common_services_sms_service_smsservice_sendb2bnotification", @@ -48864,7 +49194,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L986", + "source_location": "L1339", "weight": 1.0, "_origin": "ast", "source": "backend_src_common_services_sms_service_smsservice_sendb2bnotification", @@ -48876,7 +49206,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L951", + "source_location": "L1304", "weight": 1.0, "_origin": "ast", "source": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation", @@ -48888,7 +49218,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L953", + "source_location": "L1306", "weight": 1.0, "_origin": "ast", "source": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation", @@ -48900,7 +49230,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L933", + "source_location": "L1286", "weight": 1.0, "_origin": "ast", "source": "backend_src_common_services_sms_service_smsservice_sendotp", @@ -48912,7 +49242,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L934", + "source_location": "L1287", "weight": 1.0, "_origin": "ast", "source": "backend_src_common_services_sms_service_smsservice_sendotp", @@ -48924,7 +49254,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L680", + "source_location": "L1014", "weight": 1.0, "_origin": "ast", "source": "backend_src_common_services_sms_service_smsservice_sendpatternsms", @@ -48936,7 +49266,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L685", + "source_location": "L1019", "weight": 1.0, "_origin": "ast", "source": "backend_src_common_services_sms_service_smsservice_sendpatternsms", @@ -48948,7 +49278,19 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L1002", + "source_location": "L1054", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service_smsservice_sendpatternsms", + "target": "backend_src_common_services_sms_service_smsservice_renderpatternmessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L1355", "weight": 1.0, "_origin": "ast", "source": "backend_src_common_services_sms_service_smsservice_sendpetcarereminder", @@ -48960,7 +49302,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L1004", + "source_location": "L1357", "weight": 1.0, "_origin": "ast", "source": "backend_src_common_services_sms_service_smsservice_sendpetcarereminder", @@ -48972,7 +49314,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L969", + "source_location": "L1322", "weight": 1.0, "_origin": "ast", "source": "backend_src_common_services_sms_service_smsservice_sendshippingnotification", @@ -48984,7 +49326,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L970", + "source_location": "L1323", "weight": 1.0, "_origin": "ast", "source": "backend_src_common_services_sms_service_smsservice_sendshippingnotification", @@ -48996,7 +49338,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L1016", + "source_location": "L1369", "weight": 1.0, "_origin": "ast", "source": "backend_src_common_services_sms_service_smsservice_sendsms", @@ -49008,7 +49350,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L1018", + "source_location": "L1371", "weight": 1.0, "_origin": "ast", "source": "backend_src_common_services_sms_service_smsservice_sendsms", @@ -49020,7 +49362,31 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L816", + "source_location": "L294", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service_smsservice_testrule", + "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": "L343", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service_smsservice_testrule", + "target": "backend_src_common_services_sms_service_smsservice_testsms", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L1163", "weight": 1.0, "_origin": "ast", "source": "backend_src_common_services_sms_service_smsservice_testsms", @@ -49032,13 +49398,85 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L820", + "source_location": "L1167", "weight": 1.0, "_origin": "ast", "source": "backend_src_common_services_sms_service_smsservice_testsms", "target": "backend_src_common_services_sms_service_smsservice_recordlog", "confidence_score": 1.0 }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L1190", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service_smsservice_testsms", + "target": "backend_src_common_services_sms_service_smsservice_renderpatternmessage", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service_smsservice_triggerevent", + "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": "L221", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service_smsservice_triggerevent", + "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": "L243", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service_smsservice_triggerevent", + "target": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L253", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service_smsservice_triggerevent", + "target": "backend_src_common_services_sms_service_smsservice_sendshippingnotification", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L262", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service_smsservice_triggerevent", + "target": "backend_src_common_services_sms_service_smsservice_sendb2bnotification", + "confidence_score": 1.0 + }, { "relation": "calls", "context": "call", @@ -49056,7 +49494,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L178", + "source_location": "L168", "weight": 1.0, "_origin": "ast", "source": "backend_src_contact_contact_service_contactservice_updatecontactinfoitems", @@ -49176,13 +49614,49 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L486", + "source_location": "L259", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_orders_orders_service_ordersservice_create", + "target": "backend_src_orders_orders_service_ordersservice_buildordereventdata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L597", "weight": 1.0, "_origin": "ast", "source": "backend_src_orders_orders_service_ordersservice_retrypayment", "target": "backend_src_orders_orders_service_ordersservice_create", "confidence_score": 1.0 }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L628", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_orders_orders_service_ordersservice_retrypayment", + "target": "backend_src_orders_orders_service_ordersservice_buildordereventdata", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L448", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_orders_orders_service_ordersservice_updatestatus", + "target": "backend_src_orders_orders_service_ordersservice_buildordereventdata", + "confidence_score": 1.0 + }, { "relation": "calls", "context": "call", @@ -49224,7 +49698,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L873", + "source_location": "L1006", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_service_paymentservice_adminliveinquiry", @@ -49236,7 +49710,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L581", + "source_location": "L714", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_service_paymentservice_reconcilependingtransactions", @@ -50040,7 +50514,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L532", + "source_location": "L568", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice_updatecategorysetting", @@ -50088,7 +50562,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/users/users.service.ts", - "source_location": "L269", + "source_location": "L274", "weight": 1.0, "_origin": "ast", "source": "backend_src_users_users_service_usersservice_setdefaultaddress", @@ -50100,7 +50574,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/users/users.service.ts", - "source_location": "L290", + "source_location": "L295", "weight": 1.0, "_origin": "ast", "source": "backend_src_users_users_service_usersservice_topupwallet", @@ -50113,7 +50587,7 @@ "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "backend/src/users/users.service.ts", - "source_location": "L138", + "source_location": "L143", "weight": 1.0, "_origin": "ast", "source": "backend_src_users_users_service_usersservice_update", @@ -50124,7 +50598,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "backend/src/users/users.service.ts", - "source_location": "L243", + "source_location": "L248", "weight": 1.0, "_origin": "ast", "source": "backend_src_users_users_service_usersservice_updateaddress", @@ -50268,7 +50742,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L427", + "source_location": "L478", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_orders_orders", @@ -50280,7 +50754,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L727", + "source_location": "L778", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_orders_orders", @@ -50293,7 +50767,7 @@ "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L2271", + "source_location": "L2392", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_products_products", @@ -50316,7 +50790,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L818", + "source_location": "L1118", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_smssettingspage_smssettingspage", @@ -50364,7 +50838,19 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "frontend/application/app/api/media/[...path]/route.ts", - "source_location": "L39", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_api_media_path_route_get", + "target": "frontend_application_app_api_media_path_route_getmimetype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/api/media/[...path]/route.ts", + "source_location": "L65", "weight": 1.0, "_origin": "ast", "source": "frontend_application_app_api_media_path_route_get", @@ -50376,7 +50862,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "frontend/application/app/api/media/[...path]/route.ts", - "source_location": "L116", + "source_location": "L162", "weight": 1.0, "_origin": "ast", "source": "frontend_application_app_api_media_path_route_head", @@ -50448,7 +50934,19 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "frontend/application/app/api/uploads/[...path]/route.ts", - "source_location": "L41", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_api_uploads_path_route_get", + "target": "frontend_application_app_api_uploads_path_route_getmimetype", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/api/uploads/[...path]/route.ts", + "source_location": "L67", "weight": 1.0, "_origin": "ast", "source": "frontend_application_app_api_uploads_path_route_get", @@ -50460,7 +50958,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "frontend/application/app/api/uploads/[...path]/route.ts", - "source_location": "L119", + "source_location": "L164", "weight": 1.0, "_origin": "ast", "source": "frontend_application_app_api_uploads_path_route_head", @@ -50844,7 +51342,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "frontend/application/app/page.tsx", - "source_location": "L33", + "source_location": "L36", "weight": 1.0, "_origin": "ast", "source": "frontend_application_app_page_home", @@ -51523,18 +52021,6 @@ "target": "frontend_application_components_catalog_flipbookcatalog_normalizesearchtext", "confidence_score": 1.0 }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L132", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_checkoutpage_checkoutpage", - "target": "frontend_application_lib_utils_topersian" - }, { "relation": "calls", "context": "call", @@ -51545,18 +52031,6 @@ "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_checkoutpage_checkoutpage", - "target": "frontend_application_components_addressmodal_validateaddressform" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L141", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_checkoutpage_checkoutpage", "target": "frontend_application_components_addressmodal_normalizedigits" }, { @@ -51565,11 +52039,23 @@ "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L35", + "source_location": "L136", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_checkoutpage_checkoutpage", - "target": "frontend_application_lib_store_cartstore_usecartstore" + "target": "frontend_application_lib_utils_topersian" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/CheckoutPage.tsx", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_checkoutpage_checkoutpage", + "target": "frontend_application_components_addressmodal_validateaddressform" }, { "relation": "calls", @@ -51581,7 +52067,7 @@ "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_checkoutpage_checkoutpage", - "target": "frontend_application_lib_store_usepetstore_usepetstore" + "target": "frontend_application_lib_store_cartstore_usecartstore" }, { "relation": "calls", @@ -51593,6 +52079,18 @@ "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_checkoutpage_checkoutpage", + "target": "frontend_application_lib_store_usepetstore_usepetstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/CheckoutPage.tsx", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_checkoutpage_checkoutpage", "target": "frontend_application_lib_store_userstore_useuserstore" }, { @@ -51601,7 +52099,7 @@ "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L377", + "source_location": "L402", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_checkoutpage_checkoutpage", @@ -51613,7 +52111,7 @@ "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L49", + "source_location": "L51", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_checkoutpage_checkoutpage", @@ -51745,7 +52243,7 @@ "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "frontend/application/components/Header.tsx", - "source_location": "L269", + "source_location": "L273", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_header_header", @@ -51793,7 +52291,7 @@ "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "frontend/application/components/Hero.tsx", - "source_location": "L203", + "source_location": "L200", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_hero_hero", @@ -51805,7 +52303,7 @@ "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "frontend/application/components/Hero.tsx", - "source_location": "L43", + "source_location": "L36", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_hero_hero", @@ -51816,7 +52314,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "frontend/application/components/Hero.tsx", - "source_location": "L35", + "source_location": "L28", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_hero_statcounter", @@ -52177,7 +52675,7 @@ "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L359", + "source_location": "L365", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_smartadvisor_smartadvisor", @@ -52429,7 +52927,7 @@ "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L349", + "source_location": "L328", "weight": 1.0, "_origin": "ast", "source": "frontend_application_lib_services_productservice_productservice_getbanners", @@ -52440,7 +52938,19 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L287", + "source_location": "L280", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_lib_services_productservice_productservice_getfeaturedproducts", + "target": "frontend_application_lib_services_productservice_productservice_serverfetch", + "confidence_score": 1.0 + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L282", "weight": 1.0, "_origin": "ast", "source": "frontend_application_lib_services_productservice_productservice_getfeaturedproducts", @@ -52452,7 +52962,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L259", + "source_location": "L252", "weight": 1.0, "_origin": "ast", "source": "frontend_application_lib_services_productservice_productservice_getproductbyid", @@ -52464,7 +52974,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L260", + "source_location": "L253", "weight": 1.0, "_origin": "ast", "source": "frontend_application_lib_services_productservice_productservice_getproductbyid", @@ -52476,7 +52986,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L273", + "source_location": "L266", "weight": 1.0, "_origin": "ast", "source": "frontend_application_lib_services_productservice_productservice_getproductbyslug", @@ -52488,7 +52998,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L274", + "source_location": "L267", "weight": 1.0, "_origin": "ast", "source": "frontend_application_lib_services_productservice_productservice_getproductbyslug", @@ -52500,7 +53010,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L239", + "source_location": "L232", "weight": 1.0, "_origin": "ast", "source": "frontend_application_lib_services_productservice_productservice_getproducts", @@ -52512,7 +53022,7 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L241", + "source_location": "L234", "weight": 1.0, "_origin": "ast", "source": "frontend_application_lib_services_productservice_productservice_getproducts", @@ -52525,7 +53035,7 @@ "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L152", + "source_location": "L109", "weight": 1.0, "_origin": "ast", "source": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend", @@ -52639,6 +53149,18 @@ "target": "scripts_open_browsers_openurl", "confidence_score": 1.0 }, + { + "relation": "contains", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/AnalyticsDeferred.tsx", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_analyticsdeferred_analyticsdeferred", + "target": "frontend_application_components_analyticsdeferred_analyticsdeferred_gtag", + "confidence_score": 1.0 + }, { "relation": "contains", "context": "call", @@ -52883,7 +53405,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L239", + "source_location": "L242", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -52895,7 +53417,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L240", + "source_location": "L243", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -52907,7 +53429,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L241", + "source_location": "L244", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -52919,7 +53441,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L277", + "source_location": "L280", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -52931,7 +53453,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L278", + "source_location": "L281", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -52943,7 +53465,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L280", + "source_location": "L283", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -53027,7 +53549,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L263", + "source_location": "L266", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -53039,7 +53561,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L264", + "source_location": "L267", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -53051,7 +53573,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L265", + "source_location": "L268", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -53063,7 +53585,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L310", + "source_location": "L313", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -53075,7 +53597,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L311", + "source_location": "L314", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -53087,7 +53609,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L312", + "source_location": "L315", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -53171,7 +53693,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L229", + "source_location": "L232", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -53183,7 +53705,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L230", + "source_location": "L233", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -53195,7 +53717,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L233", + "source_location": "L236", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -53207,7 +53729,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L234", + "source_location": "L237", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -53243,7 +53765,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L270", + "source_location": "L273", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -53255,7 +53777,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L271", + "source_location": "L274", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -53423,7 +53945,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L317", + "source_location": "L320", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -53435,7 +53957,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L318", + "source_location": "L321", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -53531,7 +54053,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L214", + "source_location": "L217", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -53543,7 +54065,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L215", + "source_location": "L218", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -53555,7 +54077,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L217", + "source_location": "L220", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -53567,7 +54089,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L219", + "source_location": "L222", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -53575,30 +54097,6 @@ "target": "backend_src_admin_admin_controller_ts_body", "confidence_score": 1.0 }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L253", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_togglecoupon", - "target": "backend_src_admin_admin_controller_ts_put", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L254", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_togglecoupon", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 - }, { "relation": "references", "confidence": "EXTRACTED", @@ -53608,7 +54106,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller_togglecoupon", - "target": "backend_src_admin_admin_controller_ts_param", + "target": "backend_src_admin_admin_controller_ts_put", "confidence_score": 1.0 }, { @@ -53620,30 +54118,6 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller_togglecoupon", - "target": "backend_src_admin_admin_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L246", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updatecoupon", - "target": "backend_src_admin_admin_controller_ts_put", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L247", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updatecoupon", "target": "backend_src_admin_admin_controller_ts_apioperation", "confidence_score": 1.0 }, @@ -53651,23 +54125,11 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L248", + "source_location": "L259", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updatecoupon", - "target": "backend_src_admin_admin_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L248", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updatecoupon", + "source": "backend_src_admin_admin_controller_admincontroller_togglecoupon", "target": "backend_src_admin_admin_controller_ts_param", "confidence_score": 1.0 }, @@ -53675,11 +54137,23 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L293", + "source_location": "L260", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updatedoctor", + "source": "backend_src_admin_admin_controller_admincontroller_togglecoupon", + "target": "backend_src_admin_admin_controller_ts_body", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L249", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_admin_admin_controller_admincontroller_updatecoupon", "target": "backend_src_admin_admin_controller_ts_put", "confidence_score": 1.0 }, @@ -53687,14 +54161,38 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L294", + "source_location": "L250", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updatedoctor", + "source": "backend_src_admin_admin_controller_admincontroller_updatecoupon", "target": "backend_src_admin_admin_controller_ts_apioperation", "confidence_score": 1.0 }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L251", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_admin_admin_controller_admincontroller_updatecoupon", + "target": "backend_src_admin_admin_controller_ts_body", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L251", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_admin_admin_controller_admincontroller_updatecoupon", + "target": "backend_src_admin_admin_controller_ts_param", + "confidence_score": 1.0 + }, { "relation": "references", "confidence": "EXTRACTED", @@ -53704,7 +54202,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller_updatedoctor", - "target": "backend_src_admin_admin_controller_ts_param", + "target": "backend_src_admin_admin_controller_ts_put", "confidence_score": 1.0 }, { @@ -53716,6 +54214,30 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller_updatedoctor", + "target": "backend_src_admin_admin_controller_ts_apioperation", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L299", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_admin_admin_controller_admincontroller_updatedoctor", + "target": "backend_src_admin_admin_controller_ts_param", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L300", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_admin_admin_controller_admincontroller_updatedoctor", "target": "backend_src_admin_admin_controller_ts_body", "confidence_score": 1.0 }, @@ -53759,7 +54281,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L204", + "source_location": "L205", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -53855,7 +54377,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L324", + "source_location": "L327", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -53867,7 +54389,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L325", + "source_location": "L328", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -53879,7 +54401,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L326", + "source_location": "L329", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -53999,7 +54521,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L62", + "source_location": "L64", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -54007,6 +54529,18 @@ "target": "backend_src_admin_admin_service_ts_injectable", "confidence_score": 1.0 }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L70", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice_constructor", + "target": "backend_src_admin_admin_service_ts_optional", + "confidence_score": 1.0 + }, { "relation": "references", "confidence": "EXTRACTED", @@ -55295,7 +55829,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/dto/product.dto.ts", - "source_location": "L323", + "source_location": "L327", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -55307,7 +55841,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/dto/product.dto.ts", - "source_location": "L332", + "source_location": "L338", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -55319,7 +55853,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/dto/product.dto.ts", - "source_location": "L335", + "source_location": "L352", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -55331,7 +55865,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/admin/dto/product.dto.ts", - "source_location": "L336", + "source_location": "L353", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -59663,7 +60197,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L50", + "source_location": "L69", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -62647,18 +63181,6 @@ "target": "backend_src_payment_payment_controller_ts_controller", "confidence_score": 1.0 }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L466", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_cancelebankcheckout", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, { "relation": "references", "confidence": "EXTRACTED", @@ -62668,7 +63190,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_cancelebankcheckout", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_ts_useguards", "confidence_score": 1.0 }, { @@ -62680,7 +63202,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_cancelebankcheckout", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "target": "backend_src_common_decorators_roles_decorator_roles", "confidence_score": 1.0 }, { @@ -62692,7 +63214,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_cancelebankcheckout", - "target": "backend_src_payment_payment_controller_ts_post", + "target": "backend_src_payment_payment_controller_ts_apibearerauth", "confidence_score": 1.0 }, { @@ -62704,6 +63226,18 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_cancelebankcheckout", + "target": "backend_src_payment_payment_controller_ts_post", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L471", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_cancelebankcheckout", "target": "backend_src_payment_payment_controller_ts_apioperation", "confidence_score": 1.0 }, @@ -62711,7 +63245,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L472", + "source_location": "L473", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -62719,18 +63253,6 @@ "target": "backend_src_payment_payment_controller_ts_body", "confidence_score": 1.0 }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L503", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_changeidentifiedpaymentstatus", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, { "relation": "references", "confidence": "EXTRACTED", @@ -62740,7 +63262,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_changeidentifiedpaymentstatus", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_ts_useguards", "confidence_score": 1.0 }, { @@ -62752,7 +63274,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_changeidentifiedpaymentstatus", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "target": "backend_src_common_decorators_roles_decorator_roles", "confidence_score": 1.0 }, { @@ -62764,7 +63286,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_changeidentifiedpaymentstatus", - "target": "backend_src_payment_payment_controller_ts_post", + "target": "backend_src_payment_payment_controller_ts_apibearerauth", "confidence_score": 1.0 }, { @@ -62776,6 +63298,18 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_changeidentifiedpaymentstatus", + "target": "backend_src_payment_payment_controller_ts_post", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L508", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_changeidentifiedpaymentstatus", "target": "backend_src_payment_payment_controller_ts_apioperation", "confidence_score": 1.0 }, @@ -62783,7 +63317,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L509", + "source_location": "L510", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -62795,7 +63329,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L434", + "source_location": "L435", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -62807,7 +63341,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L435", + "source_location": "L436", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -62819,7 +63353,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L436", + "source_location": "L437", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -62831,7 +63365,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L437", + "source_location": "L438", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -62843,7 +63377,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L438", + "source_location": "L439", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -62855,7 +63389,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L439", + "source_location": "L440", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -62935,18 +63469,6 @@ "target": "backend_src_payment_payment_controller_ts_body", "confidence_score": 1.0 }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L360", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_createsubmerchant", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, { "relation": "references", "confidence": "EXTRACTED", @@ -62956,7 +63478,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_createsubmerchant", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_ts_useguards", "confidence_score": 1.0 }, { @@ -62968,7 +63490,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_createsubmerchant", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "target": "backend_src_common_decorators_roles_decorator_roles", "confidence_score": 1.0 }, { @@ -62980,7 +63502,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_createsubmerchant", - "target": "backend_src_payment_payment_controller_ts_post", + "target": "backend_src_payment_payment_controller_ts_apibearerauth", "confidence_score": 1.0 }, { @@ -62992,6 +63514,18 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_createsubmerchant", + "target": "backend_src_payment_payment_controller_ts_post", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L365", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_createsubmerchant", "target": "backend_src_payment_payment_controller_ts_apioperation", "confidence_score": 1.0 }, @@ -62999,7 +63533,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L366", + "source_location": "L367", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -63007,18 +63541,6 @@ "target": "backend_src_payment_payment_controller_ts_body", "confidence_score": 1.0 }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L371", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, { "relation": "references", "confidence": "EXTRACTED", @@ -63028,7 +63550,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_ts_useguards", "confidence_score": 1.0 }, { @@ -63040,7 +63562,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "target": "backend_src_common_decorators_roles_decorator_roles", "confidence_score": 1.0 }, { @@ -63052,7 +63574,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", - "target": "backend_src_payment_payment_controller_ts_put", + "target": "backend_src_payment_payment_controller_ts_apibearerauth", "confidence_score": 1.0 }, { @@ -63064,6 +63586,18 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", + "target": "backend_src_payment_payment_controller_ts_put", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L376", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", "target": "backend_src_payment_payment_controller_ts_apioperation", "confidence_score": 1.0 }, @@ -63071,7 +63605,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L377", + "source_location": "L378", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -63079,18 +63613,6 @@ "target": "backend_src_payment_payment_controller_ts_body", "confidence_score": 1.0 }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L529", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, { "relation": "references", "confidence": "EXTRACTED", @@ -63100,7 +63622,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_ts_useguards", "confidence_score": 1.0 }, { @@ -63112,7 +63634,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "target": "backend_src_common_decorators_roles_decorator_roles", "confidence_score": 1.0 }, { @@ -63124,7 +63646,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", - "target": "backend_src_payment_payment_controller_ts_get", + "target": "backend_src_payment_payment_controller_ts_apibearerauth", "confidence_score": 1.0 }, { @@ -63136,19 +63658,19 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", - "target": "backend_src_payment_payment_controller_ts_apioperation", + "target": "backend_src_payment_payment_controller_ts_get", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L520", + "source_location": "L534", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", - "target": "backend_src_payment_payment_controller_ts_useguards", + "source": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", + "target": "backend_src_payment_payment_controller_ts_apioperation", "confidence_score": 1.0 }, { @@ -63160,7 +63682,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_ts_useguards", "confidence_score": 1.0 }, { @@ -63172,7 +63694,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "target": "backend_src_common_decorators_roles_decorator_roles", "confidence_score": 1.0 }, { @@ -63184,7 +63706,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", - "target": "backend_src_payment_payment_controller_ts_get", + "target": "backend_src_payment_payment_controller_ts_apibearerauth", "confidence_score": 1.0 }, { @@ -63196,7 +63718,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", - "target": "backend_src_payment_payment_controller_ts_apioperation", + "target": "backend_src_payment_payment_controller_ts_get", "confidence_score": 1.0 }, { @@ -63208,6 +63730,18 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", + "target": "backend_src_payment_payment_controller_ts_apioperation", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L526", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", "target": "backend_src_payment_payment_controller_ts_query", "confidence_score": 1.0 }, @@ -63271,18 +63805,6 @@ "target": "backend_src_payment_payment_controller_ts_apioperation", "confidence_score": 1.0 }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L338", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, { "relation": "references", "confidence": "EXTRACTED", @@ -63292,7 +63814,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_ts_useguards", "confidence_score": 1.0 }, { @@ -63304,7 +63826,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "target": "backend_src_common_decorators_roles_decorator_roles", "confidence_score": 1.0 }, { @@ -63316,7 +63838,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", - "target": "backend_src_payment_payment_controller_ts_get", + "target": "backend_src_payment_payment_controller_ts_apibearerauth", "confidence_score": 1.0 }, { @@ -63328,19 +63850,19 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", - "target": "backend_src_payment_payment_controller_ts_apioperation", + "target": "backend_src_payment_payment_controller_ts_get", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L318", + "source_location": "L343", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", - "target": "backend_src_payment_payment_controller_ts_useguards", + "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", + "target": "backend_src_payment_payment_controller_ts_apioperation", "confidence_score": 1.0 }, { @@ -63352,7 +63874,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_ts_useguards", "confidence_score": 1.0 }, { @@ -63364,7 +63886,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "target": "backend_src_common_decorators_roles_decorator_roles", "confidence_score": 1.0 }, { @@ -63376,7 +63898,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", - "target": "backend_src_payment_payment_controller_ts_post", + "target": "backend_src_payment_payment_controller_ts_apibearerauth", "confidence_score": 1.0 }, { @@ -63388,6 +63910,18 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", + "target": "backend_src_payment_payment_controller_ts_post", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L323", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", "target": "backend_src_payment_payment_controller_ts_apioperation", "confidence_score": 1.0 }, @@ -63395,7 +63929,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L326", + "source_location": "L327", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -63403,18 +63937,6 @@ "target": "backend_src_payment_payment_controller_ts_body", "confidence_score": 1.0 }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L386", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, { "relation": "references", "confidence": "EXTRACTED", @@ -63424,7 +63946,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_ts_useguards", "confidence_score": 1.0 }, { @@ -63436,7 +63958,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "target": "backend_src_common_decorators_roles_decorator_roles", "confidence_score": 1.0 }, { @@ -63448,7 +63970,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", - "target": "backend_src_payment_payment_controller_ts_get", + "target": "backend_src_payment_payment_controller_ts_apibearerauth", "confidence_score": 1.0 }, { @@ -63460,7 +63982,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", - "target": "backend_src_payment_payment_controller_ts_apioperation", + "target": "backend_src_payment_payment_controller_ts_get", "confidence_score": 1.0 }, { @@ -63472,19 +63994,19 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", - "target": "backend_src_payment_payment_controller_ts_query", + "target": "backend_src_payment_payment_controller_ts_apioperation", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L396", + "source_location": "L392", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", - "target": "backend_src_payment_payment_controller_ts_useguards", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", + "target": "backend_src_payment_payment_controller_ts_query", "confidence_score": 1.0 }, { @@ -63496,7 +64018,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_ts_useguards", "confidence_score": 1.0 }, { @@ -63508,7 +64030,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "target": "backend_src_common_decorators_roles_decorator_roles", "confidence_score": 1.0 }, { @@ -63520,7 +64042,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", - "target": "backend_src_payment_payment_controller_ts_get", + "target": "backend_src_payment_payment_controller_ts_apibearerauth", "confidence_score": 1.0 }, { @@ -63532,6 +64054,18 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", + "target": "backend_src_payment_payment_controller_ts_get", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L401", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", "target": "backend_src_payment_payment_controller_ts_apioperation", "confidence_score": 1.0 }, @@ -63539,7 +64073,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L403", + "source_location": "L404", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -63547,18 +64081,6 @@ "target": "backend_src_payment_payment_controller_ts_query", "confidence_score": 1.0 }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L443", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, { "relation": "references", "confidence": "EXTRACTED", @@ -63568,7 +64090,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_ts_useguards", "confidence_score": 1.0 }, { @@ -63580,7 +64102,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "target": "backend_src_common_decorators_roles_decorator_roles", "confidence_score": 1.0 }, { @@ -63592,7 +64114,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", - "target": "backend_src_payment_payment_controller_ts_get", + "target": "backend_src_payment_payment_controller_ts_apibearerauth", "confidence_score": 1.0 }, { @@ -63604,6 +64126,18 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", + "target": "backend_src_payment_payment_controller_ts_get", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L448", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", "target": "backend_src_payment_payment_controller_ts_apioperation", "confidence_score": 1.0 }, @@ -63611,7 +64145,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L454", + "source_location": "L455", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -63619,18 +64153,6 @@ "target": "backend_src_payment_payment_controller_ts_query", "confidence_score": 1.0 }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L480", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, { "relation": "references", "confidence": "EXTRACTED", @@ -63640,7 +64162,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_ts_useguards", "confidence_score": 1.0 }, { @@ -63652,7 +64174,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "target": "backend_src_common_decorators_roles_decorator_roles", "confidence_score": 1.0 }, { @@ -63664,7 +64186,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", - "target": "backend_src_payment_payment_controller_ts_get", + "target": "backend_src_payment_payment_controller_ts_apibearerauth", "confidence_score": 1.0 }, { @@ -63676,6 +64198,18 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", + "target": "backend_src_payment_payment_controller_ts_get", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L485", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", "target": "backend_src_payment_payment_controller_ts_apioperation", "confidence_score": 1.0 }, @@ -63683,7 +64217,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L491", + "source_location": "L492", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -63691,18 +64225,6 @@ "target": "backend_src_payment_payment_controller_ts_query", "confidence_score": 1.0 }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L411", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, { "relation": "references", "confidence": "EXTRACTED", @@ -63712,7 +64234,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_ts_useguards", "confidence_score": 1.0 }, { @@ -63724,7 +64246,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "target": "backend_src_common_decorators_roles_decorator_roles", "confidence_score": 1.0 }, { @@ -63736,7 +64258,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", - "target": "backend_src_payment_payment_controller_ts_get", + "target": "backend_src_payment_payment_controller_ts_apibearerauth", "confidence_score": 1.0 }, { @@ -63748,6 +64270,18 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", + "target": "backend_src_payment_payment_controller_ts_get", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L416", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", "target": "backend_src_payment_payment_controller_ts_apioperation", "confidence_score": 1.0 }, @@ -63755,7 +64289,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L422", + "source_location": "L423", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -63763,18 +64297,6 @@ "target": "backend_src_payment_payment_controller_ts_query", "confidence_score": 1.0 }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L293", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, { "relation": "references", "confidence": "EXTRACTED", @@ -63784,7 +64306,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_ts_useguards", "confidence_score": 1.0 }, { @@ -63796,7 +64318,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "target": "backend_src_common_decorators_roles_decorator_roles", "confidence_score": 1.0 }, { @@ -63808,7 +64330,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", - "target": "backend_src_payment_payment_controller_ts_post", + "target": "backend_src_payment_payment_controller_ts_apibearerauth", "confidence_score": 1.0 }, { @@ -63820,6 +64342,18 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", + "target": "backend_src_payment_payment_controller_ts_post", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L298", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", "target": "backend_src_payment_payment_controller_ts_apioperation", "confidence_score": 1.0 }, @@ -63827,7 +64361,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L301", + "source_location": "L302", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -63835,18 +64369,6 @@ "target": "backend_src_payment_payment_controller_ts_body", "confidence_score": 1.0 }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L610", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_gethealth", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, { "relation": "references", "confidence": "EXTRACTED", @@ -63856,7 +64378,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_gethealth", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_ts_useguards", "confidence_score": 1.0 }, { @@ -63868,7 +64390,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_gethealth", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "target": "backend_src_common_decorators_roles_decorator_roles", "confidence_score": 1.0 }, { @@ -63880,7 +64402,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_gethealth", - "target": "backend_src_payment_payment_controller_ts_get", + "target": "backend_src_payment_payment_controller_ts_apibearerauth", "confidence_score": 1.0 }, { @@ -63892,19 +64414,19 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_gethealth", - "target": "backend_src_payment_payment_controller_ts_apioperation", + "target": "backend_src_payment_payment_controller_ts_get", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L274", + "source_location": "L615", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", - "target": "backend_src_payment_payment_controller_ts_useguards", + "source": "backend_src_payment_payment_controller_paymentcontroller_gethealth", + "target": "backend_src_payment_payment_controller_ts_apioperation", "confidence_score": 1.0 }, { @@ -63916,7 +64438,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_ts_useguards", "confidence_score": 1.0 }, { @@ -63928,7 +64450,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "target": "backend_src_common_decorators_roles_decorator_roles", "confidence_score": 1.0 }, { @@ -63940,7 +64462,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", - "target": "backend_src_payment_payment_controller_ts_post", + "target": "backend_src_payment_payment_controller_ts_apibearerauth", "confidence_score": 1.0 }, { @@ -63952,6 +64474,18 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", + "target": "backend_src_payment_payment_controller_ts_post", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L279", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", "target": "backend_src_payment_payment_controller_ts_apioperation", "confidence_score": 1.0 }, @@ -63959,7 +64493,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L280", + "source_location": "L281", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -63971,7 +64505,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L351", + "source_location": "L352", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -63983,7 +64517,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L352", + "source_location": "L353", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -63995,7 +64529,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L353", + "source_location": "L354", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -64007,7 +64541,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L354", + "source_location": "L355", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -64019,7 +64553,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L355", + "source_location": "L356", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -64031,7 +64565,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L356", + "source_location": "L357", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -64459,18 +64993,6 @@ "target": "backend_src_payment_payment_controller_ts_body", "confidence_score": 1.0 }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L259", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_inquirerefund", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, { "relation": "references", "confidence": "EXTRACTED", @@ -64480,7 +65002,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_inquirerefund", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_ts_useguards", "confidence_score": 1.0 }, { @@ -64492,7 +65014,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_inquirerefund", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "target": "backend_src_common_decorators_roles_decorator_roles", "confidence_score": 1.0 }, { @@ -64504,7 +65026,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_inquirerefund", - "target": "backend_src_payment_payment_controller_ts_post", + "target": "backend_src_payment_payment_controller_ts_apibearerauth", "confidence_score": 1.0 }, { @@ -64516,6 +65038,18 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_inquirerefund", + "target": "backend_src_payment_payment_controller_ts_post", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L264", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_inquirerefund", "target": "backend_src_payment_payment_controller_ts_apioperation", "confidence_score": 1.0 }, @@ -64523,7 +65057,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L265", + "source_location": "L266", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -64531,18 +65065,6 @@ "target": "backend_src_payment_payment_controller_ts_body", "confidence_score": 1.0 }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L575", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, { "relation": "references", "confidence": "EXTRACTED", @@ -64552,7 +65074,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_ts_useguards", "confidence_score": 1.0 }, { @@ -64564,7 +65086,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "target": "backend_src_common_decorators_roles_decorator_roles", "confidence_score": 1.0 }, { @@ -64576,7 +65098,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", - "target": "backend_src_payment_payment_controller_ts_get", + "target": "backend_src_payment_payment_controller_ts_apibearerauth", "confidence_score": 1.0 }, { @@ -64588,7 +65110,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", - "target": "backend_src_payment_payment_controller_ts_apioperation", + "target": "backend_src_payment_payment_controller_ts_get", "confidence_score": 1.0 }, { @@ -64600,19 +65122,19 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", - "target": "backend_src_payment_payment_controller_ts_param", + "target": "backend_src_payment_payment_controller_ts_apioperation", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L549", + "source_location": "L581", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", - "target": "backend_src_payment_payment_controller_ts_useguards", + "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", + "target": "backend_src_payment_payment_controller_ts_param", "confidence_score": 1.0 }, { @@ -64624,7 +65146,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_ts_useguards", "confidence_score": 1.0 }, { @@ -64636,7 +65158,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "target": "backend_src_common_decorators_roles_decorator_roles", "confidence_score": 1.0 }, { @@ -64648,7 +65170,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", - "target": "backend_src_payment_payment_controller_ts_post", + "target": "backend_src_payment_payment_controller_ts_apibearerauth", "confidence_score": 1.0 }, { @@ -64660,6 +65182,18 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", + "target": "backend_src_payment_payment_controller_ts_post", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L554", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", "target": "backend_src_payment_payment_controller_ts_apioperation", "confidence_score": 1.0 }, @@ -64667,7 +65201,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L557", + "source_location": "L558", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -64675,18 +65209,6 @@ "target": "backend_src_payment_payment_controller_ts_body", "confidence_score": 1.0 }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L598", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, { "relation": "references", "confidence": "EXTRACTED", @@ -64696,7 +65218,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_ts_useguards", "confidence_score": 1.0 }, { @@ -64708,7 +65230,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "target": "backend_src_common_decorators_roles_decorator_roles", "confidence_score": 1.0 }, { @@ -64720,7 +65242,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", - "target": "backend_src_payment_payment_controller_ts_post", + "target": "backend_src_payment_payment_controller_ts_apibearerauth", "confidence_score": 1.0 }, { @@ -64732,19 +65254,19 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", - "target": "backend_src_payment_payment_controller_ts_apioperation", + "target": "backend_src_payment_payment_controller_ts_post", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L604", + "source_location": "L603", "weight": 1.0, "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", - "target": "backend_src_payment_payment_controller_ts_param", + "target": "backend_src_payment_payment_controller_ts_apioperation", "confidence_score": 1.0 }, { @@ -64756,19 +65278,19 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", - "target": "backend_src_payment_payment_controller_ts_body", + "target": "backend_src_payment_payment_controller_ts_param", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L584", + "source_location": "L606", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_manualverify", - "target": "backend_src_payment_payment_controller_ts_useguards", + "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", + "target": "backend_src_payment_payment_controller_ts_body", "confidence_score": 1.0 }, { @@ -64780,7 +65302,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_manualverify", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_ts_useguards", "confidence_score": 1.0 }, { @@ -64792,7 +65314,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_manualverify", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "target": "backend_src_common_decorators_roles_decorator_roles", "confidence_score": 1.0 }, { @@ -64804,7 +65326,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_manualverify", - "target": "backend_src_payment_payment_controller_ts_post", + "target": "backend_src_payment_payment_controller_ts_apibearerauth", "confidence_score": 1.0 }, { @@ -64816,19 +65338,19 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_manualverify", - "target": "backend_src_payment_payment_controller_ts_apioperation", + "target": "backend_src_payment_payment_controller_ts_post", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L592", + "source_location": "L589", "weight": 1.0, "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_manualverify", - "target": "backend_src_payment_payment_controller_ts_param", + "target": "backend_src_payment_payment_controller_ts_apioperation", "confidence_score": 1.0 }, { @@ -64840,19 +65362,19 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_manualverify", - "target": "backend_src_payment_payment_controller_ts_body", + "target": "backend_src_payment_payment_controller_ts_param", "confidence_score": 1.0 }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L538", + "source_location": "L594", "weight": 1.0, "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", - "target": "backend_src_payment_payment_controller_ts_useguards", + "source": "backend_src_payment_payment_controller_paymentcontroller_manualverify", + "target": "backend_src_payment_payment_controller_ts_body", "confidence_score": 1.0 }, { @@ -64864,7 +65386,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", - "target": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_ts_useguards", "confidence_score": 1.0 }, { @@ -64876,7 +65398,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", + "target": "backend_src_common_decorators_roles_decorator_roles", "confidence_score": 1.0 }, { @@ -64888,7 +65410,7 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", - "target": "backend_src_payment_payment_controller_ts_post", + "target": "backend_src_payment_payment_controller_ts_apibearerauth", "confidence_score": 1.0 }, { @@ -64900,6 +65422,18 @@ "context": "decorator", "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", + "target": "backend_src_payment_payment_controller_ts_post", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L543", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", "target": "backend_src_payment_payment_controller_ts_apioperation", "confidence_score": 1.0 }, @@ -67391,7 +67925,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L233", + "source_location": "L256", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -67403,7 +67937,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L234", + "source_location": "L257", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -67415,7 +67949,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L235", + "source_location": "L258", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -67427,7 +67961,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L236", + "source_location": "L259", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -67439,7 +67973,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L237", + "source_location": "L260", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -67451,7 +67985,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L241", + "source_location": "L264", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -67463,7 +67997,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L278", + "source_location": "L301", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -67475,7 +68009,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L279", + "source_location": "L302", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -67487,7 +68021,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L280", + "source_location": "L303", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -67499,7 +68033,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L281", + "source_location": "L304", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -67511,7 +68045,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L282", + "source_location": "L305", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -67595,7 +68129,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L269", + "source_location": "L292", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -67607,7 +68141,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L270", + "source_location": "L293", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -67619,7 +68153,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L271", + "source_location": "L294", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -67631,7 +68165,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L272", + "source_location": "L295", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -67643,7 +68177,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L273", + "source_location": "L296", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -67655,7 +68189,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L274", + "source_location": "L297", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -67667,7 +68201,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L246", + "source_location": "L269", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -67679,7 +68213,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L247", + "source_location": "L270", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -67691,7 +68225,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L248", + "source_location": "L271", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -67703,7 +68237,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L249", + "source_location": "L272", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -67715,7 +68249,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L250", + "source_location": "L273", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -67727,7 +68261,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L253", + "source_location": "L276", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -67739,7 +68273,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L253", + "source_location": "L276", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -67835,7 +68369,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L222", + "source_location": "L245", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -67847,7 +68381,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L223", + "source_location": "L246", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -67859,7 +68393,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L224", + "source_location": "L247", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -67871,7 +68405,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L225", + "source_location": "L248", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -67883,7 +68417,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L226", + "source_location": "L249", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -68003,7 +68537,67 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L258", + "source_location": "L222", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getsmsevents", + "target": "backend_src_settings_settings_controller_ts_useguards", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L223", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getsmsevents", + "target": "backend_src_common_decorators_roles_decorator_roles", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L224", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getsmsevents", + "target": "backend_src_settings_settings_controller_ts_apibearerauth", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L225", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getsmsevents", + "target": "backend_src_settings_settings_controller_ts_get", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L226", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getsmsevents", + "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": "L281", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -68015,7 +68609,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L259", + "source_location": "L282", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -68027,7 +68621,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L260", + "source_location": "L283", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -68039,7 +68633,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L261", + "source_location": "L284", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -68051,7 +68645,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L262", + "source_location": "L285", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -68063,7 +68657,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L265", + "source_location": "L288", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -68539,6 +69133,78 @@ "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": "L234", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_testsmsrule", + "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": "L235", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_testsmsrule", + "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": "L236", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_testsmsrule", + "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": "L237", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_testsmsrule", + "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": "L238", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_testsmsrule", + "target": "backend_src_settings_settings_controller_ts_apioperation", + "confidence_score": 1.0 + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L241", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_testsmsrule", + "target": "backend_src_settings_settings_controller_ts_body", + "confidence_score": 1.0 + }, { "relation": "references", "confidence": "EXTRACTED", @@ -71075,7 +71741,7 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "backend/src/users/users.service.ts", - "source_location": "L23", + "source_location": "L25", "weight": 1.0, "context": "decorator", "_origin": "ast", @@ -71083,6 +71749,18 @@ "target": "backend_src_users_users_service_ts_injectable", "confidence_score": 1.0 }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L29", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "source": "backend_src_users_users_service_usersservice_constructor", + "target": "backend_src_users_users_service_ts_optional", + "confidence_score": 1.0 + }, { "relation": "references", "confidence": "EXTRACTED", @@ -72240,7 +72918,7 @@ "context": "generic_arg", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1170", + "source_location": "L1347", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice_getpricingsettings", @@ -72360,7 +73038,7 @@ "context": "generic_arg", "confidence": "EXTRACTED", "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L343", + "source_location": "L322", "weight": 1.0, "_origin": "ast", "source": "frontend_application_lib_services_productservice_productservice_getbanners", @@ -72372,7 +73050,7 @@ "context": "generic_arg", "confidence": "EXTRACTED", "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L284", + "source_location": "L277", "weight": 1.0, "_origin": "ast", "source": "frontend_application_lib_services_productservice_productservice_getfeaturedproducts", @@ -72384,7 +73062,7 @@ "context": "generic_arg", "confidence": "EXTRACTED", "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L256", + "source_location": "L249", "weight": 1.0, "_origin": "ast", "source": "frontend_application_lib_services_productservice_productservice_getproductbyid", @@ -72396,7 +73074,7 @@ "context": "generic_arg", "confidence": "EXTRACTED", "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L270", + "source_location": "L263", "weight": 1.0, "_origin": "ast", "source": "frontend_application_lib_services_productservice_productservice_getproductbyslug", @@ -72408,7 +73086,7 @@ "context": "generic_arg", "confidence": "EXTRACTED", "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L217", + "source_location": "L210", "weight": 1.0, "_origin": "ast", "source": "frontend_application_lib_services_productservice_productservice_getproducts", @@ -74648,6 +75326,18 @@ "target": "backend_src_admin_categories_service_categoriesservice", "confidence_score": 1.0 }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service", + "target": "backend_src_redis_redis_service_redisservice", + "confidence_score": 1.0 + }, { "relation": "imports", "context": "import", @@ -74657,6 +75347,18 @@ "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service", + "target": "backend_src_common_services_sms_service_smsservice", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service", "target": "backend_src_admin_dto_user_dto_createuserdto", "confidence_score": 1.0 }, @@ -74665,7 +75367,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L11", + "source_location": "L13", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service", @@ -74677,7 +75379,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L12", + "source_location": "L14", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service", @@ -74689,7 +75391,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L13", + "source_location": "L15", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service", @@ -74701,7 +75403,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L13", + "source_location": "L15", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service", @@ -74713,7 +75415,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L13", + "source_location": "L15", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service", @@ -74725,7 +75427,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L18", + "source_location": "L20", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service", @@ -74737,7 +75439,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L18", + "source_location": "L20", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service", @@ -74749,7 +75451,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L18", + "source_location": "L20", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service", @@ -74761,7 +75463,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L18", + "source_location": "L20", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service", @@ -74773,7 +75475,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L18", + "source_location": "L20", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service", @@ -74785,7 +75487,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L25", + "source_location": "L27", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service", @@ -74797,7 +75499,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L26", + "source_location": "L28", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service", @@ -74809,25 +75511,13 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L27", + "source_location": "L29", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service", "target": "backend_src_common_revalidation_revalidation_service_revalidationservice", "confidence_score": 1.0 }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, { "relation": "imports", "context": "import", @@ -74837,7 +75527,7 @@ "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service", - "target": "backend_src_redis_redis_service_redisservice", + "target": "backend_src_prisma_prisma_service_prismaservice", "confidence_score": 1.0 }, { @@ -76544,6 +77234,42 @@ "target": "backend_src_prisma_prisma_service_prismaservice", "confidence_score": 1.0 }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service", + "target": "backend_src_common_services_sms_events_constants_default_sms_rules", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service", + "target": "backend_src_common_services_sms_events_constants_sms_event_definitions", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service", + "target": "backend_src_common_services_sms_events_constants_smseventdefinition", + "confidence_score": 1.0 + }, { "relation": "imports", "context": "import", @@ -79213,7 +79939,19 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "backend/src/users/users.service.ts", - "source_location": "L10", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_users_users_service", + "target": "backend_src_common_utils_phone_utils_normalizemobile", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L12", "weight": 1.0, "_origin": "ast", "source": "backend_src_users_users_service", @@ -79225,7 +79963,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "backend/src/users/users.service.ts", - "source_location": "L7", + "source_location": "L8", "weight": 1.0, "_origin": "ast", "source": "backend_src_users_users_service", @@ -79241,7 +79979,7 @@ "weight": 1.0, "_origin": "ast", "source": "backend_src_users_users_service", - "target": "backend_src_common_utils_phone_utils_normalizemobile", + "target": "backend_src_common_services_sms_service_smsservice", "confidence_score": 1.0 }, { @@ -81889,31 +82627,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_seosettingspage", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_seosettingspage", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", - "source_location": "L6", + "source_location": "L10", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_seosettingspage", @@ -81925,7 +82639,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", - "source_location": "L7", + "source_location": "L11", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_seosettingspage", @@ -81937,13 +82651,37 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", - "source_location": "L8", + "source_location": "L12", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_seosettingspage", "target": "frontend_admin_panel_src_types_admin_seosettings", "confidence_score": 1.0 }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_pages_seosettingspage", + "target": "frontend_admin_panel_src_services_api_api", + "confidence_score": 1.0 + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_pages_seosettingspage", + "target": "frontend_admin_panel_src_components_ui_spinner_spinner", + "confidence_score": 1.0 + }, { "relation": "imports", "context": "import", @@ -82117,7 +82855,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L40", + "source_location": "L47", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_smssettingspage", @@ -82129,7 +82867,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L41", + "source_location": "L48", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_smssettingspage", @@ -82141,13 +82879,25 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L42", + "source_location": "L49", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_smssettingspage", "target": "frontend_admin_panel_src_components_ui_button_button", "confidence_score": 1.0 }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_pages_smssettingspage", + "target": "frontend_admin_panel_src_components_ui_modal_modal", + "confidence_score": 1.0 + }, { "relation": "imports", "context": "import", @@ -83288,18 +84038,6 @@ "target": "frontend_application_lib_data_products_product", "confidence_score": 1.0 }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/catalog/CatalogClient.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_catalog_catalogclient", - "target": "frontend_application_lib_data_products_products", - "confidence_score": 1.0 - }, { "relation": "imports", "context": "import", @@ -83737,13 +84475,25 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/application/app/layout.tsx", - "source_location": "L5", + "source_location": "L4", "weight": 1.0, "_origin": "ast", "source": "frontend_application_app_layout", "target": "frontend_application_app_clientlayout_clientlayout", "confidence_score": 1.0 }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/layout.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_layout", + "target": "frontend_application_components_analyticsdeferred_analyticsdeferred", + "confidence_score": 1.0 + }, { "relation": "imports", "context": "import", @@ -85117,7 +85867,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L19", + "source_location": "L20", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_checkoutpage", @@ -85129,7 +85879,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L19", + "source_location": "L20", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_checkoutpage", @@ -85141,7 +85891,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L20", + "source_location": "L21", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_checkoutpage", @@ -85153,7 +85903,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L21", + "source_location": "L22", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_checkoutpage", @@ -85165,7 +85915,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L22", + "source_location": "L23", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_checkoutpage", @@ -85177,7 +85927,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L23", + "source_location": "L24", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_checkoutpage", @@ -85189,7 +85939,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L24", + "source_location": "L25", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_checkoutpage", @@ -85201,7 +85951,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L25", + "source_location": "L26", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_checkoutpage", @@ -85213,7 +85963,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L26", + "source_location": "L27", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_checkoutpage", @@ -85225,7 +85975,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L26", + "source_location": "L27", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_checkoutpage", @@ -85237,7 +85987,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L26", + "source_location": "L27", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_checkoutpage", @@ -85249,7 +85999,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L26", + "source_location": "L27", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_checkoutpage", @@ -85261,7 +86011,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L27", + "source_location": "L28", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_checkoutpage", @@ -85273,7 +86023,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L28", + "source_location": "L29", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_checkoutpage", @@ -85285,7 +86035,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L28", + "source_location": "L29", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_checkoutpage", @@ -85297,7 +86047,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L31", + "source_location": "L32", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_checkoutpage", @@ -85633,19 +86383,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/application/components/Hero.tsx", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_hero", - "target": "frontend_application_lib_media_getmediaurl", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Hero.tsx", - "source_location": "L6", + "source_location": "L5", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_hero", @@ -85657,7 +86395,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/application/components/Hero.tsx", - "source_location": "L7", + "source_location": "L6", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_hero", @@ -85669,13 +86407,25 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/application/components/Hero.tsx", - "source_location": "L9", + "source_location": "L8", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_hero", "target": "frontend_application_lib_types_banner", "confidence_score": 1.0 }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Hero.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_hero", + "target": "frontend_application_lib_media_getmediaurl", + "confidence_score": 1.0 + }, { "relation": "imports", "context": "import", @@ -87260,18 +88010,6 @@ "target": "frontend_application_lib_data_products_product", "confidence_score": 1.0 }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_productservice", - "target": "frontend_application_lib_data_products_products", - "confidence_score": 1.0 - }, { "relation": "imports", "context": "import", @@ -88429,11 +89167,11 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L11", + "source_location": "L10", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service", - "target": "backend_src_admin_dto_user_dto", + "target": "backend_src_redis_redis_service", "confidence_score": 1.0 }, { @@ -88441,11 +89179,11 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L12", + "source_location": "L11", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service", - "target": "backend_src_admin_dto_product_dto", + "target": "backend_src_common_services_sms_service", "confidence_score": 1.0 }, { @@ -88457,6 +89195,30 @@ "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service", + "target": "backend_src_admin_dto_user_dto", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service", + "target": "backend_src_admin_dto_product_dto", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service", "target": "backend_src_admin_dto_pricing_dto", "confidence_score": 1.0 }, @@ -88465,7 +89227,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L18", + "source_location": "L20", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service", @@ -88477,7 +89239,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L25", + "source_location": "L27", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service", @@ -88489,7 +89251,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L26", + "source_location": "L28", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service", @@ -88501,25 +89263,13 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L27", + "source_location": "L29", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service", "target": "backend_src_common_revalidation_revalidation_service", "confidence_score": 1.0 }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, { "relation": "imports_from", "context": "import", @@ -88529,7 +89279,7 @@ "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service", - "target": "backend_src_redis_redis_service", + "target": "backend_src_prisma_prisma_service", "confidence_score": 1.0 }, { @@ -90176,6 +90926,18 @@ "target": "backend_src_prisma_prisma_service", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service", + "target": "backend_src_common_services_sms_events_constants", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -92689,7 +93451,19 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "backend/src/users/users.service.ts", - "source_location": "L10", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_users_users_service", + "target": "backend_src_common_utils_phone_utils", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L12", "weight": 1.0, "_origin": "ast", "source": "backend_src_users_users_service", @@ -92701,7 +93475,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "backend/src/users/users.service.ts", - "source_location": "L7", + "source_location": "L8", "weight": 1.0, "_origin": "ast", "source": "backend_src_users_users_service", @@ -92717,7 +93491,7 @@ "weight": 1.0, "_origin": "ast", "source": "backend_src_users_users_service", - "target": "backend_src_common_utils_phone_utils", + "target": "backend_src_common_services_sms_service", "confidence_score": 1.0 }, { @@ -94921,31 +95695,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_seosettingspage", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_seosettingspage", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", - "source_location": "L6", + "source_location": "L10", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_seosettingspage", @@ -94957,7 +95707,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", - "source_location": "L7", + "source_location": "L11", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_seosettingspage", @@ -94969,13 +95719,37 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", - "source_location": "L8", + "source_location": "L12", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_seosettingspage", "target": "frontend_admin_panel_src_types_admin", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_pages_seosettingspage", + "target": "frontend_admin_panel_src_services_api", + "confidence_score": 1.0 + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_pages_seosettingspage", + "target": "frontend_admin_panel_src_components_ui_spinner", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -95137,7 +95911,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L40", + "source_location": "L47", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_smssettingspage", @@ -95149,7 +95923,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L41", + "source_location": "L48", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_smssettingspage", @@ -95161,13 +95935,25 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L42", + "source_location": "L49", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_smssettingspage", "target": "frontend_admin_panel_src_components_ui_button", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_pages_smssettingspage", + "target": "frontend_admin_panel_src_components_ui_modal", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -96577,13 +97363,25 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/application/app/layout.tsx", - "source_location": "L5", + "source_location": "L4", "weight": 1.0, "_origin": "ast", "source": "frontend_application_app_layout", "target": "frontend_application_app_clientlayout", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/layout.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_layout", + "target": "frontend_application_components_analyticsdeferred", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -97813,7 +98611,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L19", + "source_location": "L20", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_checkoutpage", @@ -97825,7 +98623,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L20", + "source_location": "L21", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_checkoutpage", @@ -97837,7 +98635,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L21", + "source_location": "L22", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_checkoutpage", @@ -97849,7 +98647,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L22", + "source_location": "L23", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_checkoutpage", @@ -97861,7 +98659,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L23", + "source_location": "L24", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_checkoutpage", @@ -97873,7 +98671,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L24", + "source_location": "L25", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_checkoutpage", @@ -97885,7 +98683,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L25", + "source_location": "L26", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_checkoutpage", @@ -97897,7 +98695,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L26", + "source_location": "L27", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_checkoutpage", @@ -97909,7 +98707,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L27", + "source_location": "L28", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_checkoutpage", @@ -97921,7 +98719,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L28", + "source_location": "L29", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_checkoutpage", @@ -97933,7 +98731,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L31", + "source_location": "L32", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_checkoutpage", @@ -98257,19 +99055,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/application/components/Hero.tsx", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_hero", - "target": "frontend_application_lib_media", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Hero.tsx", - "source_location": "L6", + "source_location": "L5", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_hero", @@ -98281,7 +99067,7 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/application/components/Hero.tsx", - "source_location": "L7", + "source_location": "L6", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_hero", @@ -98293,13 +99079,25 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "frontend/application/components/Hero.tsx", - "source_location": "L9", + "source_location": "L8", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_hero", "target": "frontend_application_lib_types", "confidence_score": 1.0 }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Hero.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_hero", + "target": "frontend_application_lib_media", + "confidence_score": 1.0 + }, { "relation": "imports_from", "context": "import", @@ -100177,7 +100975,7 @@ "context": "parameter_type", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L241", + "source_location": "L244", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller_createcoupon", @@ -100213,7 +101011,7 @@ "context": "parameter_type", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L234", + "source_location": "L237", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller_getcoupons", @@ -100261,7 +101059,7 @@ "context": "parameter_type", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L248", + "source_location": "L251", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller_updatecoupon", @@ -100309,7 +101107,7 @@ "context": "parameter_type", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1280", + "source_location": "L1457", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice_applyglobalmargins", @@ -100321,7 +101119,7 @@ "context": "parameter_type", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1399", + "source_location": "L1576", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice_bulkpriceadjustment", @@ -100333,7 +101131,7 @@ "context": "parameter_type", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L64", + "source_location": "L66", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice_constructor", @@ -100345,7 +101143,19 @@ "context": "parameter_type", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L64", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice_constructor", + "target": "backend_src_common_services_sms_service_smsservice", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L66", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice_constructor", @@ -100357,7 +101167,7 @@ "context": "parameter_type", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L64", + "source_location": "L66", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice_constructor", @@ -100369,7 +101179,7 @@ "context": "parameter_type", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L439", + "source_location": "L442", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice_createproduct", @@ -100381,7 +101191,7 @@ "context": "parameter_type", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L217", + "source_location": "L220", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice_createuser", @@ -100393,7 +101203,7 @@ "context": "parameter_type", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1195", + "source_location": "L1372", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice_updatepricingsettings", @@ -100405,7 +101215,7 @@ "context": "parameter_type", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L571", + "source_location": "L575", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice_updateproduct", @@ -100417,7 +101227,7 @@ "context": "parameter_type", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L260", + "source_location": "L263", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice_updateuser", @@ -101029,7 +101839,7 @@ "context": "parameter_type", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L54", + "source_location": "L73", "weight": 1.0, "_origin": "ast", "source": "backend_src_common_services_sms_service_smsservice_constructor", @@ -101293,7 +102103,7 @@ "context": "parameter_type", "confidence": "EXTRACTED", "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L353", + "source_location": "L464", "weight": 1.0, "_origin": "ast", "source": "backend_src_orders_orders_service_ordersservice_findallbyuser", @@ -101341,7 +102151,7 @@ "context": "parameter_type", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L439", + "source_location": "L440", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_createebankcheckout", @@ -101353,7 +102163,7 @@ "context": "parameter_type", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L525", + "source_location": "L526", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", @@ -101449,7 +102259,7 @@ "context": "parameter_type", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L685", + "source_location": "L818", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_service_paymentservice_getadmintransactions", @@ -101869,7 +102679,7 @@ "context": "parameter_type", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L265", + "source_location": "L288", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", @@ -101917,7 +102727,7 @@ "context": "parameter_type", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L638", + "source_location": "L690", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice_getsmslogs", @@ -102145,7 +102955,19 @@ "context": "parameter_type", "confidence": "EXTRACTED", "source_file": "backend/src/users/users.service.ts", - "source_location": "L25", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_users_users_service_usersservice_constructor", + "target": "backend_src_common_services_sms_service_smsservice", + "confidence_score": 1.0 + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L27", "weight": 1.0, "_origin": "ast", "source": "backend_src_users_users_service_usersservice_constructor", @@ -102157,7 +102979,7 @@ "context": "parameter_type", "confidence": "EXTRACTED", "source_file": "backend/src/users/users.service.ts", - "source_location": "L125", + "source_location": "L130", "weight": 1.0, "_origin": "ast", "source": "backend_src_users_users_service_usersservice_update", @@ -102337,13 +103159,25 @@ "context": "parameter_type", "confidence": "EXTRACTED", "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L217", + "source_location": "L210", "weight": 1.0, "_origin": "ast", "source": "frontend_application_lib_services_productservice_productservice_getproducts", "target": "frontend_application_lib_data_products_pettype", "confidence_score": 1.0 }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service_smsservice_geteventdefinitions", + "target": "backend_src_common_services_sms_events_constants_smseventdefinition", + "confidence_score": 1.0 + }, { "relation": "references", "context": "return_type", @@ -107284,7 +108118,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L29", + "source_location": "L31", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service", @@ -107295,7 +108129,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L43", + "source_location": "L45", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service", @@ -107306,7 +108140,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L50", + "source_location": "L52", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service", @@ -107317,7 +108151,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L63", + "source_location": "L65", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service", @@ -108273,10 +109107,87 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", + "source_file": "backend/src/common/services/sms-events.constants.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_events_constants", + "target": "backend_src_common_services_sms_events_constants_smsrule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms-events.constants.ts", "source_location": "L13", "weight": 1.0, "_origin": "ast", + "source": "backend_src_common_services_sms_events_constants", + "target": "backend_src_common_services_sms_events_constants_smseventvariable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms-events.constants.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_events_constants", + "target": "backend_src_common_services_sms_events_constants_smseventdefinition", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms-events.constants.ts", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_events_constants", + "target": "backend_src_common_services_sms_events_constants_default_sms_rules", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms-events.constants.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_events_constants", + "target": "backend_src_common_services_sms_events_constants_sms_event_definitions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service", + "target": "backend_src_common_services_sms_service_sendpatternsmsoptions", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service", + "target": "backend_src_common_services_sms_service_smsrule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", "source": "backend_src_common_services_sms_service", "target": "backend_src_common_services_sms_service_smsconfig", "confidence_score": 1.0 @@ -108285,7 +109196,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L25", + "source_location": "L44", "weight": 1.0, "_origin": "ast", "source": "backend_src_common_services_sms_service", @@ -108296,7 +109207,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L34", + "source_location": "L53", "weight": 1.0, "_origin": "ast", "source": "backend_src_common_services_sms_service", @@ -108307,7 +109218,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L44", + "source_location": "L63", "weight": 1.0, "_origin": "ast", "source": "backend_src_common_services_sms_service", @@ -108318,24 +109229,13 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L51", + "source_location": "L70", "weight": 1.0, "_origin": "ast", "source": "backend_src_common_services_sms_service", "target": "backend_src_common_services_sms_service_smsservice", "confidence_score": 1.0 }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service", - "target": "backend_src_common_services_sms_service_sendpatternsmsoptions", - "confidence_score": 1.0 - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -109649,7 +110549,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "backend/src/users/users.service.ts", - "source_location": "L12", + "source_location": "L14", "weight": 1.0, "_origin": "ast", "source": "backend_src_users_users_service", @@ -109660,7 +110560,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "backend/src/users/users.service.ts", - "source_location": "L24", + "source_location": "L26", "weight": 1.0, "_origin": "ast", "source": "backend_src_users_users_service", @@ -117943,7 +118843,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L107", + "source_location": "L110", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_orders", @@ -117954,7 +118854,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L118", + "source_location": "L121", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_orders", @@ -117965,7 +118865,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L135", + "source_location": "L138", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_orders", @@ -117976,7 +118876,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L148", + "source_location": "L151", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_orders", @@ -117987,7 +118887,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L163", + "source_location": "L166", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_orders", @@ -117998,7 +118898,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L169", + "source_location": "L172", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_orders", @@ -118262,7 +119162,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", - "source_location": "L11", + "source_location": "L15", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_seosettingspage", @@ -118306,29 +119206,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L46", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_smssettingspage", - "target": "frontend_admin_panel_src_pages_smssettingspage_smsconfigstate", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L58", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_smssettingspage", - "target": "frontend_admin_panel_src_pages_smssettingspage_patternitem", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L67", + "source_location": "L100", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_smssettingspage", @@ -118339,7 +119217,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L80", + "source_location": "L113", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_smssettingspage", @@ -118350,7 +119228,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L87", + "source_location": "L120", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_smssettingspage", @@ -118361,13 +119239,68 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L93", + "source_location": "L126", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_smssettingspage", "target": "frontend_admin_panel_src_pages_smssettingspage_smssettingspage", "confidence_score": 1.0 }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_pages_smssettingspage", + "target": "frontend_admin_panel_src_pages_smssettingspage_smsrule", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_pages_smssettingspage", + "target": "frontend_admin_panel_src_pages_smssettingspage_smseventvariable", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_pages_smssettingspage", + "target": "frontend_admin_panel_src_pages_smssettingspage_smseventdefinition", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_pages_smssettingspage", + "target": "frontend_admin_panel_src_pages_smssettingspage_smsconfigstate", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_pages_smssettingspage", + "target": "frontend_admin_panel_src_pages_smssettingspage_patternitem", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -118493,62 +119426,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L200", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_pages_uitexts_v1_group_page_map", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L211", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_pages_uitexts_sectionfield", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L219", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_pages_uitexts_pagesection", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L227", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_pages_uitexts_appsitepage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L236", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_pages_uitexts_createseosection", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L273", + "source_location": "L116", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_uitexts", @@ -118559,29 +119437,18 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L55", + "source_location": "L54", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_pages_uitexts_v1_page_tabs", + "target": "frontend_admin_panel_src_pages_uitexts_sectionfield", "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L64", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_pages_uitexts_v1_groups", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L650", + "source_location": "L556", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_uitexts", @@ -118592,7 +119459,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L664", + "source_location": "L570", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_uitexts", @@ -118603,13 +119470,46 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L678", + "source_location": "L584", "weight": 1.0, "_origin": "ast", "source": "frontend_admin_panel_src_pages_uitexts", "target": "frontend_admin_panel_src_pages_uitexts_uitexts", "confidence_score": 1.0 }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_pages_uitexts", + "target": "frontend_admin_panel_src_pages_uitexts_pagesection", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_pages_uitexts", + "target": "frontend_admin_panel_src_pages_uitexts_appsitepage", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_pages_uitexts", + "target": "frontend_admin_panel_src_pages_uitexts_createseosection", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -119989,24 +120889,13 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/application/app/api/media/[...path]/route.ts", - "source_location": "L105", + "source_location": "L151", "weight": 1.0, "_origin": "ast", "source": "frontend_application_app_api_media_path_route", "target": "frontend_application_app_api_media_path_route_head", "confidence_score": 1.0 }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/api/media/[...path]/route.ts", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_api_media_path_route", - "target": "frontend_application_app_api_media_path_route_get", - "confidence_score": 1.0 - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -120018,6 +120907,17 @@ "target": "frontend_application_app_api_media_path_route_dynamic", "confidence_score": 1.0 }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/api/media/[...path]/route.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_api_media_path_route", + "target": "frontend_application_app_api_media_path_route_getmimetype", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -120029,6 +120929,17 @@ "target": "frontend_application_app_api_media_path_route_getcandidateurls", "confidence_score": 1.0 }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/api/media/[...path]/route.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_api_media_path_route", + "target": "frontend_application_app_api_media_path_route_get", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -120121,7 +121032,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/application/app/api/uploads/[...path]/route.ts", - "source_location": "L108", + "source_location": "L153", "weight": 1.0, "_origin": "ast", "source": "frontend_application_app_api_uploads_path_route", @@ -120143,11 +121054,11 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/application/app/api/uploads/[...path]/route.ts", - "source_location": "L30", + "source_location": "L37", "weight": 1.0, "_origin": "ast", "source": "frontend_application_app_api_uploads_path_route", - "target": "frontend_application_app_api_uploads_path_route_get", + "target": "frontend_application_app_api_uploads_path_route_getmimetype", "confidence_score": 1.0 }, { @@ -120161,6 +121072,17 @@ "target": "frontend_application_app_api_uploads_path_route_getcandidateurls", "confidence_score": 1.0 }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/api/uploads/[...path]/route.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_api_uploads_path_route", + "target": "frontend_application_app_api_uploads_path_route_get", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -120649,7 +121571,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/application/app/page.tsx", - "source_location": "L32", + "source_location": "L35", "weight": 1.0, "_origin": "ast", "source": "frontend_application_app_page", @@ -121184,6 +122106,39 @@ "target": "frontend_application_components_addressmodal_addressmodal", "confidence_score": 1.0 }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/AnalyticsDeferred.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_analyticsdeferred", + "target": "frontend_application_components_analyticsdeferred_analyticsdeferredprops", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/AnalyticsDeferred.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_analyticsdeferred", + "target": "frontend_application_components_analyticsdeferred_analyticsdeferred", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/AnalyticsDeferred.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_analyticsdeferred", + "target": "frontend_application_components_analyticsdeferred_window", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -121551,7 +122506,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L33", + "source_location": "L34", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_checkoutpage", @@ -121771,7 +122726,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/application/components/Hero.tsx", - "source_location": "L12", + "source_location": "L11", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_hero", @@ -121782,7 +122737,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/application/components/Hero.tsx", - "source_location": "L41", + "source_location": "L34", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_hero", @@ -122706,7 +123661,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/application/lib/fonts.ts", - "source_location": "L16", + "source_location": "L17", "weight": 1.0, "_origin": "ast", "source": "frontend_application_lib_fonts", @@ -122717,7 +123672,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/application/lib/fonts.ts", - "source_location": "L3", + "source_location": "L4", "weight": 1.0, "_origin": "ast", "source": "frontend_application_lib_fonts", @@ -123091,7 +124046,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L358", + "source_location": "L337", "weight": 1.0, "_origin": "ast", "source": "frontend_application_lib_services_productservice", @@ -123399,7 +124354,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L33", + "source_location": "L35", "weight": 1.0, "_origin": "ast", "source": "frontend_application_lib_store_userstore", @@ -123410,7 +124365,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L45", + "source_location": "L47", "weight": 1.0, "_origin": "ast", "source": "frontend_application_lib_store_userstore", @@ -123421,7 +124376,7 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L63", + "source_location": "L65", "weight": 1.0, "_origin": "ast", "source": "frontend_application_lib_store_userstore", @@ -125613,7 +126568,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L216", + "source_location": "L219", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller", @@ -125624,7 +126579,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L234", + "source_location": "L237", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller", @@ -125635,7 +126590,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L241", + "source_location": "L244", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller", @@ -125646,7 +126601,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L248", + "source_location": "L251", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller", @@ -125657,7 +126612,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L255", + "source_location": "L258", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller", @@ -125668,7 +126623,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L265", + "source_location": "L268", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller", @@ -125679,7 +126634,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L272", + "source_location": "L275", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller", @@ -125690,7 +126645,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L279", + "source_location": "L282", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller", @@ -125701,7 +126656,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L295", + "source_location": "L298", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller", @@ -125712,7 +126667,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L312", + "source_location": "L315", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller", @@ -125723,7 +126678,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L319", + "source_location": "L322", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller", @@ -125734,7 +126689,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L326", + "source_location": "L329", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller", @@ -125829,39 +126784,6 @@ "target": "backend_src_admin_admin_controller_admincontroller_updateuserrole", "confidence_score": 1.0 }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1002", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_deletecoupon", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1008", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_getsettings", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1016", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_updatesettings", - "confidence_score": 1.0 - }, { "relation": "method", "confidence": "EXTRACTED", @@ -125870,292 +126792,6 @@ "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_getpets", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1103", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_getdoctors", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1109", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_createdoctor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1119", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_updatedoctor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1132", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_deletedoctor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1136", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_adjustuserwallet", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L114", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_getusers", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1170", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_getpricingsettings", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1195", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_updatepricingsettings", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1280", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_applyglobalmargins", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1399", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_bulkpriceadjustment", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L203", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_getuserdetails", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L217", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_createuser", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L260", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_updateuser", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L321", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_updateuserrole", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L328", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_deleteuser", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L351", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_getproducts", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L439", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_createproduct", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L571", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_updateproduct", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L64", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L70", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_getdashboardstats", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L725", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_deleteproduct", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L739", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_getorders", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L797", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_getorderbyid", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L819", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_updateorderstatus", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L839", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_refundordertowallet", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L907", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", "target": "backend_src_admin_admin_service_adminservice_getcoupons", "confidence_score": 1.0 }, @@ -126163,7 +126799,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L938", + "source_location": "L1084", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -126174,7 +126810,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L965", + "source_location": "L1111", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", @@ -126185,13 +126821,332 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L995", + "source_location": "L1141", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice", "target": "backend_src_admin_admin_service_adminservice_togglecoupon", "confidence_score": 1.0 }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L1148", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_deletecoupon", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L1154", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_getsettings", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L1162", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_updatesettings", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_getusers", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L1199", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_getpets", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L1249", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_getdoctors", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L1255", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_createdoctor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L1265", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_updatedoctor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L1278", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_deletedoctor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L1282", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_adjustuserwallet", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L1347", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_getpricingsettings", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L1372", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_updatepricingsettings", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L1457", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_applyglobalmargins", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L1576", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_bulkpriceadjustment", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_getuserdetails", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_createuser", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_updateuser", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L324", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_updateuserrole", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L331", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_deleteuser", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L354", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_getproducts", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L442", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_createproduct", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L575", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_updateproduct", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_getdashboardstats", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L730", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_deleteproduct", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L744", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_getorders", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L802", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_getorderbyid", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L824", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_updateorderstatus", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L946", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_refundordertowallet", + "confidence_score": 1.0 + }, { "relation": "method", "confidence": "EXTRACTED", @@ -128407,172 +129362,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L1015", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_sendsms", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L123", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_postasmx", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L159", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_recordlog", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L191", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_getsmslogs", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L248", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_deletesmslog", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L255", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_clearallsmslogs", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L262", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_parsepatternsxml", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L300", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_getcredit", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L370", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_getpatterns", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L477", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_addpattern", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L54", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L556", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_editpattern", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L59", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L611", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_savelocalpattern", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L639", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_updatelocalpattern", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L679", + "source_location": "L1013", "weight": 1.0, "_origin": "ast", "source": "backend_src_common_services_sms_service_smsservice", @@ -128583,7 +129373,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L807", + "source_location": "L1154", "weight": 1.0, "_origin": "ast", "source": "backend_src_common_services_sms_service_smsservice", @@ -128594,7 +129384,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L932", + "source_location": "L1285", "weight": 1.0, "_origin": "ast", "source": "backend_src_common_services_sms_service_smsservice", @@ -128605,7 +129395,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L945", + "source_location": "L1298", "weight": 1.0, "_origin": "ast", "source": "backend_src_common_services_sms_service_smsservice", @@ -128616,7 +129406,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L964", + "source_location": "L1317", "weight": 1.0, "_origin": "ast", "source": "backend_src_common_services_sms_service_smsservice", @@ -128627,7 +129417,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L981", + "source_location": "L1334", "weight": 1.0, "_origin": "ast", "source": "backend_src_common_services_sms_service_smsservice", @@ -128638,13 +129428,222 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L997", + "source_location": "L1350", "weight": 1.0, "_origin": "ast", "source": "backend_src_common_services_sms_service_smsservice", "target": "backend_src_common_services_sms_service_smsservice_sendpetcarereminder", "confidence_score": 1.0 }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L1368", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_sendsms", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_triggerevent", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_geteventdefinitions", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L284", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_testrule", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L356", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_postasmx", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L392", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_recordlog", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L424", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_getsmslogs", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L481", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_deletesmslog", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L488", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_clearallsmslogs", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L495", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_parsepatternsxml", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L540", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_getcredit", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L610", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_renderpatternmessage", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L643", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_getpatterns", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_constructor", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L811", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_addpattern", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L890", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_editpattern", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L945", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_savelocalpattern", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L973", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_updatelocalpattern", + "confidence_score": 1.0 + }, { "relation": "method", "confidence": "EXTRACTED", @@ -128715,7 +129714,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L125", + "source_location": "L115", "weight": 1.0, "_origin": "ast", "source": "backend_src_contact_contact_service_contactservice", @@ -128726,7 +129725,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L148", + "source_location": "L138", "weight": 1.0, "_origin": "ast", "source": "backend_src_contact_contact_service_contactservice", @@ -128737,7 +129736,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L159", + "source_location": "L149", "weight": 1.0, "_origin": "ast", "source": "backend_src_contact_contact_service_contactservice", @@ -128770,7 +129769,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L77", + "source_location": "L67", "weight": 1.0, "_origin": "ast", "source": "backend_src_contact_contact_service_contactservice", @@ -129540,7 +130539,18 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L322", + "source_location": "L310", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_orders_orders_service_ordersservice", + "target": "backend_src_orders_orders_service_ordersservice_buildordereventdata", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L425", "weight": 1.0, "_origin": "ast", "source": "backend_src_orders_orders_service_ordersservice", @@ -129551,7 +130561,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L353", + "source_location": "L464", "weight": 1.0, "_origin": "ast", "source": "backend_src_orders_orders_service_ordersservice", @@ -129562,7 +130572,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L386", + "source_location": "L497", "weight": 1.0, "_origin": "ast", "source": "backend_src_orders_orders_service_ordersservice", @@ -129573,7 +130583,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L400", + "source_location": "L511", "weight": 1.0, "_origin": "ast", "source": "backend_src_orders_orders_service_ordersservice", @@ -129584,7 +130594,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L430", + "source_location": "L541", "weight": 1.0, "_origin": "ast", "source": "backend_src_orders_orders_service_ordersservice", @@ -129595,7 +130605,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L452", + "source_location": "L563", "weight": 1.0, "_origin": "ast", "source": "backend_src_orders_orders_service_ordersservice", @@ -129738,7 +130748,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L264", + "source_location": "L265", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -129749,7 +130759,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L279", + "source_location": "L280", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -129760,7 +130770,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L300", + "source_location": "L301", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -129771,7 +130781,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L325", + "source_location": "L326", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -129782,7 +130792,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L343", + "source_location": "L344", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -129793,7 +130803,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L356", + "source_location": "L357", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -129804,7 +130814,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L365", + "source_location": "L366", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -129815,7 +130825,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L376", + "source_location": "L377", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -129826,7 +130836,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L391", + "source_location": "L392", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -129837,7 +130847,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L401", + "source_location": "L402", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -129848,7 +130858,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L416", + "source_location": "L417", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -129870,7 +130880,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L439", + "source_location": "L440", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -129881,7 +130891,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L448", + "source_location": "L449", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -129892,7 +130902,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L471", + "source_location": "L472", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -129914,7 +130924,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L485", + "source_location": "L486", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -129925,7 +130935,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L508", + "source_location": "L509", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -129936,7 +130946,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L525", + "source_location": "L526", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -129947,7 +130957,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L534", + "source_location": "L535", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -129958,7 +130968,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L545", + "source_location": "L546", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -129969,7 +130979,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L556", + "source_location": "L557", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -129980,7 +130990,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L580", + "source_location": "L581", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -129991,7 +131001,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L591", + "source_location": "L592", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -130002,7 +131012,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L603", + "source_location": "L604", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -130013,7 +131023,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L618", + "source_location": "L619", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller", @@ -130046,13 +131056,68 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L1014", + "source_location": "L1029", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_service_paymentservice", + "target": "backend_src_payment_payment_service_paymentservice_gettransactionbytrackid", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L1035", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_service_paymentservice", + "target": "backend_src_payment_payment_service_paymentservice_inquirydirectzibal", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L1058", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_service_paymentservice", + "target": "backend_src_payment_payment_service_paymentservice_adminmanualverify", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L1154", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_service_paymentservice", + "target": "backend_src_payment_payment_service_paymentservice_adminmanualreject", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L1180", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_service_paymentservice", "target": "backend_src_payment_payment_service_paymentservice_checkgatewayhealth", "confidence_score": 1.0 }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L1187", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_service_paymentservice", + "target": "backend_src_payment_payment_service_paymentservice_handleadmingatewayrefund", + "confidence_score": 1.0 + }, { "relation": "method", "confidence": "EXTRACTED", @@ -130101,7 +131166,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L540", + "source_location": "L673", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_service_paymentservice", @@ -130112,7 +131177,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L635", + "source_location": "L768", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_service_paymentservice", @@ -130123,7 +131188,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L685", + "source_location": "L818", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_service_paymentservice", @@ -130134,7 +131199,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L798", + "source_location": "L931", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_service_paymentservice", @@ -130145,57 +131210,13 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L845", + "source_location": "L978", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_service_paymentservice", "target": "backend_src_payment_payment_service_paymentservice_adminliveinquiry", "confidence_score": 1.0 }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L896", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_gettransactionbytrackid", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L902", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_inquirydirectzibal", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L925", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_adminmanualverify", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L988", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_adminmanualreject", - "confidence_score": 1.0 - }, { "relation": "method", "confidence": "EXTRACTED", @@ -131630,7 +132651,29 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L229", + "source_location": "L230", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller", + "target": "backend_src_settings_settings_controller_settingscontroller_getsmsevents", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L241", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller", + "target": "backend_src_settings_settings_controller_settingscontroller_testsmsrule", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L252", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller", @@ -131641,7 +132684,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L238", + "source_location": "L261", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller", @@ -131652,7 +132695,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L253", + "source_location": "L276", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller", @@ -131663,35 +132706,13 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L265", + "source_location": "L288", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller", "target": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", "confidence_score": 1.0 }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L274", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L283", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", - "confidence_score": 1.0 - }, { "relation": "method", "confidence": "EXTRACTED", @@ -131703,6 +132724,28 @@ "target": "backend_src_settings_settings_controller_settingscontroller_constructor", "confidence_score": 1.0 }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L297", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller", + "target": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L306", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller", + "target": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", + "confidence_score": 1.0 + }, { "relation": "method", "confidence": "EXTRACTED", @@ -131905,7 +132948,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L499", + "source_location": "L535", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice", @@ -131916,7 +132959,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L605", + "source_location": "L649", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice", @@ -131927,7 +132970,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L609", + "source_location": "L653", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice", @@ -131938,7 +132981,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L613", + "source_location": "L657", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice", @@ -131949,7 +132992,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L622", + "source_location": "L666", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice", @@ -131960,7 +133003,29 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L626", + "source_location": "L670", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_getsmsevents", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L674", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_testsmsrule", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L678", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice", @@ -131971,7 +133036,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L630", + "source_location": "L682", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice", @@ -131982,7 +133047,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L634", + "source_location": "L686", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice", @@ -131993,7 +133058,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L638", + "source_location": "L690", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice", @@ -132004,7 +133069,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L642", + "source_location": "L694", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice", @@ -132015,7 +133080,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L646", + "source_location": "L698", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice", @@ -132521,7 +133586,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/users/users.service.ts", - "source_location": "L125", + "source_location": "L130", "weight": 1.0, "_origin": "ast", "source": "backend_src_users_users_service_usersservice", @@ -132532,7 +133597,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/users/users.service.ts", - "source_location": "L210", + "source_location": "L215", "weight": 1.0, "_origin": "ast", "source": "backend_src_users_users_service_usersservice", @@ -132543,7 +133608,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/users/users.service.ts", - "source_location": "L232", + "source_location": "L237", "weight": 1.0, "_origin": "ast", "source": "backend_src_users_users_service_usersservice", @@ -132554,18 +133619,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/users/users.service.ts", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_service_usersservice", - "target": "backend_src_users_users_service_usersservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L258", + "source_location": "L263", "weight": 1.0, "_origin": "ast", "source": "backend_src_users_users_service_usersservice", @@ -132576,7 +133630,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/users/users.service.ts", - "source_location": "L264", + "source_location": "L269", "weight": 1.0, "_origin": "ast", "source": "backend_src_users_users_service_usersservice", @@ -132591,14 +133645,14 @@ "weight": 1.0, "_origin": "ast", "source": "backend_src_users_users_service_usersservice", - "target": "backend_src_users_users_service_usersservice_findbyid", + "target": "backend_src_users_users_service_usersservice_constructor", "confidence_score": 1.0 }, { "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/users/users.service.ts", - "source_location": "L275", + "source_location": "L280", "weight": 1.0, "_origin": "ast", "source": "backend_src_users_users_service_usersservice", @@ -132609,7 +133663,18 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/users/users.service.ts", - "source_location": "L299", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_users_users_service_usersservice", + "target": "backend_src_users_users_service_usersservice_findbyid", + "confidence_score": 1.0 + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L330", "weight": 1.0, "_origin": "ast", "source": "backend_src_users_users_service_usersservice", @@ -132818,7 +133883,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L54", + "source_location": "L51", "weight": 1.0, "_origin": "ast", "source": "backend_src_wholesale_wholesale_service_wholesaleservice", @@ -132829,7 +133894,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L63", + "source_location": "L60", "weight": 1.0, "_origin": "ast", "source": "backend_src_wholesale_wholesale_service_wholesaleservice", @@ -132840,7 +133905,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L77", + "source_location": "L74", "weight": 1.0, "_origin": "ast", "source": "backend_src_wholesale_wholesale_service_wholesaleservice", @@ -133192,7 +134257,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L206", + "source_location": "L199", "weight": 1.0, "_origin": "ast", "source": "frontend_application_lib_services_productservice_productservice", @@ -133203,7 +134268,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L217", + "source_location": "L210", "weight": 1.0, "_origin": "ast", "source": "frontend_application_lib_services_productservice_productservice", @@ -133214,7 +134279,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L256", + "source_location": "L249", "weight": 1.0, "_origin": "ast", "source": "frontend_application_lib_services_productservice_productservice", @@ -133225,7 +134290,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L270", + "source_location": "L263", "weight": 1.0, "_origin": "ast", "source": "frontend_application_lib_services_productservice_productservice", @@ -133236,7 +134301,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L284", + "source_location": "L277", "weight": 1.0, "_origin": "ast", "source": "frontend_application_lib_services_productservice_productservice", @@ -133247,7 +134312,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L314", + "source_location": "L293", "weight": 1.0, "_origin": "ast", "source": "frontend_application_lib_services_productservice_productservice", @@ -133258,7 +134323,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L328", + "source_location": "L307", "weight": 1.0, "_origin": "ast", "source": "frontend_application_lib_services_productservice_productservice", @@ -133269,7 +134334,7 @@ "relation": "method", "confidence": "EXTRACTED", "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L343", + "source_location": "L322", "weight": 1.0, "_origin": "ast", "source": "frontend_application_lib_services_productservice_productservice", @@ -133658,7 +134723,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L242", + "source_location": "L245", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller_createcoupon", @@ -133670,7 +134735,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L289", + "source_location": "L292", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller_createdoctor", @@ -133706,7 +134771,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L266", + "source_location": "L269", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller_deletecoupon", @@ -133718,7 +134783,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L313", + "source_location": "L316", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller_deletedoctor", @@ -133754,7 +134819,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L235", + "source_location": "L238", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller_getcoupons", @@ -133778,7 +134843,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L273", + "source_location": "L276", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller_getdoctors", @@ -133838,7 +134903,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L320", + "source_location": "L323", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller_getsettings", @@ -133874,7 +134939,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L221", + "source_location": "L224", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller_refundordertowallet", @@ -133886,7 +134951,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L259", + "source_location": "L262", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller_togglecoupon", @@ -133898,7 +134963,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L249", + "source_location": "L252", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller_updatecoupon", @@ -133910,7 +134975,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L306", + "source_location": "L309", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller_updatedoctor", @@ -133922,7 +134987,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L206", + "source_location": "L209", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller_updateorderstatus", @@ -133958,7 +135023,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L327", + "source_location": "L330", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_controller_admincontroller_updatesettings", @@ -133994,7 +135059,19 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1360", + "source_location": "L1336", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice_adjustuserwallet", + "target": "backend_src_common_services_sms_service_smsservice_triggerevent" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L1537", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice_applyglobalmargins", @@ -134006,7 +135083,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1528", + "source_location": "L1705", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice_bulkpriceadjustment", @@ -134018,7 +135095,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L564", + "source_location": "L568", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice_createproduct", @@ -134030,7 +135107,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L731", + "source_location": "L736", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice_deleteproduct", @@ -134042,7 +135119,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L87", + "source_location": "L90", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice_getdashboardstats", @@ -134054,7 +135131,31 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1264", + "source_location": "L1037", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice_refundordertowallet", + "target": "backend_src_common_services_sms_service_smsservice_triggerevent" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L935", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice_updateorderstatus", + "target": "backend_src_common_services_sms_service_smsservice_triggerevent" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L1441", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice_updatepricingsettings", @@ -134066,7 +135167,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L718", + "source_location": "L723", "weight": 1.0, "_origin": "ast", "source": "backend_src_admin_admin_service_adminservice_updateproduct", @@ -134774,11 +135875,11 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L47", + "source_location": "L43", "weight": 1.0, "_origin": "ast", "source": "backend_src_contact_contact_service_contactservice_submitcontactform", - "target": "backend_src_common_services_sms_service_smsservice_sendpatternsms" + "target": "backend_src_common_services_sms_service_smsservice_triggerevent" }, { "relation": "calls", @@ -135134,7 +136235,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L417", + "source_location": "L528", "weight": 1.0, "_origin": "ast", "source": "backend_src_orders_orders_service_ordersservice_checkandsendrefillreminders", @@ -135150,7 +136251,7 @@ "weight": 1.0, "_origin": "ast", "source": "backend_src_orders_orders_service_ordersservice_create", - "target": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation" + "target": "backend_src_common_services_sms_service_smsservice_triggerevent" }, { "relation": "calls", @@ -135158,11 +136259,11 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L518", + "source_location": "L629", "weight": 1.0, "_origin": "ast", "source": "backend_src_orders_orders_service_ordersservice_retrypayment", - "target": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation" + "target": "backend_src_common_services_sms_service_smsservice_triggerevent" }, { "relation": "calls", @@ -135170,11 +136271,11 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L345", + "source_location": "L458", "weight": 1.0, "_origin": "ast", "source": "backend_src_orders_orders_service_ordersservice_updatestatus", - "target": "backend_src_common_services_sms_service_smsservice_sendshippingnotification" + "target": "backend_src_common_services_sms_service_smsservice_triggerevent" }, { "relation": "calls", @@ -135182,7 +136283,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L474", + "source_location": "L475", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_cancelebankcheckout", @@ -135194,7 +136295,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L511", + "source_location": "L512", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_changeidentifiedpaymentstatus", @@ -135206,7 +136307,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L440", + "source_location": "L441", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_createebankcheckout", @@ -135218,11 +136319,11 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L256", + "source_location": "L257", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_createrefund", - "target": "backend_src_payment_zibal_service_zibalservice_requestrefund" + "target": "backend_src_payment_payment_service_paymentservice_handleadmingatewayrefund" }, { "relation": "calls", @@ -135230,7 +136331,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L368", + "source_location": "L369", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_createsubmerchant", @@ -135242,7 +136343,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L379", + "source_location": "L380", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", @@ -135254,7 +136355,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L535", + "source_location": "L536", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", @@ -135266,7 +136367,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L526", + "source_location": "L527", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", @@ -135290,7 +136391,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L344", + "source_location": "L345", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", @@ -135302,7 +136403,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L335", + "source_location": "L336", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", @@ -135314,7 +136415,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L393", + "source_location": "L394", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", @@ -135326,7 +136427,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L405", + "source_location": "L406", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", @@ -135338,7 +136439,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L456", + "source_location": "L457", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", @@ -135350,7 +136451,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L493", + "source_location": "L494", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", @@ -135362,7 +136463,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L424", + "source_location": "L425", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", @@ -135374,7 +136475,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L315", + "source_location": "L316", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", @@ -135386,7 +136487,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L619", + "source_location": "L620", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_gethealth", @@ -135398,7 +136499,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L290", + "source_location": "L291", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", @@ -135410,7 +136511,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L357", + "source_location": "L358", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_getsubmerchants", @@ -135494,7 +136595,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L271", + "source_location": "L272", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_inquirerefund", @@ -135506,7 +136607,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L581", + "source_location": "L582", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", @@ -135518,7 +136619,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L560", + "source_location": "L561", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", @@ -135530,7 +136631,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L563", + "source_location": "L564", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", @@ -135542,7 +136643,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L570", + "source_location": "L571", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", @@ -135554,7 +136655,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L607", + "source_location": "L608", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", @@ -135566,7 +136667,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L595", + "source_location": "L596", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_manualverify", @@ -135578,7 +136679,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L546", + "source_location": "L547", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", @@ -135602,7 +136703,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L859", + "source_location": "L992", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_service_paymentservice_adminliveinquiry", @@ -135614,7 +136715,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L862", + "source_location": "L995", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_service_paymentservice_adminliveinquiry", @@ -135626,7 +136727,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L865", + "source_location": "L998", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_service_paymentservice_adminliveinquiry", @@ -135638,12 +136739,36 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L1015", + "source_location": "L1132", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_service_paymentservice_adminmanualverify", + "target": "backend_src_common_services_sms_service_smsservice_triggerevent" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L1181", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_service_paymentservice_checkgatewayhealth", "target": "backend_src_payment_zibal_service_zibalservice_checkhealth" }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L1220", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_service_paymentservice_handleadmingatewayrefund", + "target": "backend_src_payment_zibal_service_zibalservice_requestrefund" + }, { "relation": "calls", "context": "call", @@ -135746,7 +136871,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L903", + "source_location": "L1036", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_service_paymentservice_inquirydirectzibal", @@ -135758,7 +136883,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L904", + "source_location": "L1037", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_service_paymentservice_inquirydirectzibal", @@ -135770,7 +136895,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L907", + "source_location": "L1040", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_service_paymentservice_inquirydirectzibal", @@ -135782,7 +136907,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L571", + "source_location": "L704", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_service_paymentservice_reconcilependingtransactions", @@ -135794,7 +136919,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L593", + "source_location": "L726", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_service_paymentservice_reconcilependingtransactions", @@ -135842,11 +136967,11 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L500", + "source_location": "L606", "weight": 1.0, "_origin": "ast", "source": "backend_src_payment_payment_service_paymentservice_verifyandprocess", - "target": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation" + "target": "backend_src_common_services_sms_service_smsservice_triggerevent" }, { "relation": "calls", @@ -136106,7 +137231,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L243", + "source_location": "L266", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_addpattern", @@ -136118,7 +137243,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L284", + "source_location": "L307", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", @@ -136142,7 +137267,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L275", + "source_location": "L298", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", @@ -136154,7 +137279,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L254", + "source_location": "L277", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_editpattern", @@ -136190,7 +137315,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L230", + "source_location": "L253", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_getpatterns", @@ -136238,7 +137363,19 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L266", + "source_location": "L231", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getsmsevents", + "target": "backend_src_settings_settings_service_settingsservice_getsmsevents" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L289", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", @@ -136328,6 +137465,18 @@ "source": "backend_src_settings_settings_controller_settingscontroller_testsms", "target": "backend_src_settings_settings_service_settingsservice_testsms" }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_testsmsrule", + "target": "backend_src_settings_settings_service_settingsservice_testsmsrule" + }, { "relation": "calls", "context": "call", @@ -136406,7 +137555,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L631", + "source_location": "L683", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice_addpattern", @@ -136418,7 +137567,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L647", + "source_location": "L699", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice_clearallsmslogs", @@ -136430,7 +137579,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L643", + "source_location": "L695", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice_deletesmslog", @@ -136442,7 +137591,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L635", + "source_location": "L687", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice_editpattern", @@ -136454,7 +137603,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L627", + "source_location": "L679", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice_getpatterns", @@ -136466,7 +137615,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L610", + "source_location": "L654", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice_getsmscredit", @@ -136478,7 +137627,19 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L639", + "source_location": "L671", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_service_settingsservice_getsmsevents", + "target": "backend_src_common_services_sms_service_smsservice_geteventdefinitions" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L691", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice_getsmslogs", @@ -136490,7 +137651,7 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L606", + "source_location": "L650", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice_getsmssettings", @@ -136502,12 +137663,24 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L623", + "source_location": "L667", "weight": 1.0, "_origin": "ast", "source": "backend_src_settings_settings_service_settingsservice_testsms", "target": "backend_src_common_services_sms_service_smsservice_testsms" }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L675", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_service_settingsservice_testsmsrule", + "target": "backend_src_common_services_sms_service_smsservice_testrule" + }, { "relation": "calls", "context": "call", @@ -136772,6 +137945,18 @@ "source": "backend_src_users_users_controller_userscontroller_updateprofile", "target": "backend_src_users_users_service_usersservice_update" }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/users/users.service.ts", + "source_location": "L319", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_users_users_service_usersservice_topupwallet", + "target": "backend_src_common_services_sms_service_smsservice_triggerevent" + }, { "relation": "calls", "context": "call", @@ -136886,11 +138071,11 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L29", + "source_location": "L27", "weight": 1.0, "_origin": "ast", "source": "backend_src_wholesale_wholesale_service_wholesaleservice_applyforwholesale", - "target": "backend_src_common_services_sms_service_smsservice_sendpatternsms" + "target": "backend_src_common_services_sms_service_smsservice_triggerevent" }, { "relation": "conceptually_related_to", @@ -137022,5 +138207,5 @@ } ], "hyperedges": [], - "built_at_commit": "ceaab10fddbf1c5498b44b0e8e341f65803b8b06" + "built_at_commit": "e15c25dae166337b08dd4e24e82c976c5ce2c3e7" } \ No newline at end of file diff --git a/graphify-out/2026-09-05/manifest.json b/graphify-out/2026-09-05/manifest.json index 71d0b91..6f9a942 100644 --- a/graphify-out/2026-09-05/manifest.json +++ b/graphify-out/2026-09-05/manifest.json @@ -1,3716 +1,3758 @@ { ".ai_agency/orchestrate.py": { "mtime": 1785148022.0726626, - "seen": 1788342104.6662529, + "seen": 1788608157.2188678, "ast_hash": "43b4b40901868f1bdfd470cf58f40760", "semantic_hash": "" }, ".gitea/scripts/with-vpn.sh": { "mtime": 1786799852.1263163, - "seen": 1788342104.6662529, + "seen": 1788608157.2188678, "ast_hash": "451f307a9e42d2240949e7bf39de6667", "semantic_hash": "" }, "backend/eslint.config.mjs": { "mtime": 1787073059.1053617, - "seen": 1788342104.6662529, + "seen": 1788608157.2188678, "ast_hash": "54fb00fe78776d07db9dae804aced0d1", "semantic_hash": "" }, "backend/nest-cli.json": { "mtime": 1787072106.3705614, - "seen": 1788342104.6662529, + "seen": 1788608157.2188678, "ast_hash": "718a59f7d90dbf49fdda2843d72172c4", "semantic_hash": "" }, "backend/package.json": { "mtime": 1787644197.1371043, - "seen": 1788342104.6662529, + "seen": 1788608157.2188678, "ast_hash": "4f466b887ff858a0d2890c9ca9727285", "semantic_hash": "" }, "backend/prisma/scientificTerms.ts": { "mtime": 1785325924.6348126, - "seen": 1788342104.6662529, + "seen": 1788608157.2188678, "ast_hash": "4c449cfeea573afd27cdfd1cdc72d4f3", "semantic_hash": "" }, "backend/prisma/seed-blogs.ts": { "mtime": 1786885876.777374, - "seen": 1788342104.6662529, + "seen": 1788608157.2188678, "ast_hash": "be491715958e8f9473913bdfe9cf5638", "semantic_hash": "" }, "backend/prisma/seed-custom.ts": { "mtime": 1786799852.144902, - "seen": 1788342104.6662529, + "seen": 1788608157.2188678, "ast_hash": "23cefb1ea3fc60be141520fd50e3f9f9", "semantic_hash": "" }, "backend/prisma/seed-home.ts": { "mtime": 1786885876.779371, - "seen": 1788342104.6662529, + "seen": 1788608157.2188678, "ast_hash": "3fd438d66d0b1174b885a9065e43b569", "semantic_hash": "" }, "backend/prisma/seed-products.ts": { "mtime": 1787127978.2192707, - "seen": 1788342104.6662529, + "seen": 1788608157.2188678, "ast_hash": "62ab15adef06163ac0d7c93efa357e66", "semantic_hash": "" }, "backend/prisma/seed-ui-texts.ts": { "mtime": 1787999006.317919, - "seen": 1788342104.6662529, + "seen": 1788608157.2188678, "ast_hash": "5d2d9aa6fcac8fd188f509a618601464", "semantic_hash": "" }, "backend/prisma/seed-wiki.ts": { "mtime": 1786961195.297596, - "seen": 1788342104.6662529, + "seen": 1788608157.2188678, "ast_hash": "4734726498e97501b3f8c6c8bc022bb8", "semantic_hash": "" }, "backend/prisma/seed.ts": { "mtime": 1787127978.2255876, - "seen": 1788342104.6662529, + "seen": 1788608157.2188678, "ast_hash": "7e9527a378a7a25a0a673c80a420739f", "semantic_hash": "" }, "backend/prisma/tsconfig.json": { "mtime": 1786961195.3002362, - "seen": 1788342104.6662529, + "seen": 1788608157.2188678, "ast_hash": "a12c81b60c5e9fdb3c1aba03ac7ecb27", "semantic_hash": "" }, "backend/prisma/tsconfig.seed.json": { "mtime": 1786955870.751259, - "seen": 1788342104.6662529, + "seen": 1788608157.2188678, "ast_hash": "a12c81b60c5e9fdb3c1aba03ac7ecb27", "semantic_hash": "" }, "backend/scripts/generate-openapi.d.ts": { "mtime": 1786883225.7774837, - "seen": 1788342104.6662529, + "seen": 1788608157.2188678, "ast_hash": "e2ebd7ddedcadeeadbf819c35985c768", "semantic_hash": "" }, "backend/scripts/generate-openapi.js": { "mtime": 1786883225.77912, - "seen": 1788342104.6662529, + "seen": 1788608157.2188678, "ast_hash": "f7c2607fc067b04e7cb7716490ea1169", "semantic_hash": "" }, "backend/scripts/generate-openapi.ts": { "mtime": 1787729527.925392, - "seen": 1788342104.6662529, + "seen": 1788608157.2188678, "ast_hash": "561983534164723c0f073bcd98f22be9", "semantic_hash": "" }, "backend/scripts/seo-backfill.ts": { "mtime": 1787729527.925392, - "seen": 1788342104.6662529, + "seen": 1788608157.2188678, "ast_hash": "fc6da532f40c339058c682a352378027", "semantic_hash": "" }, "backend/src/admin/admin.controller.spec.ts": { "mtime": 1786799852.1573997, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "05370741c60e581754191c00baf87596", "semantic_hash": "" }, "backend/src/admin/admin.controller.ts": { - "mtime": 1788330948.585539, - "seen": 1788342104.6662529, - "ast_hash": "b86117d1a39b46fdb486911a025dcde9", + "mtime": 1788607875.3236513, + "seen": 1788608157.2198672, + "ast_hash": "8bb6cf3bd91e8695b0ebdbb50110c4fa", "semantic_hash": "" }, "backend/src/admin/admin.module.ts": { "mtime": 1786877667.0050085, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "2c08f0bdcbeb87979024730e39c7a6ce", "semantic_hash": "" }, "backend/src/admin/admin.service.spec.ts": { "mtime": 1787729523.4348526, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "fd18f82573faa70207c62b2b4f336385", "semantic_hash": "" }, "backend/src/admin/admin.service.ts": { - "mtime": 1788338404.792936, - "seen": 1788342104.6662529, - "ast_hash": "ba5f7320262d92696958d7c27e2550f9", + "mtime": 1788607875.3236513, + "seen": 1788608157.2198672, + "ast_hash": "a8dd77d9146a61d7278af3d1cbd29271", "semantic_hash": "" }, "backend/src/admin/blogs.controller.ts": { "mtime": 1787579631.7581778, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "ddeda17e05fee4b7ce49a44c89c0f1bb", "semantic_hash": "" }, "backend/src/admin/blogs.service.ts": { "mtime": 1787579631.7601776, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "cb13d9df89955a1f5145abc300225fb8", "semantic_hash": "" }, "backend/src/admin/categories.controller.ts": { "mtime": 1786799852.1741924, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "e6322c19042382028966e6eb8dce7c62", "semantic_hash": "" }, "backend/src/admin/categories.service.ts": { "mtime": 1786799852.1751943, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "7c6b626454aa53d5a3458b5ca738a97c", "semantic_hash": "" }, "backend/src/admin/dto/admin-query.dto.ts": { "mtime": 1788332757.6380293, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "1e92d96dfc1c0bf377596e540ddc58b0", "semantic_hash": "" }, "backend/src/admin/dto/product.dto.ts": { - "mtime": 1788338404.79406, - "seen": 1788342104.6662529, - "ast_hash": "bb2bef1ad3fa649a70fed77ce640d6ec", + "mtime": 1788607875.3236513, + "seen": 1788608157.2198672, + "ast_hash": "774e92a46de0ac4f1463590133551375", "semantic_hash": "" }, "backend/src/admin/dto/user.dto.ts": { "mtime": 1787072106.3819897, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "7f8b670a02bb9f6f52123a8e289f866a", "semantic_hash": "" }, "backend/src/admin/media.controller.ts": { "mtime": 1786876983.6488664, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "02fa16bdaf1363f117f7200f590b13c4", "semantic_hash": "" }, "backend/src/admin/media.service.ts": { "mtime": 1787748438.7015336, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "53b0f8a000202bad6359f987cdf0865e", "semantic_hash": "" }, "backend/src/admin/pets.controller.ts": { "mtime": 1786799852.1862173, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "8734d47651b112f7f1682f629dc4c7b1", "semantic_hash": "" }, "backend/src/admin/pets.service.ts": { "mtime": 1786954681.814243, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "67ef020c49eb8334a2bac643941678ac", "semantic_hash": "" }, "backend/src/admin/reports.controller.ts": { "mtime": 1787729523.4348526, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "d8557eb2c8b2e0e5272bc5eee2530080", "semantic_hash": "" }, "backend/src/admin/reports.service.ts": { "mtime": 1787729523.4348526, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "37233e7d62592c9d74c0c6ce5eb7096f", "semantic_hash": "" }, "backend/src/admin/ssl.controller.ts": { "mtime": 1787072106.382979, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "460506a236a330ba614aae15a2659b2b", "semantic_hash": "" }, "backend/src/admin/ssl.service.ts": { "mtime": 1787072106.3839788, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "dc7ba9e922c1e3d80dae4f1593297fa7", "semantic_hash": "" }, "backend/src/admin/wiki.controller.ts": { "mtime": 1786799852.1917324, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "8b7c8559d6ed6bb2c220d9abd4f622b1", "semantic_hash": "" }, "backend/src/admin/wiki.service.ts": { "mtime": 1786799852.193324, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "ed627a21f3b767e9855511afefa5273c", "semantic_hash": "" }, "backend/src/app.controller.spec.ts": { "mtime": 1783764561.6448398, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "4a1c0e1133dbda6f6e8f3e60d984eddf", "semantic_hash": "" }, "backend/src/app.controller.ts": { "mtime": 1783764561.645849, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "3ab0e83b7d93b85ea489ab994ec79ea1", "semantic_hash": "" }, "backend/src/app.module.ts": { "mtime": 1787579631.7646954, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "5b326fa2dc121d0b55648e7530304f4f", "semantic_hash": "" }, "backend/src/app.service.ts": { "mtime": 1783764561.6488404, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "cd3fb7836f10de08a725ee1fd4ab36fe", "semantic_hash": "" }, "backend/src/auth/auth.constants.ts": { "mtime": 1787072106.3859801, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "382adefba83246badeae8701ef6335cd", "semantic_hash": "" }, "backend/src/auth/auth.controller.spec.ts": { "mtime": 1785327951.179468, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "7531d00aaa85a80f27e175071ce21c89", "semantic_hash": "" }, "backend/src/auth/auth.controller.ts": { "mtime": 1787645037.3680255, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "e0360966564df6fe0650699160f24f57", "semantic_hash": "" }, "backend/src/auth/auth.module.ts": { "mtime": 1787072106.3885016, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "3bd9f559e5d43ee9c8cae151954c8356", "semantic_hash": "" }, "backend/src/auth/auth.service.spec.ts": { "mtime": 1787729523.4368768, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "9bf084557cffdb7f7f36b192ef746071", "semantic_hash": "" }, "backend/src/auth/auth.service.ts": { "mtime": 1787127978.2285898, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "b38c558251bdbadb7ab1b5f690c5c387", "semantic_hash": "" }, "backend/src/auth/dto/admin-login.dto.ts": { "mtime": 1787127978.2295873, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "c1a7d3d5babba82ff11b04ae7dcaabca", "semantic_hash": "" }, "backend/src/auth/dto/login.dto.ts": { "mtime": 1783764561.659109, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "9941767ad430851531a9f049c2b65ed5", "semantic_hash": "" }, "backend/src/auth/dto/register.dto.ts": { "mtime": 1785327951.186477, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "6165fdad9219dee4390732a7f6504e4a", "semantic_hash": "" }, "backend/src/auth/dto/send-otp.dto.ts": { "mtime": 1783764561.6611066, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "a99015984cd1320cbd36719809f69d3b", "semantic_hash": "" }, "backend/src/auth/dto/verify-otp.dto.ts": { "mtime": 1783764561.662112, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "8bc250f7ca73e6cbe4cfa01a99a3c032", "semantic_hash": "" }, "backend/src/auth/jwt-auth.guard.ts": { "mtime": 1786799852.2058628, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "f98f32eaf66499355a5e61632ac82aa5", "semantic_hash": "" }, "backend/src/auth/jwt.strategy.ts": { "mtime": 1786883225.7943432, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "f815b9f719678a154ebf50090b801c62", "semantic_hash": "" }, "backend/src/auth/roles.decorator.ts": { "mtime": 1786799852.2083795, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "0d86f61ddaab0d2f4d5f9b331a5e2541", "semantic_hash": "" }, "backend/src/auth/roles.guard.ts": { "mtime": 1786799852.2090034, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "10b31496903f54383d35b90a55c3e84a", "semantic_hash": "" }, "backend/src/b2b/b2b.controller.ts": { "mtime": 1787645037.3690653, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "7a18bd2c1df187a504e15a2a9f93f41b", "semantic_hash": "" }, "backend/src/b2b/b2b.module.ts": { "mtime": 1786799852.2120132, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "b1777d0004a54e8f89328879a20aa171", "semantic_hash": "" }, "backend/src/b2b/b2b.service.ts": { "mtime": 1786799852.2140093, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "d025e172746789d44802755b8bb441bf", "semantic_hash": "" }, "backend/src/banners/banners.controller.ts": { "mtime": 1786799852.2150102, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "30e1fba8ef3e98e127cf400aac0f71e8", "semantic_hash": "" }, "backend/src/banners/banners.module.ts": { "mtime": 1786799852.2160103, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "3dca61f7cf64dfb5f827469c7f14c655", "semantic_hash": "" }, "backend/src/banners/banners.service.ts": { "mtime": 1786799852.2160103, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "777061ff84dc642fee69803ce9ac2de9", "semantic_hash": "" }, "backend/src/blogs/blogs.controller.ts": { "mtime": 1788334048.8032355, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "5b6e7dbc06729f7d326df40341512e88", "semantic_hash": "" }, "backend/src/blogs/blogs.module.ts": { "mtime": 1783764561.665678, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "3fc38d55e03319844c6c8cbb3017364b", "semantic_hash": "" }, "backend/src/blogs/blogs.service.ts": { "mtime": 1788334048.8043733, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "1a7f889d892dabac779154c0935032dd", "semantic_hash": "" }, "backend/src/blogs/dto/create-blog.dto.ts": { "mtime": 1783764561.671557, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "a1938b347011dd71bfd99801b7453305", "semantic_hash": "" }, "backend/src/blogs/dto/update-blog.dto.ts": { "mtime": 1783764561.6737125, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "15612098d2a3cac84249518465104370", "semantic_hash": "" }, "backend/src/blogs/entities/blog.entity.ts": { "mtime": 1783764561.675101, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "7fadae161e6d38110bdc8ce71f9f1bdd", "semantic_hash": "" }, "backend/src/cms/cms.controller.ts": { "mtime": 1785327951.196913, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "72482ba30a017f8ed1ef26b423eb83d1", "semantic_hash": "" }, "backend/src/cms/cms.module.ts": { "mtime": 1785148022.206298, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "831ca7e3ee288322e05ddeeb1b02229d", "semantic_hash": "" }, "backend/src/cms/cms.service.ts": { "mtime": 1785327951.1979403, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "f9da5085411e9fe60ab0c35fb852ef56", "semantic_hash": "" }, "backend/src/cms/dto/cms.dto.ts": { "mtime": 1785327951.1999955, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "b91b502820b503e4ca63dd36028608d5", "semantic_hash": "" }, "backend/src/common/decorators/roles.decorator.ts": { "mtime": 1786799852.2205224, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "155f61ea03e3ef7d3d5e2fee554f8428", "semantic_hash": "" }, "backend/src/common/dto/pagination.dto.ts": { "mtime": 1785327951.201989, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "6e66fdace411feba9d947fe0f678c900", "semantic_hash": "" }, "backend/src/common/env.validation.ts": { "mtime": 1787645037.3706467, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "0c5617db25ad4a82310a4d57954f9148", "semantic_hash": "" }, "backend/src/common/filters/http-exception.filter.ts": { "mtime": 1787645037.3717394, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "bbc06910a686ac6fffe7093cfac25247", "semantic_hash": "" }, "backend/src/common/filters/prisma-exception.filter.ts": { "mtime": 1787645037.3722546, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "ea9516e198b828d217e871db50bfd020", "semantic_hash": "" }, "backend/src/common/guards/roles.guard.spec.ts": { "mtime": 1786799852.2255569, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "0ee2661808205a0bb03a45d4cbca4472", "semantic_hash": "" }, "backend/src/common/guards/roles.guard.ts": { "mtime": 1786799852.2265651, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "72eadcd106153ccaad697234d8c0d281", "semantic_hash": "" }, "backend/src/common/interceptors/decimal.interceptor.spec.ts": { "mtime": 1786799852.2275658, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "bbf53de234b9963923c3163a10cd8e17", "semantic_hash": "" }, "backend/src/common/interceptors/decimal.interceptor.ts": { "mtime": 1786799852.2275658, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "71f8f0bfa748a8cbeb5f4627f972261d", "semantic_hash": "" }, "backend/src/common/metrics.controller.ts": { "mtime": 1786799852.229073, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "6380f2c18000ac46235e7adde60329dc", "semantic_hash": "" }, "backend/src/common/revalidation/revalidation.module.ts": { "mtime": 1787579631.7695823, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "9902f11ce5669722083f76ba239749ca", "semantic_hash": "" }, "backend/src/common/revalidation/revalidation.service.ts": { "mtime": 1787579631.7705874, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "d1d36ecad18a71db13e14330c70aa137", "semantic_hash": "" }, "backend/src/common/schemas/error-response.schema.ts": { "mtime": 1785330913.1447015, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "e2d4a690aa006a63ad617d2c21c7d11d", "semantic_hash": "" }, "backend/src/common/schemas/paginated-response.schema.ts": { "mtime": 1786799852.2300823, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "6ea7e2edc0ab662b3f244e0ffb8e5f19", "semantic_hash": "" }, "backend/src/common/services/sms.service.ts": { - "mtime": 1787072106.3960736, - "seen": 1788342104.6662529, - "ast_hash": "354ecbb2d60de34e2176c1a8941edac0", + "mtime": 1788607875.3236513, + "seen": 1788608157.2198672, + "ast_hash": "bf87e0477d4b47bcd74395b4a43f34ad", "semantic_hash": "" }, "backend/src/common/sms.module.ts": { "mtime": 1785330750.996125, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "c2621fbe872597ca7fbc23fc7e261665", "semantic_hash": "" }, "backend/src/common/utils/phone.utils.ts": { "mtime": 1786883225.801396, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "a4c682b767823a624163b9430f1db7d1", "semantic_hash": "" }, "backend/src/contact/contact.controller.ts": { "mtime": 1787645037.373264, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "96c41a8993b5a047db2f7ab33b3140fc", "semantic_hash": "" }, "backend/src/contact/contact.module.ts": { "mtime": 1786799852.236599, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "3522066b9bc0d12c79ee13138ec94a23", "semantic_hash": "" }, "backend/src/contact/contact.service.ts": { - "mtime": 1787127978.233104, - "seen": 1788342104.6662529, - "ast_hash": "795ecd48e5786280804b554877f43907", + "mtime": 1788584193.7061484, + "seen": 1788608157.2198672, + "ast_hash": "fa62ffa6995fe20f004387a36c0ada57", "semantic_hash": "" }, "backend/src/doctors/doctors.controller.ts": { "mtime": 1787148092.311693, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "a552f2b9fa5f186871234fa7ffc0c849", "semantic_hash": "" }, "backend/src/doctors/doctors.module.ts": { "mtime": 1786971396.0355752, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "6850f9203296ff749b5d7de975d3c6f7", "semantic_hash": "" }, "backend/src/doctors/doctors.service.ts": { "mtime": 1787148092.312693, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "b7473f48fc2a077328d9d054c075bf46", "semantic_hash": "" }, "backend/src/doctors/dto/doctor-query.dto.ts": { "mtime": 1787148092.3146994, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "9c9b8e83bb5b207eb88d5da473562843", "semantic_hash": "" }, "backend/src/faq/faq.controller.ts": { "mtime": 1787148092.3166947, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "09e34477f9322954d856b496009ba0d5", "semantic_hash": "" }, "backend/src/faq/faq.module.ts": { "mtime": 1787148092.3166947, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "eb0d0be8c8742a787d205ef121b50ee7", "semantic_hash": "" }, "backend/src/faq/faq.service.ts": { "mtime": 1787148092.3199117, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "76c44314a43aa61ca7ba02e6cce871be", "semantic_hash": "" }, "backend/src/home/dto/create-home.dto.ts": { "mtime": 1783764561.6823654, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "b20293c0606e764e43e19412e8b94e58", "semantic_hash": "" }, "backend/src/home/dto/update-home.dto.ts": { "mtime": 1783764561.6823654, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "fdbec5105f68e9ef5edca26c91c2a01b", "semantic_hash": "" }, "backend/src/home/entities/home.entity.ts": { "mtime": 1783764561.6848848, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "f7e5b57b1dbb4fa28600ebdd5c86a73c", "semantic_hash": "" }, "backend/src/home/home.controller.ts": { "mtime": 1785327951.2120874, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "3474997a729a3a47f1872f489c28e70e", "semantic_hash": "" }, "backend/src/home/home.module.ts": { "mtime": 1783764561.687108, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "b8671f0d293617cf95cc2e9aef8ab11a", "semantic_hash": "" }, "backend/src/home/home.service.ts": { "mtime": 1785327951.2140872, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "20073496a83b447238b4e8ab793573ec", "semantic_hash": "" }, "backend/src/ingredients/ingredients.controller.ts": { "mtime": 1786799852.2375965, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "b591e9eeddc544d5224bbf8dc747f71e", "semantic_hash": "" }, "backend/src/ingredients/ingredients.module.ts": { "mtime": 1786799852.2385964, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "928f762b562c624011ca6c7e72543d0d", "semantic_hash": "" }, "backend/src/ingredients/ingredients.service.ts": { "mtime": 1786799852.2401083, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "7d07a0fb1cdebe81d9ecef7604701bed", "semantic_hash": "" }, "backend/src/main.ts": { "mtime": 1787999006.3195474, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "98f9d78377269e43ae17bb2c694607a4", "semantic_hash": "" }, "backend/src/menu/menu.controller.ts": { "mtime": 1787564348.681949, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "091e15205d159cebb946d545a9cec92a", "semantic_hash": "" }, "backend/src/menu/menu.module.ts": { "mtime": 1787148092.3238695, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "57340cf9c9a8c0562995738bac8efc7b", "semantic_hash": "" }, "backend/src/menu/menu.service.ts": { "mtime": 1787564362.2621727, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "50a88c362e71338570fa3aee831bb0ba", "semantic_hash": "" }, "backend/src/orders/dto/create-order.dto.ts": { "mtime": 1785327951.218626, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "de9e39544ff4cfbbc8233318b2b71c67", "semantic_hash": "" }, "backend/src/orders/orders.controller.spec.ts": { "mtime": 1785327951.2196276, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "03aae30c09648646afbd6f8862d2d12b", "semantic_hash": "" }, "backend/src/orders/orders.controller.ts": { "mtime": 1787072106.3980772, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "58b8b3790952f51c625e31f5eed09d3b", "semantic_hash": "" }, "backend/src/orders/orders.module.ts": { "mtime": 1783764561.6975982, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "10e4c03ae468f0412d882306bdb20401", "semantic_hash": "" }, "backend/src/orders/orders.service.spec.ts": { "mtime": 1787729523.4368768, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "a080730dc8c8abe4ab58ddb86ef7a5ef", "semantic_hash": "" }, "backend/src/orders/orders.service.ts": { - "mtime": 1787127978.2361033, - "seen": 1788342104.6662529, - "ast_hash": "36e0f20d4d60e0aa48540ffe11ca0d1c", + "mtime": 1788607875.3236513, + "seen": 1788608157.2198672, + "ast_hash": "20f6b2b1c1b0d3842f48de147d34e36b", "semantic_hash": "" }, "backend/src/payment/dto/admin-transaction-filter.dto.ts": { "mtime": 1787072106.4015906, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "afa18a9b091f326229902f10477bb1c1", "semantic_hash": "" }, "backend/src/payment/dto/ebank-checkout.dto.ts": { "mtime": 1787394001.6034613, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "420fb2e706c51e65cac8615d130993fe", "semantic_hash": "" }, "backend/src/payment/dto/initiate-payment.dto.ts": { "mtime": 1786870552.8742464, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "a097fcbb5846e7cd00e7cb2cefc060bb", "semantic_hash": "" }, "backend/src/payment/dto/verify-payment.dto.ts": { "mtime": 1786894580.126858, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "f6db4b79ca261e36334ef84f39b8e87c", "semantic_hash": "" }, "backend/src/payment/interfaces/payment-gateway.interface.ts": { "mtime": 1786870552.8767512, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "930a5f06cdec431d842bf9b12618eed5", "semantic_hash": "" }, "backend/src/payment/payment.controller.ts": { - "mtime": 1787564362.263176, - "seen": 1788342104.6662529, - "ast_hash": "a98c3805d67b740857686d128592a734", + "mtime": 1788606564.779886, + "seen": 1788608157.2198672, + "ast_hash": "b35704ec411060d7ee165feec8f9e783", "semantic_hash": "" }, "backend/src/payment/payment.module.ts": { "mtime": 1787394001.605618, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "7ee5887f04915d1bd1471705a8f941ad", "semantic_hash": "" }, "backend/src/payment/payment.service.ts": { - "mtime": 1787564362.2641742, - "seen": 1788342104.6662529, - "ast_hash": "3f65606fa57b8e2c85cfdfc600a02ec8", + "mtime": 1788607875.3236513, + "seen": 1788608157.2198672, + "ast_hash": "cf9adecd794e7fa2aded96f7f6c64e2a", "semantic_hash": "" }, "backend/src/payment/zibal-ebank.service.ts": { "mtime": 1787461919.4523065, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "7075a9caf96d6f38e0a8b0208dbd0ab5", "semantic_hash": "" }, "backend/src/payment/zibal.service.ts": { "mtime": 1787461919.453309, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "0c7c645422cf2a3ba406390802ee365d", "semantic_hash": "" }, "backend/src/pets/dto/create-health-log.dto.ts": { "mtime": 1785327951.2294433, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "da823d24eecce83c17760374fbc99131", "semantic_hash": "" }, "backend/src/pets/dto/create-pet.dto.ts": { "mtime": 1785327951.2309487, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "22e442118c4b4c44d887a9e72bf416e2", "semantic_hash": "" }, "backend/src/pets/dto/create-reminder.dto.ts": { "mtime": 1785327951.2319582, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "61e74b013460e406bd10197b3d3a95df", "semantic_hash": "" }, "backend/src/pets/dto/update-pet.dto.ts": { "mtime": 1783764561.7095575, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "a2086bbebe7ca2718d4933b9828b456d", "semantic_hash": "" }, "backend/src/pets/pets.controller.spec.ts": { "mtime": 1786799852.2481189, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "ea25cbbc55569e44ea0ceaf8c7af5111", "semantic_hash": "" }, "backend/src/pets/pets.controller.ts": { "mtime": 1787461919.454309, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "20c1ead48262a81ff538fedae048d784", "semantic_hash": "" }, "backend/src/pets/pets.module.ts": { "mtime": 1783764561.71447, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "1e30ca9c5823c33d4f3266d5b48fee01", "semantic_hash": "" }, "backend/src/pets/pets.service.spec.ts": { "mtime": 1785327951.238208, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "49e5e2df9d623a5510db8d9c3eefdbd5", "semantic_hash": "" }, "backend/src/pets/pets.service.ts": { "mtime": 1786799852.2501173, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "f34775f4106e2ac19efff3a9b140db3f", "semantic_hash": "" }, "backend/src/prescriptions/prescriptions.controller.ts": { "mtime": 1786799852.2537484, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "3b657f5cac989600c165b8eac3a6a2af", "semantic_hash": "" }, "backend/src/prescriptions/prescriptions.module.ts": { "mtime": 1786954681.8158092, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "0f9ea31fa7fa71f4ec87e461ce7d444f", "semantic_hash": "" }, "backend/src/prescriptions/prescriptions.service.ts": { "mtime": 1787072106.408779, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "6b018d33377fdfcba9e4512e50da48a0", "semantic_hash": "" }, "backend/src/prisma/prisma.module.ts": { "mtime": 1783764561.7181997, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "3505a1831c78f0a9475e4ce0f0092410", "semantic_hash": "" }, "backend/src/prisma/prisma.service.ts": { "mtime": 1787640806.107781, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "1a6d7ac4a114351a0a3deb1835481a59", "semantic_hash": "" }, "backend/src/products/dto/get-products.dto.ts": { "mtime": 1786799852.2602715, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "bed3d5bd69f866349bfc408bfea60e78", "semantic_hash": "" }, "backend/src/products/products.controller.spec.ts": { "mtime": 1785327951.243281, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "6fde28604e799d5c5c0d2c6c2fcb4372", "semantic_hash": "" }, "backend/src/products/products.controller.ts": { "mtime": 1786799852.2612817, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "db015311d34c7985c1c4ab818070b297", "semantic_hash": "" }, "backend/src/products/products.module.ts": { "mtime": 1787999968.301265, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "78164f32e0b7c035a16c29e70b11b26c", "semantic_hash": "" }, "backend/src/products/products.service.spec.ts": { "mtime": 1787729523.4384463, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "1f1e441d2138fefdd717b553f42d3ca0", "semantic_hash": "" }, "backend/src/products/products.service.ts": { "mtime": 1788334048.80538, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "cb126dda614f8a675d2f6a78f5eddf37", "semantic_hash": "" }, "backend/src/redis/redis.module.ts": { "mtime": 1783764561.727662, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "0856864a521a862369a89de9b2d3c9f0", "semantic_hash": "" }, "backend/src/redis/redis.service.spec.ts": { "mtime": 1783764561.7286723, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "f3a16f7f1721be9e6ddb7ddd2949ea6c", "semantic_hash": "" }, "backend/src/redis/redis.service.ts": { "mtime": 1786895436.2118347, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "4f5e58ffc36bbaed17ee669e5a7394b7", "semantic_hash": "" }, "backend/src/reviews/dto/create-review.dto.ts": { "mtime": 1787072106.4143064, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "2ae6e4616eaeeafd56d4c74bbfe79f12", "semantic_hash": "" }, "backend/src/reviews/dto/update-review.dto.ts": { "mtime": 1787072106.4158058, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "1c989ea4d1dd9c3fcf8b442e61a2d2e3", "semantic_hash": "" }, "backend/src/reviews/reviews.controller.ts": { "mtime": 1787645037.3752687, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "afebaeead6edc0c9618daa1a3b16ac42", "semantic_hash": "" }, "backend/src/reviews/reviews.module.ts": { "mtime": 1786944769.5173109, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "7f5cb88dda0a902c24c48edb34647428", "semantic_hash": "" }, "backend/src/reviews/reviews.service.ts": { "mtime": 1787579631.7755866, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "fc9f239f7b233fd9549aaaaa226bd9f3", "semantic_hash": "" }, "backend/src/seo/seo.controller.ts": { "mtime": 1785327951.2472832, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "4c11a3beaa94a769acf206bf9ff279b0", "semantic_hash": "" }, "backend/src/seo/seo.module.ts": { "mtime": 1785148022.268581, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "4160982445b855a6406e8713e95bf91b", "semantic_hash": "" }, "backend/src/seo/seo.service.ts": { "mtime": 1787127978.249385, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "c104390de2fa710428b6d69c6201f4d8", "semantic_hash": "" }, "backend/src/settings/default-ui-texts.ts": { "mtime": 1787999006.3205469, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "1191c2d0ac410905fb53f847e83c1a7d", "semantic_hash": "" }, "backend/src/settings/dto/sms-log-query.dto.ts": { "mtime": 1787072106.4213393, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "d1b143222dc6ecfcff03180de1a23e9e", "semantic_hash": "" }, "backend/src/settings/settings.controller.spec.ts": { "mtime": 1787729523.4384463, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "bc268d693685c78c407142ecd0e58afe", "semantic_hash": "" }, "backend/src/settings/settings.controller.ts": { - "mtime": 1787072106.423348, - "seen": 1788342104.6662529, - "ast_hash": "d9785a80bc7e90198192a97d4f7cbb7b", + "mtime": 1788607875.3236513, + "seen": 1788608157.2198672, + "ast_hash": "d4f57b7f9ef20926ace9e8af65c8638b", "semantic_hash": "" }, "backend/src/settings/settings.module.ts": { "mtime": 1783764561.7355156, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "b84a45f92537de41c7c3821847271004", "semantic_hash": "" }, "backend/src/settings/settings.service.spec.ts": { "mtime": 1787729523.4394524, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "8a15891a088d3c0e69639ac19dbe8f40", "semantic_hash": "" }, "backend/src/settings/settings.service.ts": { - "mtime": 1788336258.6051078, - "seen": 1788342104.6662529, - "ast_hash": "f2e9f23afd5d38958ca5e9eae9955042", + "mtime": 1788607882.2325964, + "seen": 1788608157.2198672, + "ast_hash": "31ff7c28adf61097700d3a9fd076f601", "semantic_hash": "" }, "backend/src/smart-advisor/smart-advisor.controller.ts": { "mtime": 1786799852.2754414, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "eacb4fc2f3d82eb3833f4b04d851d4c3", "semantic_hash": "" }, "backend/src/smart-advisor/smart-advisor.module.ts": { "mtime": 1786799852.2764418, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "40d2882f5f8a0733c940c754631be24b", "semantic_hash": "" }, "backend/src/smart-advisor/smart-advisor.service.ts": { "mtime": 1786799852.2774403, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "1824f7151599e310cd2de7435e345afe", "semantic_hash": "" }, "backend/src/testimonials/testimonials.controller.ts": { "mtime": 1787148092.3297865, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "077ac1d08fbec205f030f3cc6b7f357c", "semantic_hash": "" }, "backend/src/testimonials/testimonials.module.ts": { "mtime": 1786799852.2794418, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "e2778d19b65d66f61d35f1a98333c873", "semantic_hash": "" }, "backend/src/testimonials/testimonials.service.ts": { "mtime": 1787148092.3325016, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "7c108b6bdfc5625fc3c058f1db527bbe", "semantic_hash": "" }, "backend/src/tickets/dto/create-ticket.dto.ts": { "mtime": 1787072106.4308748, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "cb6ad48fdfa6c9c24158b32c4882a38f", "semantic_hash": "" }, "backend/src/tickets/dto/ticket-query.dto.ts": { "mtime": 1787072106.4318714, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "f7c6a4165ac086ba6de6fb111c75c2e9", "semantic_hash": "" }, "backend/src/tickets/tickets.controller.ts": { "mtime": 1787072106.433878, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "6eb0b4d21421f9f5aa1831b0402257e8", "semantic_hash": "" }, "backend/src/tickets/tickets.module.ts": { "mtime": 1786890779.3222969, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "0b3e226a18679b4bf37016c27b874ae9", "semantic_hash": "" }, "backend/src/tickets/tickets.service.ts": { "mtime": 1787072106.4348743, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "16b88701d7cc2a14f47e99f55882e67a", "semantic_hash": "" }, "backend/src/users/dto/address.dto.ts": { "mtime": 1783764561.7398715, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "d42a8da106b862f8934b4268e5974025", "semantic_hash": "" }, "backend/src/users/dto/update-profile.dto.ts": { "mtime": 1786885876.8054721, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "7c5b2601ea43f7045a5691ed1fde7840", "semantic_hash": "" }, "backend/src/users/users.controller.spec.ts": { "mtime": 1785327951.2537966, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "8879233da361926bf496aa33fc24a0a4", "semantic_hash": "" }, "backend/src/users/users.controller.ts": { "mtime": 1786799852.2824814, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "0c14b005ce0dddc5c6be9fb33672c659", "semantic_hash": "" }, "backend/src/users/users.module.ts": { "mtime": 1783764561.7481544, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "6a22d47a72af32e6726ff5025c1d6f0b", "semantic_hash": "" }, "backend/src/users/users.service.spec.ts": { "mtime": 1787729523.4404535, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "c85c82974e9889c38cbca862f0c659f0", "semantic_hash": "" }, "backend/src/users/users.service.ts": { - "mtime": 1787127978.2530408, - "seen": 1788342104.6662529, - "ast_hash": "30b5b653694deebda2e072a57145b3d6", + "mtime": 1788607875.3236513, + "seen": 1788608157.2198672, + "ast_hash": "760dfebdbc239c63c33d31344d41cc0b", "semantic_hash": "" }, "backend/src/videos/dto/create-video.dto.ts": { "mtime": 1786971396.042094, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "292c465ed02d974fc16c674ca6f7caf5", "semantic_hash": "" }, "backend/src/videos/dto/get-videos-query.dto.ts": { "mtime": 1786799852.2876434, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "22029a395d4906dec82a0472af9827a2", "semantic_hash": "" }, "backend/src/videos/videos.controller.ts": { "mtime": 1786799852.2911532, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "64de50207aa54dc4d9866fb41a3cf11e", "semantic_hash": "" }, "backend/src/videos/videos.module.ts": { "mtime": 1785148022.3065836, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "79c989585f2c5da29199d914ca54abdf", "semantic_hash": "" }, "backend/src/videos/videos.service.ts": { "mtime": 1788334048.8073807, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "c50bb5b2acaa77a353f9aa8a39a9cde3", "semantic_hash": "" }, "backend/src/wholesale/dto/wholesale-apply.dto.ts": { "mtime": 1785148022.3176222, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "dda43ea50daed66d9ddf56ff14c2ac31", "semantic_hash": "" }, "backend/src/wholesale/wholesale.controller.ts": { "mtime": 1786799852.294177, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "85347767e9b0508aa27c8fc2ada57403", "semantic_hash": "" }, "backend/src/wholesale/wholesale.module.ts": { "mtime": 1785148022.3287463, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "431fcacfcaaf5ee3872869c796581db3", "semantic_hash": "" }, "backend/src/wholesale/wholesale.service.ts": { - "mtime": 1785330913.1492333, - "seen": 1788342104.6662529, - "ast_hash": "f17e69107c7ddb8baedfb9fa1177c8a0", + "mtime": 1788584193.713367, + "seen": 1788608157.2198672, + "ast_hash": "2afc8a11f11eee317b8fc291b05108c2", "semantic_hash": "" }, "backend/src/wiki/dto/create-wiki.dto.ts": { "mtime": 1783764561.7529333, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "bff0bff5978c808b3f6c7c0471ecc09f", "semantic_hash": "" }, "backend/src/wiki/dto/update-wiki.dto.ts": { "mtime": 1783764561.753945, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "aafeafc832089a9d47f2b09c15f5166c", "semantic_hash": "" }, "backend/src/wiki/entities/wiki.entity.ts": { "mtime": 1783764561.7550395, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "0babba8c13baba4a2ad2fd70395060f2", "semantic_hash": "" }, "backend/src/wiki/wiki.controller.ts": { "mtime": 1785327951.2728505, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "ca3a7279ecce06e6747e4b5d1b83f042", "semantic_hash": "" }, "backend/src/wiki/wiki.module.ts": { "mtime": 1783764561.756925, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "22c999c57982f13d0526d25d7990b745", "semantic_hash": "" }, "backend/src/wiki/wiki.service.ts": { "mtime": 1786799852.295173, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "4f9a02a302512579c6eaed6e06da679e", "semantic_hash": "" }, "backend/test/app-audit-verification.e2e-spec.d.ts": { "mtime": 1787073059.1090057, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "e2ebd7ddedcadeeadbf819c35985c768", "semantic_hash": "" }, "backend/test/app-audit-verification.e2e-spec.js": { "mtime": 1787073059.1105163, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "3906e1e6a6fe48f74cd15f9b81b8775a", "semantic_hash": "" }, "backend/test/app-audit-verification.e2e-spec.ts": { "mtime": 1786799852.2961748, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "5df6593dd9fd1f88f2b1e13f44b7b350", "semantic_hash": "" }, "backend/test/app.e2e-spec.d.ts": { "mtime": 1787073059.1125634, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "e2ebd7ddedcadeeadbf819c35985c768", "semantic_hash": "" }, "backend/test/app.e2e-spec.js": { "mtime": 1787073059.1135726, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "4ff6e84fd1b500597f4cc40d5877ad1b", "semantic_hash": "" }, "backend/test/app.e2e-spec.ts": { "mtime": 1786799852.297175, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "8373bf2ee758abe47f5681e898cde506", "semantic_hash": "" }, "backend/tsconfig.build.json": { "mtime": 1783764561.763447, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "d3d6c627ed113034e4138ae830ca9221", "semantic_hash": "" }, "backend/tsconfig.json": { "mtime": 1787073059.1161675, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "bc2ddace3dc933b714ebc21504c43b62", "semantic_hash": "" }, "docs/audit/build_manifest.js": { "mtime": 1786799852.3383932, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "5865147d3b17e6ddad0be4f4b9dc00d0", "semantic_hash": "" }, "docs/audit/generate_classification.js": { "mtime": 1786799852.3393898, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "01cdce5da0cdc41b49a7e9560a0b8ae9", "semantic_hash": "" }, "docs/audit/generate_evidence.js": { "mtime": 1786799852.3403902, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "f31d1dafad3e771e9602776460c04761", "semantic_hash": "" }, "docs/audit/generate_ledger.js": { "mtime": 1786799852.3418972, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "c502805af184c8efe08a66030ff0203b", "semantic_hash": "" }, "docs/audit/generate_manifest.js": { "mtime": 1786799852.3418972, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "d9ead302d1023a72718e60261725e429", "semantic_hash": "" }, "docs/audit/rebuild_honest_ledger.js": { "mtime": 1786799852.348953, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "5a505fbc55dbabd0557377ce8de0643a", "semantic_hash": "" }, "docs/audit/sync_honest_manifest.js": { "mtime": 1786799852.3499532, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "3f2ec3b689e720b6e50fe4666a9b8bb0", "semantic_hash": "" }, "docs/audit/sync_manifest.js": { "mtime": 1786799852.3509533, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "7315ba82c162ad4c2a0cec307966c580", "semantic_hash": "" }, "docs/audit/validate_evidence_grade.js": { "mtime": 1786799852.351954, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "5f68ed3e8236ececf82e5da4ac47d93b", "semantic_hash": "" }, "docs/audit/validate_integrity.js": { "mtime": 1786799852.3529525, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "7bd05a71bd8c0c23db65db5201d3c030", "semantic_hash": "" }, "frontend/admin-panel/eslint.config.js": { "mtime": 1787148092.3345017, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "b204828b41a3391dd9ab65a1087e197f", "semantic_hash": "" }, "frontend/admin-panel/package.json": { "mtime": 1788000055.991496, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "47352c4b2e63cedd7b30d24f93b1ae9e", "semantic_hash": "" }, "frontend/admin-panel/postcss.config.js": { "mtime": 1783764561.7962818, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "c1ee9ce6a4fe04105dbf8e619390df5e", "semantic_hash": "" }, "frontend/admin-panel/src/App.tsx": { "mtime": 1786799852.3654811, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "140226fcd94080d00f56e2f8b65f95e5", "semantic_hash": "" }, "frontend/admin-panel/src/components/Layout.tsx": { "mtime": 1784621786.9585948, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "e2192f9b6c86f07ff6c6ec9bf9d1cb71", "semantic_hash": "" }, "frontend/admin-panel/src/components/ProtectedRoute.tsx": { "mtime": 1786799852.369164, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "bcb0329847fb25e9fe1e990a30609210", "semantic_hash": "" }, "frontend/admin-panel/src/components/RouteErrorBoundary.tsx": { "mtime": 1787062174.623011, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "bede52b77e6efe56c4f710279fdbcfbd", "semantic_hash": "" }, "frontend/admin-panel/src/components/Sidebar.tsx": { "mtime": 1787461920.8420844, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "0020921da1b729dd663979b02a39e91f", "semantic_hash": "" }, "frontend/admin-panel/src/components/Topbar.tsx": { "mtime": 1787466234.9643857, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "ffa50e46783a27f148b41212e5810b46", "semantic_hash": "" }, "frontend/admin-panel/src/components/TransactionReceiptModal.tsx": { "mtime": 1787405554.8046184, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "8931b7ade86ad779579db166eb148469", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/Badge.tsx": { "mtime": 1787461920.844094, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "3b93789328a250499e58378552881527", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/Button.tsx": { "mtime": 1787467799.871536, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "8d920444901883ddb6e7b4745d28c0a7", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/ConfirmModal.tsx": { "mtime": 1786972191.3590996, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "982712b3d0130cbc66035a9caa4dc173", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/FormField.tsx": { "mtime": 1786954681.823527, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "265c887af876e10153f2ac32844194c2", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/IconPickerModal.tsx": { "mtime": 1787071159.9599283, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "d4676fe2b24132bbfeb1b53f2b314ed7", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/ImagePreviewModal.tsx": { "mtime": 1786954681.824535, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "ada78d41f18a3dcce5e806a2ab252d30", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/Input.tsx": { "mtime": 1788332598.5399468, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "7eba87963d6f6875b445f5be6645bb3a", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/MaskableField.tsx": { "mtime": 1787405554.805712, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "b97dc137463327fd294e929cfa65545c", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/MediaSelector.tsx": { "mtime": 1787038450.536697, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "ed6a6da6e5929bf77a82b5cda0fb3eeb", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/Modal.tsx": { "mtime": 1787461920.8450942, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "e11f7ea28068c2a268db4d032c3fc9f5", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/Pagination.tsx": { "mtime": 1786799852.387442, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "8ab314264c858bcd6cb53fc4c9985cf0", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/PriceInput.tsx": { "mtime": 1786948119.7711625, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "09a84a9f29f735448d05e4327c0304b3", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/RichTextEditor.tsx": { "mtime": 1787980615.5635426, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "af8af048bb77473565ae93c941d6f71d", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/Select.tsx": { "mtime": 1786954681.8285375, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "a06e97672e210fdff460252966d2ab09", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/Skeleton.tsx": { "mtime": 1783856792.9775357, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "dd6a1fca8a8db341521aa315829143e0", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/Spinner.tsx": { "mtime": 1783856792.9790492, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "32a95c9dc25ac088596fdccd17d7284a", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/Textarea.tsx": { "mtime": 1786954681.8285375, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "bbbdbaa3a2aeb68e7e406d555129fb79", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/ThSort.tsx": { "mtime": 1787461920.8450942, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "421faa21b7189758f65616964f288b0c", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/ToggleSwitch.tsx": { "mtime": 1786954681.830045, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "f212eaa6017ac07b37356612883b2884", "semantic_hash": "" }, "frontend/admin-panel/src/main.tsx": { "mtime": 1787062325.3950386, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "e9195a72ddf4287e9eac6200a579623c", "semantic_hash": "" }, "frontend/admin-panel/src/pages/B2BManager.tsx": { "mtime": 1787729527.9273918, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "1c0145c22fcc3261e7c783a4c3d098ff", "semantic_hash": "" }, "frontend/admin-panel/src/pages/BannersManager.tsx": { "mtime": 1787467799.8741717, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "d567c9ad3dcbf316b5622aeaa1b8e71d", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Blogs.tsx": { "mtime": 1787729527.9283917, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "2f2312e9d916f845c5ffa512522e5684", "semantic_hash": "" }, "frontend/admin-panel/src/pages/CMS.tsx": { "mtime": 1787467933.66426, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "7c60aa58d334f1ffbaba2bf881492999", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Categories.tsx": { "mtime": 1787469989.1415117, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "db0c156eff28f6adb66eeebf37f0cd0c", "semantic_hash": "" }, "frontend/admin-panel/src/pages/ContactSubmissions.tsx": { "mtime": 1787467799.877344, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "b636f5f1432d4e2842d4bcea297ad4b8", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Coupons.tsx": { "mtime": 1788332598.5434518, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "34ea4dfa90815560f40d11d8a5586601", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Dashboard.tsx": { "mtime": 1786885876.82951, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "025cbf432db0594426593332e01d5924", "semantic_hash": "" }, "frontend/admin-panel/src/pages/DoctorsManager.tsx": { "mtime": 1787467799.8799238, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "5671cef0d264dc92d9540058a929633e", "semantic_hash": "" }, "frontend/admin-panel/src/pages/FAQManager.tsx": { "mtime": 1787467799.8819249, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "3024a02175a185553d0fe7bef61ba293", "semantic_hash": "" }, "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx": { "mtime": 1788333161.5201325, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "27ee079dd99882e7f26beeccc00b6a7a", "semantic_hash": "" }, "frontend/admin-panel/src/pages/IngredientsManager.tsx": { "mtime": 1787467933.6699345, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "ff90e4e00c59efc1decad824ccd74f2f", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Login.tsx": { - "mtime": 1787127978.262361, - "seen": 1788342104.6662529, - "ast_hash": "49f753cc3593cff1360ca981e8f7682e", + "mtime": 1788587906.733886, + "seen": 1788608157.2198672, + "ast_hash": "c6965079abd3ea2fe94d68fe8f206e54", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Media.tsx": { "mtime": 1787467799.8859253, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "82bca4823f75ac46b5c99010d90406c0", "semantic_hash": "" }, "frontend/admin-panel/src/pages/MenuManager.tsx": { "mtime": 1787469989.146215, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "22996483f9cfdd91ac8b003e0c88bf02", "semantic_hash": "" }, "frontend/admin-panel/src/pages/MonitoringPage.tsx": { "mtime": 1787466234.9659803, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "0b2ef8e74d5b5c1cc7f1587445080cc1", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Orders.tsx": { - "mtime": 1787729527.9293962, - "seen": 1788342104.6662529, - "ast_hash": "f842ff46e5b91949d2fc64a5ca10a147", + "mtime": 1788607962.7274454, + "seen": 1788608157.2198672, + "ast_hash": "ce45d268345c66ef099b5c439fade26e", "semantic_hash": "" }, "frontend/admin-panel/src/pages/PaymentGatewaysPage.tsx": { "mtime": 1787467799.8899395, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "3f56b1c5ba2b01fae9ed51faf870cb8d", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Pets.tsx": { "mtime": 1787467799.8919382, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "d7193caca6127917bb62d9303859c55f", "semantic_hash": "" }, "frontend/admin-panel/src/pages/PrescriptionsManager.tsx": { "mtime": 1787467799.8929358, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "da18bacd672ffa7453f1a0dd00a0c1e5", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Products.tsx": { - "mtime": 1788342044.417793, - "seen": 1788342104.6662529, - "ast_hash": "8890f88869a6410cdd564b7720446826", + "mtime": 1788351605.8018837, + "seen": 1788608157.2198672, + "ast_hash": "a31f43fcaf5aaee1ec22f4a36fe73275", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Reports.tsx": { "mtime": 1787729523.4424512, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "aece92a46fa9602c4f1c2312d1654c0d", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Reviews.tsx": { "mtime": 1787740536.6709485, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "6dd3c72f62f2d7d26a6300b577f3829d", "semantic_hash": "" }, "frontend/admin-panel/src/pages/SeoSettingsPage.tsx": { - "mtime": 1788336258.6073647, - "seen": 1788342104.6662529, - "ast_hash": "0c6f30af2caadc361e71e69e1202f7a7", + "mtime": 1788343360.494036, + "seen": 1788608157.2198672, + "ast_hash": "a28a3222444028118a019a9fdf97a880", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Settings.tsx": { "mtime": 1787468615.4578195, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "48d2a21e7213783f8fded696ef514d40", "semantic_hash": "" }, "frontend/admin-panel/src/pages/ShippingSettingsPage.tsx": { "mtime": 1787467799.9019353, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "329ce7c2b153a8d4f0ca26374759938e", "semantic_hash": "" }, "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx": { "mtime": 1787467799.9029336, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "c7581c0ab40797e55144e588e75741de", "semantic_hash": "" }, "frontend/admin-panel/src/pages/SmsSettingsPage.tsx": { - "mtime": 1787467799.904439, - "seen": 1788342104.6662529, - "ast_hash": "3f2bf95555c155f64faca1439356346f", + "mtime": 1788607971.0156744, + "seen": 1788608157.2198672, + "ast_hash": "24412dd6f7fd5d85d383fe505d00b66f", "semantic_hash": "" }, "frontend/admin-panel/src/pages/SslSettingsPage.tsx": { "mtime": 1787467799.9054468, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "a989703bb87076f3c9c3c4a26012a5cb", "semantic_hash": "" }, "frontend/admin-panel/src/pages/SystemSettingsPage.tsx": { "mtime": 1787742160.542544, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "3b0e55c4e54c7f6ac70bb563db4396e2", "semantic_hash": "" }, "frontend/admin-panel/src/pages/TestimonialsManager.tsx": { "mtime": 1787467799.9089553, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "4efa3f2d1fe0f23974fa880da26e6768", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Tickets.tsx": { "mtime": 1787467799.909963, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "0a9562f28e15b5af8acc8c15fc130729", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Transactions.tsx": { "mtime": 1787471434.8721883, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "50d95775caf9b786ee9dba4c5558d49e", "semantic_hash": "" }, "frontend/admin-panel/src/pages/UITexts.tsx": { - "mtime": 1787564362.2671711, - "seen": 1788342104.6662529, - "ast_hash": "c6981f08494a46ffd28f085b88d15e1a", + "mtime": 1788587906.7386765, + "seen": 1788608157.2198672, + "ast_hash": "93699ef02449ad5056de8ff6df332ea3", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Users.tsx": { - "mtime": 1787740536.6729496, - "seen": 1788342104.6662529, - "ast_hash": "1ce6b91814664a0f4af6eda895b9e96d", + "mtime": 1788587906.7396712, + "seen": 1788608157.2198672, + "ast_hash": "2fd3fcf90d47cff5bec6992d09887acb", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Videos.tsx": { "mtime": 1787740536.6756897, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "af075ac9e261faafbbc76de807fe2824", "semantic_hash": "" }, "frontend/admin-panel/src/pages/WholesaleApplications.tsx": { "mtime": 1787467799.9168525, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "706933237e883550fbb7cdb6dd379815", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Wiki.tsx": { "mtime": 1787469989.158213, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "c563794e3da6d723f67834eed032495a", "semantic_hash": "" }, "frontend/admin-panel/src/pages/ZibalPortalPage.tsx": { "mtime": 1787570438.155805, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "7411a269c9220ed427aced022e858504", "semantic_hash": "" }, "frontend/admin-panel/src/routes/adminRoutes.tsx": { "mtime": 1787461920.8540971, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "50755a1d58935bf5b70406d2e83564f3", "semantic_hash": "" }, "frontend/admin-panel/src/services/api.ts": { "mtime": 1787997670.262225, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "3fb217f4a2e3e3dfc0f8e5494f1eabac", "semantic_hash": "" }, "frontend/admin-panel/src/store/adminAuthStore.ts": { "mtime": 1786799852.469037, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "a2ca7b287d2c7efe08802b6187d95d67", "semantic_hash": "" }, "frontend/admin-panel/src/types/admin.ts": { "mtime": 1788336258.608452, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "b5bc0b4cf10f27f864761e07008eca91", "semantic_hash": "" }, "frontend/admin-panel/src/utils/lazyWithRetry.ts": { "mtime": 1787062174.6262279, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "8fd1116250eef64a64411d9dd8322c18", "semantic_hash": "" }, "frontend/admin-panel/src/utils/useTableParams.ts": { "mtime": 1787461920.855096, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "beda95a77f5cf930e48d9d5dc365aa12", "semantic_hash": "" }, "frontend/admin-panel/tailwind.config.js": { "mtime": 1783764561.8617213, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "3346df3fd0a1ea3f84440703bf8fd2cb", "semantic_hash": "" }, "frontend/admin-panel/tsconfig.app.json": { "mtime": 1787055476.7795663, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "b885d5f97cf6fc2c1e7997d4b8abfb88", "semantic_hash": "" }, "frontend/admin-panel/tsconfig.json": { "mtime": 1783764561.8633935, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "a3d39fa780ebff65444de257f291ce6c", "semantic_hash": "" }, "frontend/admin-panel/tsconfig.node.json": { "mtime": 1783764561.863923, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "70bdd0a673bcfc0e828080b306e7c680", "semantic_hash": "" }, "frontend/admin-panel/vite.config.ts": { "mtime": 1783764561.864455, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "88439104b3c207f17d33ef3160e3b080", "semantic_hash": "" }, "frontend/application/app/ClientLayout.tsx": { "mtime": 1787999006.3230662, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "1ca4613d6a57c2eec0c79fc7d4406ae8", "semantic_hash": "" }, "frontend/application/app/HomeClient.tsx": { - "mtime": 1787729995.2374384, - "seen": 1788342104.6662529, - "ast_hash": "2a90eb17bc9fe8a752adcddab52b0e55", + "mtime": 1788587906.7416725, + "seen": 1788608157.2198672, + "ast_hash": "a352241a61613887f615f7c51807a195", "semantic_hash": "" }, "frontend/application/app/about/page.tsx": { "mtime": 1787139270.9594126, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "dea769499f3e4d950e310655b5b9b455", "semantic_hash": "" }, "frontend/application/app/api/revalidate/route.ts": { "mtime": 1787579631.7801068, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "23184adf61db300179c0776b6a61ab0a", "semantic_hash": "" }, "frontend/application/app/b2b/error.tsx": { "mtime": 1787645037.377262, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "d1311a94b33f2e302704576e2543fe10", "semantic_hash": "" }, "frontend/application/app/b2b/page.tsx": { "mtime": 1787644197.1416183, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "06efdc27aa409ef9001b99f03603c645", "semantic_hash": "" }, "frontend/application/app/blog/[slug]/page.tsx": { "mtime": 1787641161.057694, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "1d3634d4395f48acdfe8e322f306ec3d", "semantic_hash": "" }, "frontend/application/app/blog/error.tsx": { "mtime": 1787645037.3782682, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "47fda48f69163db4c3e7ce7e13a1aef8", "semantic_hash": "" }, "frontend/application/app/blog/loading.tsx": { "mtime": 1787645037.3792627, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "3ac7dcd4e891cc77e6a9a61f980c64e0", "semantic_hash": "" }, "frontend/application/app/blog/page.tsx": { "mtime": 1787993003.7725687, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "674cb6f16d90e8ca9023ba3db194667a", "semantic_hash": "" }, "frontend/application/app/blog/rss.xml/route.ts": { "mtime": 1787577523.7103512, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "0f825c41a5e5c9ce9193e7ac98246f2d", "semantic_hash": "" }, "frontend/application/app/catalog/CatalogClient.tsx": { - "mtime": 1786872121.5664852, - "seen": 1788342104.6662529, - "ast_hash": "32fa6454837b8cc0eabeec1f43f7208e", + "mtime": 1788351605.8038838, + "seen": 1788608157.2198672, + "ast_hash": "95130bff6b4c8888d1bd1036cbce1fc6", "semantic_hash": "" }, "frontend/application/app/catalog/page.tsx": { "mtime": 1787139270.9655254, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "a3df5895707ba1f0809841320a2b7dff", "semantic_hash": "" }, "frontend/application/app/checkout/page.tsx": { "mtime": 1787139270.9675355, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "3f670c85242a956b39b07dbada3e11d0", "semantic_hash": "" }, "frontend/application/app/checkout/success/[id]/page.tsx": { "mtime": 1783764561.8786683, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "0e0899f968c15078ee01116c3e34d4a4", "semantic_hash": "" }, "frontend/application/app/contact/page.tsx": { "mtime": 1787644197.1431985, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "d2c5d581794a3db28e310d33cdef4ef1", "semantic_hash": "" }, "frontend/application/app/dashboard/page.tsx": { "mtime": 1787394935.3182175, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "82cfc707ac8e663e34c742ee14b11a4e", "semantic_hash": "" }, "frontend/application/app/error.tsx": { "mtime": 1785148022.478709, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "aea86a6d5b21cbff7bb38f382d1dd82d", "semantic_hash": "" }, "frontend/application/app/layout.tsx": { - "mtime": 1788336258.610053, - "seen": 1788342104.6662529, - "ast_hash": "2afafef31a8106cedff9f1f49d86e474", + "mtime": 1788354488.2377124, + "seen": 1788608157.2198672, + "ast_hash": "5496ba898a02ae6d6b9f8304eeeac8df", "semantic_hash": "" }, "frontend/application/app/loading.tsx": { "mtime": 1785148022.48765, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "daf62321fecabcbf8379d39f84a07c03", "semantic_hash": "" }, "frontend/application/app/not-found.tsx": { "mtime": 1783764561.8914113, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "6cada341f40f65b06a39f2a3020d7b96", "semantic_hash": "" }, "frontend/application/app/page.tsx": { - "mtime": 1787139270.9749596, - "seen": 1788342104.6662529, - "ast_hash": "cf29e953f9b3c0666b71f7d97136e8d3", + "mtime": 1788587906.7456717, + "seen": 1788608157.2198672, + "ast_hash": "3dd57e5d031d0833051e12dfdff80cd8", "semantic_hash": "" }, "frontend/application/app/payment/verify/page.tsx": { "mtime": 1786891855.3560786, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "68d1923f04a3300b7b6dca6023ab357e", "semantic_hash": "" }, "frontend/application/app/privacy/page.tsx": { "mtime": 1787139270.9765637, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "54bf1a02ddfd06de2d9ec536a04ba97f", "semantic_hash": "" }, "frontend/application/app/profile/page.tsx": { "mtime": 1787139270.9788032, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "1a4283a6fb6b3120519acbd35cb5282e", "semantic_hash": "" }, "frontend/application/app/robots.ts": { "mtime": 1787578481.501464, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "c0e38b88b84ac47f4400128cfbc87987", "semantic_hash": "" }, "frontend/application/app/search/page.tsx": { "mtime": 1787139270.9799466, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "27d03ec9568875b47bb7d5bad3632085", "semantic_hash": "" }, "frontend/application/app/shop/[slug]/page.tsx": { "mtime": 1788337303.7560215, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "ab59c93695dc39656ccc95d56562aa1a", "semantic_hash": "" }, "frontend/application/app/shop/error.tsx": { "mtime": 1787645037.3802679, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "23789b3ca79c69763d31dbf356e76a4b", "semantic_hash": "" }, "frontend/application/app/shop/feed.xml/route.ts": { "mtime": 1788000526.323437, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "edd9288fd9d55c9b945cc235e4880ce8", "semantic_hash": "" }, "frontend/application/app/shop/loading.tsx": { "mtime": 1787645037.3802679, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "e7bc5c6479b8906b5f8fb19bfcf289f2", "semantic_hash": "" }, "frontend/application/app/shop/page.tsx": { "mtime": 1787644197.146199, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "746a67c82411b1d01b564dc0838cf26c", "semantic_hash": "" }, "frontend/application/app/sitemap-categories.xml/route.ts": { "mtime": 1787578481.507462, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "906c6270f0c13612729f42c1e7630cc2", "semantic_hash": "" }, "frontend/application/app/sitemap-products.xml/route.ts": { "mtime": 1787578481.5084643, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "e07cfe74793cf294eace564bf881bf6f", "semantic_hash": "" }, "frontend/application/app/sitemap.ts": { "mtime": 1787578481.5104632, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "5ce17876bf57c30d753801930423e32c", "semantic_hash": "" }, "frontend/application/app/track/page.tsx": { "mtime": 1787139270.9842136, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "ead1a36ba8de0ddbc98d68c77fcd0c68", "semantic_hash": "" }, "frontend/application/app/trust-seals/page.tsx": { "mtime": 1787394001.6093068, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "8dca9a0847bedf92637fc07ed89e39b3", "semantic_hash": "" }, "frontend/application/app/videos/page.tsx": { "mtime": 1787644197.1471968, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "54232e77a222f6de008a9709b2975274", "semantic_hash": "" }, "frontend/application/app/wiki/[slug]/page.tsx": { "mtime": 1787644197.1491973, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "198d84f897be0d678ec7f4c3d9aeb25d", "semantic_hash": "" }, "frontend/application/app/wiki/page.tsx": { "mtime": 1787139270.9878309, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "79fec8952ae04bb5c7c9a1fc753da583", "semantic_hash": "" }, "frontend/application/components/AddressModal.tsx": { "mtime": 1787739535.190384, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "bcc4eb00c43d561308575389d6e21fb8", "semantic_hash": "" }, "frontend/application/components/ArchivePage.tsx": { - "mtime": 1787742267.3054917, - "seen": 1788342104.6662529, - "ast_hash": "8889f41536c5aed712fc9396bad75bd9", + "mtime": 1788587906.746671, + "seen": 1788608157.2198672, + "ast_hash": "9ed355d614d6f35f628d59643b53dfc7", "semantic_hash": "" }, "frontend/application/components/AuthModal.tsx": { "mtime": 1787741599.341881, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "4752fec36f24504829a0165c8e98ac9e", "semantic_hash": "" }, "frontend/application/components/B2BLandingClient.tsx": { "mtime": 1787645037.3812675, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "795114ff03d5a13c4ac8b675cdadbe13", "semantic_hash": "" }, "frontend/application/components/B2BPortal.tsx": { "mtime": 1786894580.1568575, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "cd073e8a2de7b93496df2310de77f41a", "semantic_hash": "" }, "frontend/application/components/BackButton.tsx": { "mtime": 1786965281.3572779, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "9537791a36d9fc0245ab1edd523bad9e", "semantic_hash": "" }, "frontend/application/components/BannerPlacement.tsx": { - "mtime": 1787564348.689902, - "seen": 1788342104.6662529, - "ast_hash": "c8d73a358a8708e714e7e6d207aa4956", + "mtime": 1788346274.8411756, + "seen": 1788608157.2198672, + "ast_hash": "bd5f67bf444ea351014f6349bb7a728c", "semantic_hash": "" }, "frontend/application/components/BlogPage.tsx": { "mtime": 1787729523.4464538, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "7644b237cf768e9da2111e9c8908be4f", "semantic_hash": "" }, "frontend/application/components/BlogPostClient.tsx": { "mtime": 1787740536.6796968, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "de5822c944a797063075431f03a6bbb5", "semantic_hash": "" }, "frontend/application/components/BlogPreviewSection.tsx": { - "mtime": 1787729995.238555, - "seen": 1788342104.6662529, - "ast_hash": "d166cdd57e646e6cbd09bf6a59ec537b", + "mtime": 1788345971.0934725, + "seen": 1788608157.2198672, + "ast_hash": "8656a7e7f973a7f4990083dae172a8aa", "semantic_hash": "" }, "frontend/application/components/BrandLogo.tsx": { "mtime": 1787564348.6908622, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "2a31c72d7a8773622e7c898ce6d366ca", "semantic_hash": "" }, "frontend/application/components/CartDrawer.tsx": { "mtime": 1787733215.5489805, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "443487f1ee72272176431bd42ca89809", "semantic_hash": "" }, "frontend/application/components/CheckoutPage.tsx": { - "mtime": 1787739535.1914592, - "seen": 1788342104.6662529, - "ast_hash": "0d3d074e00ca89ec49bbb3992b89353c", + "mtime": 1788595515.8410053, + "seen": 1788608157.2198672, + "ast_hash": "7e2c5be980bacdcd8e6a499d3c7f9952", "semantic_hash": "" }, "frontend/application/components/ContactFormClient.tsx": { "mtime": 1787729527.9353964, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "1facfb3e0741d874546b3e76c6fd9bcd", "semantic_hash": "" }, "frontend/application/components/DeleteConfirmModal.tsx": { "mtime": 1786799852.6087523, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "831b2bddd3e6d156abdac216577e3c4c", "semantic_hash": "" }, "frontend/application/components/EnamadBadge.tsx": { "mtime": 1786799852.612362, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "37c7d2eaa27905307e5b2b147849519c", "semantic_hash": "" }, "frontend/application/components/ErrorBoundary.tsx": { "mtime": 1786799852.6145496, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "21b1cf87a9176b9f7902e5fc4f8b6482", "semantic_hash": "" }, "frontend/application/components/ErrorPages.tsx": { "mtime": 1787661485.9450746, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "d367c117edee2e91bfaa263a9514b93c", "semantic_hash": "" }, "frontend/application/components/FAQSection.tsx": { "mtime": 1787729995.2396145, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "5db489a17a6648b7eba83a4c5ae0bc5f", "semantic_hash": "" }, "frontend/application/components/FeaturedProducts.tsx": { - "mtime": 1787981163.2423756, - "seen": 1788342104.6662529, - "ast_hash": "4b3f86326e55da7736eaf8fea377dd06", + "mtime": 1788354488.2397058, + "seen": 1788608157.2198672, + "ast_hash": "f2a770019b3ed1eb8fd113b75a8b8a92", "semantic_hash": "" }, "frontend/application/components/Footer.tsx": { - "mtime": 1787740536.6816978, - "seen": 1788342104.6662529, - "ast_hash": "89eb5ce19d28c4a68942227ed75a5c97", + "mtime": 1788349370.9858317, + "seen": 1788608157.2198672, + "ast_hash": "5ad4d4d8ac510c6e3a0c9b55b24e9451", "semantic_hash": "" }, "frontend/application/components/Header.tsx": { - "mtime": 1787980615.5669081, - "seen": 1788342104.6662529, - "ast_hash": "3f53523324dfd5c305425935921a9245", + "mtime": 1788346274.842183, + "seen": 1788608157.2198672, + "ast_hash": "07ae152c3013d15694dd3ee0b545248e", "semantic_hash": "" }, "frontend/application/components/HeaderButton.tsx": { "mtime": 1786799852.637156, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "5e4679ee49ad04e753de83a405255e44", "semantic_hash": "" }, "frontend/application/components/Hero.tsx": { - "mtime": 1787999006.3240643, - "seen": 1788342104.6662529, - "ast_hash": "134fc8825d3dc8ab8ca704d500453473", + "mtime": 1788354488.2413068, + "seen": 1788608157.2198672, + "ast_hash": "829a6422106e385f026d08e19a237c16", "semantic_hash": "" }, "frontend/application/components/IngredientWiki.tsx": { "mtime": 1786965281.3742068, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "5a656dd2b9fd9e8f8c83544b706da19a", "semantic_hash": "" }, "frontend/application/components/LoginModal.tsx": { "mtime": 1786885876.9322674, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "8e7bdd175df5e72f59814fac75ff6254", "semantic_hash": "" }, "frontend/application/components/MaintenancePage.tsx": { "mtime": 1786946249.984693, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "ddff8dfe25db6a3b4667f52a92ffbd12", "semantic_hash": "" }, "frontend/application/components/NetworkBanner.tsx": { "mtime": 1786799852.662139, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "17a159f769af90f446309ca321c86805", "semantic_hash": "" }, "frontend/application/components/OrderDetailsModal.tsx": { - "mtime": 1787564348.6949298, - "seen": 1788342104.6662529, - "ast_hash": "0c74c1847f6de23d78e0069d1c438ea8", + "mtime": 1788607435.0047119, + "seen": 1788608157.2198672, + "ast_hash": "0994ce712f3d877633467262e68d01c4", "semantic_hash": "" }, "frontend/application/components/OrderSuccess.tsx": { "mtime": 1786799852.6655424, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "1af189b677cfa054b76f3a1b518113f8", "semantic_hash": "" }, "frontend/application/components/OrderTracking.tsx": { "mtime": 1787729527.937447, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "93ce4adc177efe4a3b2aadc4ede6f0bc", "semantic_hash": "" }, "frontend/application/components/PetProfile.tsx": { "mtime": 1787564348.6959305, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "861afaf9b756009c2694d3c922639dc4", "semantic_hash": "" }, "frontend/application/components/PodcastInlinePlayer.tsx": { "mtime": 1787993003.7742205, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "712a8696b965a733de2b5b6e2c6ab0ed", "semantic_hash": "" }, "frontend/application/components/PodcastPlayerModal.tsx": { "mtime": 1787748657.1551368, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "a3a83583f1b826aa0c27e316f2cb8907", "semantic_hash": "" }, "frontend/application/components/PrescriptionUploadModal.tsx": { "mtime": 1787741735.2679474, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "ecd337bd55277c67016bee2f1662d46d", "semantic_hash": "" }, "frontend/application/components/ProductPage.tsx": { "mtime": 1788337303.7581744, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "aeb45eae08b81ed3a47ffbe566d0eadc", "semantic_hash": "" }, "frontend/application/components/ProductReviews.tsx": { "mtime": 1788333723.5928628, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "3b16f870e9c379368f6ce1e2daf0472e", "semantic_hash": "" }, "frontend/application/components/SafeImage.tsx": { - "mtime": 1787998075.541659, - "seen": 1788342104.6662529, - "ast_hash": "99442db4eaf8122c8d360ae7966c823f", + "mtime": 1788354488.2429116, + "seen": 1788608157.2198672, + "ast_hash": "9962814ada6822c7380f1502a6e8d2c8", "semantic_hash": "" }, "frontend/application/components/SearchResultsPage.tsx": { "mtime": 1786799852.7015781, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "a5418e889a76fa054734277bd9a77a3d", "semantic_hash": "" }, "frontend/application/components/SearchableSelect.tsx": { "mtime": 1785575516.1555548, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "9a5010afe35da7c9584bf60e69e47002", "semantic_hash": "" }, "frontend/application/components/Skeleton.tsx": { "mtime": 1783764561.943997, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "3df12c74c99d1d9ac25dfe620cf2b2c5", "semantic_hash": "" }, "frontend/application/components/SmartAdvisor.tsx": { - "mtime": 1787729995.2428882, - "seen": 1788342104.6662529, - "ast_hash": "34ec5c5f9042ec19fcc046bcb7f6b54e", + "mtime": 1788587906.7476697, + "seen": 1788608157.2198672, + "ast_hash": "ec90a8eb74a8d42b9d39002aa0346c3f", "semantic_hash": "" }, "frontend/application/components/TestimonialsSection.tsx": { - "mtime": 1787729995.2439265, - "seen": 1788342104.6662529, - "ast_hash": "3644fcd722380b6d885b8f879a65fba3", + "mtime": 1788346274.8432086, + "seen": 1788608157.2198672, + "ast_hash": "4830d674874d810dc7ccbbb740810d64", "semantic_hash": "" }, "frontend/application/components/TickerBanner.tsx": { "mtime": 1786885876.9608357, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "e00022d0f2300ac98510a6f8c040598b", "semantic_hash": "" }, "frontend/application/components/Tooltip.tsx": { "mtime": 1788333306.9236298, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "4d43304399818614a9ed6bb15edc7448", "semantic_hash": "" }, "frontend/application/components/TopUpModal.tsx": { "mtime": 1787406597.3033493, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "178766a9fff90dd0b233dc958a2f79b8", "semantic_hash": "" }, "frontend/application/components/UserDashboard.tsx": { - "mtime": 1787394935.3203175, - "seen": 1788342104.6668074, - "ast_hash": "4217d24d0a41643d249cd53267ffdf05", + "mtime": 1788607306.532469, + "seen": 1788608157.2198672, + "ast_hash": "dcf0a354028be36b89b2da5a06ba98bd", "semantic_hash": "" }, "frontend/application/components/VetGallery.tsx": { - "mtime": 1787729995.2449634, - "seen": 1788342104.6668074, - "ast_hash": "1772f3d1f53da91f3331f7ae44b372df", + "mtime": 1788346274.8443553, + "seen": 1788608157.2198672, + "ast_hash": "b9c7fe5cc607f24ec9076c52c10da385", "semantic_hash": "" }, "frontend/application/components/VideoModalPlayer.tsx": { "mtime": 1787993003.7758553, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "43171a7865e98b7763e76b418e3fe9cd", "semantic_hash": "" }, "frontend/application/components/VideosPage.tsx": { "mtime": 1787729523.4504526, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "e0025493d5aaab06e5ccc669781a4a90", "semantic_hash": "" }, "frontend/application/components/__tests__/CartDrawer.test.tsx": { "mtime": 1786799852.7618258, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "6840b24eb0f28d8120a320f0fd466154", "semantic_hash": "" }, "frontend/application/components/__tests__/FeaturedProducts.test.tsx": { "mtime": 1787729523.4514546, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "317f5de841a35b6881d7a637d8cc921d", "semantic_hash": "" }, "frontend/application/components/__tests__/Footer.test.tsx": { "mtime": 1787729523.4524536, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "8d06abc7e8f0b6bf8bb8f28e1b16e7de", "semantic_hash": "" }, "frontend/application/components/__tests__/Header.test.tsx": { "mtime": 1787729523.4524536, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "a1786feed0dda8b2e95b4dc0493b5d10", "semantic_hash": "" }, "frontend/application/components/__tests__/Hero.test.tsx": { "mtime": 1786799852.7760108, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "cba126955eaf2edc40fe24ce0c42d850", "semantic_hash": "" }, "frontend/application/components/__tests__/Tooltip.test.tsx": { "mtime": 1786799852.784349, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "a43df52896070e694d06a2d1ae89a99a", "semantic_hash": "" }, "frontend/application/components/catalog/CatalogPageSpread.tsx": { - "mtime": 1787981163.2461245, - "seen": 1788342104.6668074, - "ast_hash": "684d8cbb103537467309996870e8d120", + "mtime": 1788351605.8048842, + "seen": 1788608157.2198672, + "ast_hash": "e9c3647b1c25958a9a9f82c017d87477", "semantic_hash": "" }, "frontend/application/components/catalog/FlipbookCatalog.tsx": { "mtime": 1787738052.8693354, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "b8052da550a424f6888d06ccacf38d36", "semantic_hash": "" }, "frontend/application/components/catalog/ProductDetailModal.tsx": { "mtime": 1787981163.2477274, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "6c83f9d093866626428ee2a5cf841e70", "semantic_hash": "" }, "frontend/application/eslint.config.mjs": { "mtime": 1787148092.3580558, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "b4917d5d92dcb4fe98715b5625b397e2", "semantic_hash": "" }, "frontend/application/lib/data/products.ts": { - "mtime": 1788334765.5077353, - "seen": 1788342104.6668074, - "ast_hash": "e5f7408cb6c480ea2c7ce2691833caa3", + "mtime": 1788351605.8063908, + "seen": 1788608157.2198672, + "ast_hash": "c3c2a38c43f0a1ca17ff71d206662764", "semantic_hash": "" }, "frontend/application/lib/data/provinces.ts": { "mtime": 1785571725.610676, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "cd814c89c40909d1da24ac1e01fd99c0", "semantic_hash": "" }, "frontend/application/lib/data/scientificTerms.ts": { "mtime": 1786958978.7430973, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "b469da9f5c2d6e81279c853211bc197f", "semantic_hash": "" }, "frontend/application/lib/fonts.ts": { - "mtime": 1787579631.802835, - "seen": 1788342104.6668074, - "ast_hash": "c6109c18c63f9d0160a23e1a4e0ce20a", + "mtime": 1788351855.94342, + "seen": 1788608157.2198672, + "ast_hash": "267c387996720f9fa259381359469d76", "semantic_hash": "" }, "frontend/application/lib/hooks/useNetworkStatus.ts": { "mtime": 1786799852.793488, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "d6ece33f5f0149a299c49366f0e314d0", "semantic_hash": "" }, "frontend/application/lib/schema.ts": { "mtime": 1787644197.1562054, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "78f0ccf9385189aa65639774e6feb3ad", "semantic_hash": "" }, "frontend/application/lib/seo.ts": { - "mtime": 1788336258.6111283, - "seen": 1788342104.6668074, - "ast_hash": "f2ef259cb0dbdae691d90cad66c42744", + "mtime": 1788587906.749775, + "seen": 1788608157.2198672, + "ast_hash": "81b565bcb2fdf41b51283f9c23bb5c6c", "semantic_hash": "" }, "frontend/application/lib/services/api.ts": { "mtime": 1787997670.2654707, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "636bbe92bb95d7a02bd30d3c12ac70ab", "semantic_hash": "" }, "frontend/application/lib/services/authService.ts": { "mtime": 1786885876.9861848, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "497045bd75576ee0cb6f37fc0ad831da", "semantic_hash": "" }, "frontend/application/lib/services/orderService.ts": { "mtime": 1786799852.8107264, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "5b8b9c867e3db50a9ed5e6b3f765e3b5", "semantic_hash": "" }, "frontend/application/lib/services/productService.ts": { - "mtime": 1788338404.798964, - "seen": 1788342104.6668074, - "ast_hash": "9f0f232cb4fc34b9803fb4d89d5ddc78", + "mtime": 1788354488.2444441, + "seen": 1788608157.2198672, + "ast_hash": "55a328d01e76f69e5161a0eb6930d711", "semantic_hash": "" }, "frontend/application/lib/services/ticketService.ts": { "mtime": 1786890779.3409019, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "6fcf9ed78ca9194e01333602a1989947", "semantic_hash": "" }, "frontend/application/lib/services/videoService.ts": { "mtime": 1787993003.7794602, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "f562a056b1c9a34e4fd37793caadb47a", "semantic_hash": "" }, "frontend/application/lib/store/__tests__/cartStore.test.ts": { "mtime": 1786799852.822037, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "741d154ab7044aa24c39b1694dbd9a32", "semantic_hash": "" }, "frontend/application/lib/store/__tests__/settingsStore.test.ts": { "mtime": 1783856793.0438032, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "9ca2a69a162e64abce0658a348454d97", "semantic_hash": "" }, "frontend/application/lib/store/__tests__/userStore.test.ts": { "mtime": 1786799852.8255477, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "9133574a4b0a49423dadbdc1d8d373b6", "semantic_hash": "" }, "frontend/application/lib/store/cartStore.ts": { "mtime": 1787660831.2202897, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "bca90351f647e0cbd364a37d7e193d8e", "semantic_hash": "" }, "frontend/application/lib/store/settingsStore.ts": { "mtime": 1786948119.7870967, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "ad4252536324b30028b5e4844fbd959b", "semantic_hash": "" }, "frontend/application/lib/store/uiStore.ts": { "mtime": 1786799852.833588, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "5b78ec13363f2456a9efa6189473f93b", "semantic_hash": "" }, "frontend/application/lib/store/usePetStore.ts": { "mtime": 1786954681.8453007, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "ad7e988e8e7561ed1c39db9964710806", "semantic_hash": "" }, "frontend/application/lib/store/userStore.ts": { - "mtime": 1787729523.4534545, - "seen": 1788342104.6668074, - "ast_hash": "d8f10dc4e27e4f67ea104fe3a0dd7d98", + "mtime": 1788607172.8612573, + "seen": 1788608157.2198672, + "ast_hash": "8c27c65e336fab9d05253abc5734ab1d", "semantic_hash": "" }, "frontend/application/lib/types.ts": { "mtime": 1787729527.940444, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "1f5d62944be8572c5e09c5bdb2cd9333", "semantic_hash": "" }, "frontend/application/lib/utils.ts": { "mtime": 1786799852.847284, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "13d70256fc31437c6a1d3c3450c0d5c6", "semantic_hash": "" }, "frontend/application/next.config.ts": { - "mtime": 1787998075.5426586, - "seen": 1788342104.6668074, - "ast_hash": "e09edf02ed748ef97b28d47410c282e2", + "mtime": 1788353540.7615273, + "seen": 1788608157.2198672, + "ast_hash": "eb045f4d14a66bb9242cf95a78469152", "semantic_hash": "" }, "frontend/application/package.json": { "mtime": 1788000055.9924972, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "6d6a5d4a3735231fe5085a5fb5c5df3a", "semantic_hash": "" }, "frontend/application/postcss.config.mjs": { "mtime": 1783764561.9882522, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "239f3ebf717465dc636818a1a619398d", "semantic_hash": "" }, "frontend/application/tsconfig.json": { "mtime": 1786799852.86564, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "09df7544350f3ee3b4fe33841d294a86", "semantic_hash": "" }, "frontend/application/vitest.config.ts": { "mtime": 1786799852.8686528, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "ee482d93c3e5c516e021b7a68c5fb60b", "semantic_hash": "" }, "frontend/application/vitest.setup.ts": { "mtime": 1787729523.454452, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "dc75e4763efd0d28d78fc3d91fdcf1c1", "semantic_hash": "" }, "package.json": { "mtime": 1787729528.0760052, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "c5535a73e39b3c14baebd00970f86081", "semantic_hash": "" }, "playwright.config.ts": { "mtime": 1787729528.0770054, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "61f1ddbe19ecdc3f2aab3547a8e4e469", "semantic_hash": "" }, "scripts/backup_db.sh": { "mtime": 1786799852.8767846, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "82cb31279bdfacde5efe978a55256436", "semantic_hash": "" }, "scripts/deploy.sh": { "mtime": 1787136904.5590942, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "ad310d4368d2fe68ff5f902c248fcc22", "semantic_hash": "" }, "scripts/open-browsers.js": { "mtime": 1788000056.0091808, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "ac5a7c859c872c5b21c264583ac7b6a4", "semantic_hash": "" }, "scripts/start-dev.js": { "mtime": 1787997670.3350558, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "cc8ebf221860d50c5e461ed3c4b46570", "semantic_hash": "" }, "start.sh": { "mtime": 1784033954.8130803, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "de3176806eab0abd69c6a8ea420b2095", "semantic_hash": "" }, "tests/e2e/admin/admin-b2b-submissions.spec.ts": { "mtime": 1787729528.080006, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "63deec2d4bccd47c87eaadbf1f8fb31b", "semantic_hash": "" }, "tests/e2e/admin/admin-blogs-crud.spec.ts": { "mtime": 1787729528.080006, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "d42eff5d8bc8a2faf14bfd9de683c7fa", "semantic_hash": "" }, "tests/e2e/admin/admin-crud.spec.ts": { "mtime": 1787729528.0810058, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "82a34c05711c1890596e3c00db05d089", "semantic_hash": "" }, "tests/e2e/admin/admin-orders-flow.spec.ts": { "mtime": 1787729528.082005, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "5294a6822ba40c754b5a1cb9b8f0de40", "semantic_hash": "" }, "tests/e2e/admin/admin-rbac-roles.spec.ts": { "mtime": 1787729528.0830057, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "30411471f6f78a13f98ef638fac9f89d", "semantic_hash": "" }, "tests/e2e/security/xss-ratelimit.spec.ts": { "mtime": 1787729528.0850058, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "85c831c7ef545b83626f55d43196cdd7", "semantic_hash": "" }, "tests/e2e/storefront/auth-otp-recovery.spec.ts": { "mtime": 1787729528.0860093, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "a954146b86f7d653ba7459e649ac7a13", "semantic_hash": "" }, "tests/e2e/storefront/b2b-flow.spec.ts": { "mtime": 1787729528.0865166, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "bac838e176aa3e82e88678fb9b067f38", "semantic_hash": "" }, "tests/e2e/storefront/blog-wiki.spec.ts": { "mtime": 1787729528.0875323, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "d9e92b416a7a57729777ac446f885772", "semantic_hash": "" }, "tests/e2e/storefront/cart-operations.spec.ts": { "mtime": 1787729528.0890346, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "3d5f3e4a1f5ae0464663a1f40d1deabf", "semantic_hash": "" }, "tests/e2e/storefront/checkout-flow.spec.ts": { "mtime": 1787729528.0890346, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "7bf23a14ed1e1d260b87b6a2d32b9367", "semantic_hash": "" }, "tests/e2e/storefront/concurrency-stock.spec.ts": { "mtime": 1787729528.0900416, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "d0c37fe56bca17fee9e55b8a872b7dab", "semantic_hash": "" }, "tests/e2e/storefront/contact.spec.ts": { "mtime": 1787729528.0910428, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "92a3f8abf800a336fd49e73017b16879", "semantic_hash": "" }, "tests/e2e/storefront/error-pages-404-500.spec.ts": { "mtime": 1787729528.092042, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "0a3d841121c8102bd4601b4cd5a880da", "semantic_hash": "" }, "tests/e2e/storefront/order-tracking.spec.ts": { "mtime": 1787729528.093042, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "bc9462f404850129c094dce93171df69", "semantic_hash": "" }, "tests/e2e/storefront/shop-filter-search.spec.ts": { "mtime": 1787729528.0940487, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "ed34437d88473ac582ff3487cbb58ad1", "semantic_hash": "" }, "tests/fixtures/admin-auth.setup.ts": { "mtime": 1787729528.0950477, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "e9f0440ae28b1d3632693f7e2a3e03a5", "semantic_hash": "" }, "tests/fixtures/index.ts": { "mtime": 1787729528.0950477, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "25e50ff95976135d1b8b381c3d355b51", "semantic_hash": "" }, "tsconfig.json": { "mtime": 1787729528.0960474, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "a57313e870eea61fd8ca26a23da00e62", "semantic_hash": "" }, ".agents/rules/graphify.md": { "mtime": 1786870552.830271, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "f1e53ecc9194573d3c28fc116c743a2e", "semantic_hash": "" }, ".agents/workflows/graphify.md": { "mtime": 1786870552.8323984, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "6d73634a678cf1e1c71930adf80bd1f0", "semantic_hash": "" }, ".ai_agency/AGENCY.md": { "mtime": 1785148021.9796073, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "9a615cfac3d434770f0fa036a32b71f9", "semantic_hash": "" }, ".ai_agency/agents/00_intake.md": { "mtime": 1785148021.984319, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "f1b0d3a7e74c834af83cd068a97bc240", "semantic_hash": "" }, ".ai_agency/agents/01_auditor.md": { "mtime": 1785148021.9877827, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "a41d382a1269c2d6432522485e1b3301", "semantic_hash": "" }, ".ai_agency/agents/02_ceo.md": { "mtime": 1785148021.9983747, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "caf2825294f63004fa58a8b3775f10dc", "semantic_hash": "" }, ".ai_agency/agents/03_product_manager.md": { "mtime": 1785148022.0019681, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "d5a7823925324506c4c0f91534c713cc", "semantic_hash": "" }, ".ai_agency/agents/04_architect.md": { "mtime": 1785148022.004966, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "fa9c501ee0e0f13da21dd138ed9116b3", "semantic_hash": "" }, ".ai_agency/agents/05_dev_backend.md": { "mtime": 1785148022.0124812, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "9753813406d32d60a4f82b62ffc3f00f", "semantic_hash": "" }, ".ai_agency/agents/06_dev_frontend.md": { "mtime": 1785148022.01702, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "061855c65baa90ab44d77285cf1475f2", "semantic_hash": "" }, ".ai_agency/agents/07_qa_engineer.md": { "mtime": 1785148022.0200446, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "fe33c91f65cbfa2a4e9e9e007cd03370", "semantic_hash": "" }, ".ai_agency/agents/08_visual_qa.md": { "mtime": 1785148022.0300832, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "7e8b5e90bb7c668ce961bb1c117d4291", "semantic_hash": "" }, ".ai_agency/agents/09_devops_security.md": { "mtime": 1785148022.0340874, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "f4ce074e72eade7153ee4785ae9a89c6", "semantic_hash": "" }, ".ai_agency/agents/10_tech_writer.md": { "mtime": 1785148022.0370827, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "9315ddc6c2960907d7dda7804c1debac", "semantic_hash": "" }, ".ai_agency/agents/11_deploy.md": { "mtime": 1785148022.0406027, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "0f644be55161acf799ccc0b89ebfaa03", "semantic_hash": "" }, ".ai_agency/agents/12_seo_content.md": { "mtime": 1785148022.048604, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "a053bac412fb66749c22ddfc58882766", "semantic_hash": "" }, ".ai_agency/memory/agent_outputs/README.txt": { "mtime": 1785148022.0521505, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "7b3064fbf48b53032a8d4bfb73ca9ca7", "semantic_hash": "" }, ".ai_agency/memory/scratchpad.md": { "mtime": 1785148022.0651145, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "04648e7db23c144f89cdf78d071a32a0", "semantic_hash": "" }, ".ai_agency/specs/api_contract.md": { "mtime": 1785148022.0776649, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "2641fc7a31d9fe4761dad3ae7c944cb0", "semantic_hash": "" }, ".ai_agency/specs/architecture_spec.md": { "mtime": 1785148022.0822608, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "8763e7670f9cd0281273e139b484e701", "semantic_hash": "" }, ".ai_agency/specs/prd.md": { "mtime": 1785148022.0872517, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "a030931c59700809b29fa5e2dcbaaf18", "semantic_hash": "" }, ".ai_agency/specs/project_health.md": { "mtime": 1785148022.0983145, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "063e14c4ad0f62b79e412580319d6e6a", "semantic_hash": "" }, ".ai_agency/specs/reviews/README.md": { "mtime": 1785148022.105835, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "e68ba8a85edcd2394cb46d8f03fa09b7", "semantic_hash": "" }, ".ai_agency/specs/reviews/backend_review.md": { "mtime": 1785148022.1103623, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "34de73a13f5917bee531b6c2036e6fd6", "semantic_hash": "" }, ".ai_agency/specs/reviews/code_health_review.md": { "mtime": 1785148022.1143596, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "6ac531c22e5d025f50e6375323a52ed7", "semantic_hash": "" }, ".ai_agency/specs/reviews/frontend_review.md": { "mtime": 1785148022.118487, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "0fd2a25383bafe358068544b4fd5e5f9", "semantic_hash": "" }, ".ai_agency/specs/reviews/security_review.md": { "mtime": 1785148022.1214871, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "ed5139209a62a8a4a461b8a0eff9ac02", "semantic_hash": "" }, ".ai_agency/specs/reviews/seo_content_review.md": { "mtime": 1785148022.1315339, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "4cd7283f78877c1a14ff5b682c762702", "semantic_hash": "" }, ".ai_agency/specs/reviews/ux_review.md": { "mtime": 1785148022.1365507, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "4edeb2b914b36277d8381de722df56ef", "semantic_hash": "" }, ".antigravity/instructions.md": { "mtime": 1786870552.8334057, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "9b31786b637be3c13978bec4c2330752", "semantic_hash": "" }, ".antigravity/workflows/graphify.md": { "mtime": 1786870552.8379214, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "3953c31b4ef6d89d3b1cb43f0110817d", "semantic_hash": "" }, ".claude/CLAUDE.md": { "mtime": 1786870552.83892, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "9b31786b637be3c13978bec4c2330752", "semantic_hash": "" }, ".claude/skills/graphify/SKILL.md": { "mtime": 1786870552.845041, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "3953c31b4ef6d89d3b1cb43f0110817d", "semantic_hash": "" }, ".claude/skills/graphify/references/add-watch.md": { "mtime": 1786870552.848102, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "d59d027fe449f06aa03905a01184e779", "semantic_hash": "" }, ".claude/skills/graphify/references/exports.md": { "mtime": 1786870552.849102, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "9da2a2152e60a22f07f05fed5158f287", "semantic_hash": "" }, ".claude/skills/graphify/references/extraction-spec.md": { "mtime": 1786870552.850102, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "42fef56a01698118f7fd722acdadea34", "semantic_hash": "" }, ".claude/skills/graphify/references/github-and-merge.md": { "mtime": 1786870552.853101, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "cde13df085e4c492aeb7ba298a996d0d", "semantic_hash": "" }, ".claude/skills/graphify/references/hooks.md": { "mtime": 1786870552.8550987, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "3f545db6ce646650bb9de588f5512a27", "semantic_hash": "" }, ".claude/skills/graphify/references/query.md": { "mtime": 1786870552.857703, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "3c46f8ad006874260614ed8657d02307", "semantic_hash": "" }, ".claude/skills/graphify/references/transcribe.md": { "mtime": 1786870552.8587108, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "67b6a5fa6c0974e18f60db9f8932fbd8", "semantic_hash": "" }, ".claude/skills/graphify/references/update.md": { "mtime": 1786870552.86071, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "9378bd03d56baaf78bd738ab3848f142", "semantic_hash": "" }, ".gitea/workflows/deploy.yml": { "mtime": 1787078454.7624714, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "8dba2b15f1a2baf9ad6fa20a0b3dc467", "semantic_hash": "" }, ".gitea/workflows/e2e.yml": { "mtime": 1787729527.9233918, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "b4aac490e2d03c136bdfa173565288b3", "semantic_hash": "" }, "AGENTS.md": { "mtime": 1786870552.8627086, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "9b31786b637be3c13978bec4c2330752", "semantic_hash": "" }, "BACKEND_INTEGRATION.md": { "mtime": 1786885876.7688253, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "e1f23cc23d23159b32a35acc9fadc689", "semantic_hash": "" }, "CLAUDE.md": { "mtime": 1786870552.8637102, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "82efb97a359f5c7290bf2513d14686be", "semantic_hash": "" }, "DATABASE_SCHEMA.md": { "mtime": 1786885876.7713423, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "ca5ded565172da98231f6cf54af4843d", "semantic_hash": "" }, "README.md": { "mtime": 1786885876.7753718, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "830c27760b856f621e2498eb762743fa", "semantic_hash": "" }, "backend/README.md": { "mtime": 1783764561.6013825, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "f9b30a57e215bc0b63868065fc71a1ac", "semantic_hash": "" }, "canina.md": { "mtime": 1786885876.8094723, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "9dd630592bc7905abc25f844ff134305", "semantic_hash": "" }, "docker-compose.yml": { "mtime": 1787752951.3497422, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "10e33845f2b3992546351af83f878b04", "semantic_hash": "" }, "docs/01-introduction.md": { "mtime": 1786885876.812475, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "4089d3e4da9e473cd14c984e646abe93", "semantic_hash": "" }, "docs/02-user-guide.md": { "mtime": 1786885876.8139858, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "96bf8f4516994e99012a5b6c710835cd", "semantic_hash": "" }, "docs/03-developer-guide.md": { "mtime": 1783764561.7716606, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "14f25993a3a77357739f6cd082c1e566", "semantic_hash": "" }, "docs/04-setup-and-deployment.md": { "mtime": 1787127978.2568479, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "7def44fff8cdd0d28b700f711e2443ed", "semantic_hash": "" }, "docs/05-devops-and-monitoring.md": { "mtime": 1783764561.774446, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "7dade1c1d477d70ced55a7580b812127", "semantic_hash": "" }, "docs/06-testing.md": { "mtime": 1783764561.7749674, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "2ed3cd7f39157774928e65d5cc0588d0", "semantic_hash": "" }, "docs/README.md": { "mtime": 1786885876.8169968, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "64dfe035bc8fdb4b42f7af8336bf4ab3", "semantic_hash": "" }, "docs/audit/00-repository-map.md": { "mtime": 1786799852.2981741, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "5343b55148ced4eed7f13aa32b689936", "semantic_hash": "" }, "docs/audit/01-system-discovery.md": { "mtime": 1786799852.2991743, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "5fcfb853f894f8697b6badb692dfe249", "semantic_hash": "" }, "docs/audit/02-audit-plan.md": { "mtime": 1786799852.3001754, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "d6a5dbf5ddc5fc174e8a041e835481db", "semantic_hash": "" }, "docs/audit/03-baseline-command-plan.md": { "mtime": 1786799852.3001754, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "7d40f368e9ed0f27fa2ef5ad01249ad2", "semantic_hash": "" }, "docs/audit/04-open-questions.md": { "mtime": 1786799852.301682, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "773b455bb84b5df87cfbaa76dfa951f0", "semantic_hash": "" }, "docs/audit/05-architectural-audit.md": { "mtime": 1786799852.3026898, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "ab18a41271f0f845054f52f4dfa715eb", "semantic_hash": "" }, "docs/audit/06-storefront-audit.md": { "mtime": 1786799852.3036914, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "7c3aff371cdb919bb885bf4a6f625780", "semantic_hash": "" }, "docs/audit/07-backend-audit.md": { "mtime": 1786799852.30469, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "53927123ba5acca71e57780ca9bd34f9", "semantic_hash": "" }, "docs/audit/08-admin-features-audit.md": { "mtime": 1786799852.3059514, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "d4da7eb2396ad939251ccc541f1fd165", "semantic_hash": "" }, "docs/audit/09-database-audit.md": { "mtime": 1786799852.3069694, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "bdd7e4c3b4723b2006053563ac345819", "semantic_hash": "" }, "docs/audit/10-security-audit.md": { "mtime": 1786799852.3079526, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "125471bb12e468a0ddcd9a1dccca1001", "semantic_hash": "" }, "docs/audit/11-code-quality-audit.md": { "mtime": 1786799852.308957, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "c48e39113f2334fae743488668ecf618", "semantic_hash": "" }, "docs/audit/12-testing-audit.md": { "mtime": 1786799852.3099525, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "0d1570f5138328d090a43edc1f7bc4f0", "semantic_hash": "" }, "docs/audit/13-devops-audit.md": { "mtime": 1786799852.3109539, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "986acddf4e09ccbe2b8b8f6806bc01d5", "semantic_hash": "" }, "docs/audit/14-documentation-audit.md": { "mtime": 1786799852.311952, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "d1f8496a0dae10993495691dc58098ef", "semantic_hash": "" }, "docs/audit/16-deep-audit-summary.md": { "mtime": 1786799852.313067, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "f17a01bf7b59276d28c6948fd14eafd2", "semantic_hash": "" }, "docs/audit/18-compiler-diagnostic-dispositions.md": { "mtime": 1786799852.315065, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "5b402b064300709c7723a63885894c29", "semantic_hash": "" }, "docs/audit/19-finding-verification-report.md": { "mtime": 1786799852.3160648, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "c3363af4c68792722ebadddc10319f14", "semantic_hash": "" }, "docs/audit/21-phase2-quality-gate-summary.md": { "mtime": 1786799852.318066, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "c336937acd576ee2efc36d67dbaf69e2", "semantic_hash": "" }, "docs/audit/22-tracked-first-party-files.txt": { "mtime": 1786799852.319066, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "3f66b26b7f4217a065ed3d3403fe40fd", "semantic_hash": "" }, "docs/audit/23-untracked-first-party-files.txt": { "mtime": 1786799852.319066, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "9fe0a15ea45d03f8e4ccd0ad786dd9fb", "semantic_hash": "" }, "docs/audit/24-omitted-file-inspection-report.md": { "mtime": 1786799852.3200657, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "6fb068c98fefc544e9ff687c1b3c0351", "semantic_hash": "" }, "docs/audit/26-phase2-integrity-repair-report.md": { "mtime": 1786799852.3220918, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "aecc17ca01002edfbdf472cf4f4aaa4c", "semantic_hash": "" }, "docs/audit/27-all-tracked-repository-files.txt": { "mtime": 1786799852.3230999, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "f35e68d28e4c31002698e68cc18242e3", "semantic_hash": "" }, "docs/audit/31-module-audit-closure.md": { "mtime": 1786799852.3276167, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "b66f589f8c3bd0b53b7d61626eec0985", "semantic_hash": "" }, "docs/audit/33-final-phase2-audit-closure.md": { "mtime": 1786799852.3286169, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "ca898e1caffc2764de11b6a10e84d1ea", "semantic_hash": "" }, "docs/audit/ADR-AUTH-001.md": { "mtime": 1786799852.3326428, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "2616cbbcbbc3d461d3b6ca00195902a9", "semantic_hash": "" }, "docs/audit/CROSS_BOUNDARY_DEPENDENCIES.md": { "mtime": 1786799852.3326428, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "6d851d9e754115841a5accab7efcf0dc", "semantic_hash": "" }, "docs/audit/FRONTEND_INTEGRATION_REQUIREMENTS.md": { "mtime": 1787127978.2588482, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "8210201eae0692d1e76cad23d60c804b", "semantic_hash": "" }, "docs/audit/MASTER-TASK-BACKLOG.md": { "mtime": 1786799852.3354702, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "0efc4759c15a04ca934ec32bb6b6fa6b", "semantic_hash": "" }, "docs/audit/frontend-route-map.md": { "mtime": 1786799852.3393898, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "88fdef86c48b2164cdcced3e502c073f", "semantic_hash": "" }, "docs/audit/phase3-execution-plan.md": { "mtime": 1786799852.3439524, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "15babdd91198793f5b6b791d7a5edd22", "semantic_hash": "" }, "docs/audit/phase3-traceability-matrix.md": { "mtime": 1786799852.3449528, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "40cd32ed7fa433342aa547fa5aa21d86", "semantic_hash": "" }, "docs/audit/phase3.1-backlog-review.md": { "mtime": 1786799852.3459527, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "78810767668f7d90e980648ec8c17869", "semantic_hash": "" }, "docs/audit/phase3.1-change-log.md": { "mtime": 1786799852.3469548, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "eed1734c4a6d1d8464dd63f6cbc33e9f", "semantic_hash": "" }, "docs/audit/phase3.2-change-log.md": { "mtime": 1786799852.3479521, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "b13460f1fa8aaecd88bc007a2c5e2ecb", "semantic_hash": "" }, "docs/audit/phase3.2-implementation-readiness.md": { "mtime": 1786799852.3479521, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "ffe4bce7401d65f9d44e8740d3c2ccf6", "semantic_hash": "" }, "docs/backlog.md": { "mtime": 1786799852.3560216, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "cf6eb1a9c1daef121cfb40f1a7771808", "semantic_hash": "" }, "frontend/admin-panel/README.md": { "mtime": 1783764561.7789528, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "f6e3faf55d738cf2affe1b44195f27cf", "semantic_hash": "" }, "frontend/admin-panel/index.html": { "mtime": 1783764561.7805586, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "d836c7a6b7be6d5b04a925b7ad32e539", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/A-Iranian-Sans/A-Iranian-Sans/read me!.txt": { "mtime": 1783856792.435855, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "607f9ca43b12868e8880a0d85831a878", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/IranNastaliq/IranNastaliq/read me!.txt": { "mtime": 1783856792.445365, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "607f9ca43b12868e8880a0d85831a878", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/CHANGELOG.md": { "mtime": 1783856792.4546044, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "eaa55e166ec4a6b2ee875b746ef049a0", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md": { "mtime": 1783856792.5025032, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "0e4c260ce354bad51a6a184b5e236424", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/CHANGELOG.md": { "mtime": 1783856792.5480056, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "eeaf2bb0943a16d43493f706d0867d1f", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md": { "mtime": 1783856792.5951552, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "5f851eefeeb4bffff8c5427a289f934d", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/vazirmatn-v33.003/AUTHORS.txt": { "mtime": 1783856792.646666, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "a5c1ec085d5dae2319c659151ffce3f0", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md": { "mtime": 1783856792.6476717, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "e7227ba84ca88111166000065d1bdacb", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/vazirmatn-v33.003/OFL.txt": { "mtime": 1783856792.6486697, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "88985b4355a8a44627dde041f10aba75", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md": { "mtime": 1783856792.6486697, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "e9d11601fc4c77fe3d8d1961d9c5d420", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/vazirmatn-v33.003/\u0631\u0627\u0647\u0646\u0645\u0627.txt": { "mtime": 1783856792.971535, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "975634eaf84a797674b29e99c311f54a", "semantic_hash": "" }, "frontend/application/AGENTS.md": { "mtime": 1787127978.2689438, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "657cc62d228d2fcf56f1c843aad131fd", "semantic_hash": "" }, "frontend/application/CLAUDE.md": { "mtime": 1783764561.8667445, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "5c27369b226fcf2be8a6cfe52224e767", "semantic_hash": "" }, "frontend/application/README.md": { "mtime": 1783764561.8673544, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "f15aaa42d5d299d091b1171097ea56ad", "semantic_hash": "" }, "frontend/application/public/fonts/A-Iranian-Sans/A-Iranian-Sans/read me!.txt": { "mtime": 1783856793.098052, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "607f9ca43b12868e8880a0d85831a878", "semantic_hash": "" }, "frontend/application/public/fonts/IranNastaliq/IranNastaliq/read me!.txt": { "mtime": 1783856793.1076603, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "607f9ca43b12868e8880a0d85831a878", "semantic_hash": "" }, "frontend/application/public/fonts/sahel-font-v3.4.0/CHANGELOG.md": { "mtime": 1783856793.1136606, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "eaa55e166ec4a6b2ee875b746ef049a0", "semantic_hash": "" }, "frontend/application/public/fonts/sahel-font-v3.4.0/README.md": { "mtime": 1783856793.1562517, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "0e4c260ce354bad51a6a184b5e236424", "semantic_hash": "" }, "frontend/application/public/fonts/shabnam-font-v5.0.1/CHANGELOG.md": { "mtime": 1783856793.2301185, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "eeaf2bb0943a16d43493f706d0867d1f", "semantic_hash": "" }, "frontend/application/public/fonts/shabnam-font-v5.0.1/README.md": { "mtime": 1783856793.2795427, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "5f851eefeeb4bffff8c5427a289f934d", "semantic_hash": "" }, "frontend/application/public/fonts/vazirmatn-v33.003/AUTHORS.txt": { "mtime": 1783856793.3161557, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "a5c1ec085d5dae2319c659151ffce3f0", "semantic_hash": "" }, "frontend/application/public/fonts/vazirmatn-v33.003/CHANGELOG.md": { "mtime": 1783856793.3176901, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "e7227ba84ca88111166000065d1bdacb", "semantic_hash": "" }, "frontend/application/public/fonts/vazirmatn-v33.003/OFL.txt": { "mtime": 1783856793.319422, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "88985b4355a8a44627dde041f10aba75", "semantic_hash": "" }, "frontend/application/public/fonts/vazirmatn-v33.003/README.md": { "mtime": 1783856793.320489, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "e9d11601fc4c77fe3d8d1961d9c5d420", "semantic_hash": "" }, "frontend/application/public/fonts/vazirmatn-v33.003/\u0631\u0627\u0647\u0646\u0645\u0627.txt": { "mtime": 1783856793.6680968, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "975634eaf84a797674b29e99c311f54a", "semantic_hash": "" }, "manual-test-scenarios.md": { "mtime": 1787729528.0730064, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "d41d8cd98f00b204e9800998ecf8427e", "semantic_hash": "" }, "prometheus.yml": { "mtime": 1783764562.0277793, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "45dc28cd8d9656e7141713ece5a7aa2c", "semantic_hash": "" }, "scripts/compose.prod.yml": { "mtime": 1787998075.631989, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "4479ed210434f881e4bd325f174b9652", "semantic_hash": "" }, "scripts/compose.stage.yml": { "mtime": 1787077093.9917798, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "6c2045ddae8c6cac20ab3a0b87c39388", "semantic_hash": "" }, "swagger.yml": { "mtime": 1786799852.8920915, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "34b5e7e5e1b19e6e3596ef669f8a0d0d", "semantic_hash": "" }, "test-coverage-map.md": { "mtime": 1787729528.0780063, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "d13004ca00333f0617470080ac36b666", "semantic_hash": "" }, "canina.pdf": { "mtime": 1785148022.3708115, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "900fb024ec3b91912a512a96c2a0c0a0", "semantic_hash": "" }, "backend/uploads/1781288429353-508765350.jpg": { "mtime": 1783764561.766257, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "ebf86506731de8ec10f2c4ea0ba14609", "semantic_hash": "" }, "frontend/admin-panel/public/favicon.svg": { "mtime": 1783764561.7978015, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "7e840862161341271697daa99a40d76b", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/sample-variable.gif": { "mtime": 1783856792.5464964, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "9d0c1a4764b2b06807578b33c40838ca", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/sample.png": { "mtime": 1783856792.6456678, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "8bca253cfb55f954622145010756efa9", "semantic_hash": "" }, "frontend/admin-panel/public/icons.svg": { "mtime": 1783764561.7993202, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "3b4fcfcf393eca4d264dca4a4663bc37", "semantic_hash": "" }, "frontend/admin-panel/src/assets/hero.png": { "mtime": 1783764561.812863, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "aead493361b27e7510691c5d7072dfc1", "semantic_hash": "" }, "frontend/admin-panel/src/assets/react.svg": { "mtime": 1783764561.8139248, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "f0402b67b6ce880f65666bb49e841696", "semantic_hash": "" }, "frontend/admin-panel/src/assets/vite.svg": { "mtime": 1783764561.8149958, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "9960a24288958394ac50e57ff638b036", "semantic_hash": "" }, "frontend/application/public/assets/images/canina-product-placeholder.png": { "mtime": 1787461919.5050244, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "a9f359cce82a5ab0a24830ed59a33047", "semantic_hash": "" }, "frontend/application/public/assets/images/regenerated_image_1779109861747.png": { "mtime": 1783764562.0141103, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "47111b66c208d1fa0c74877dfc0ee2a5", "semantic_hash": "" }, "frontend/application/public/file.svg": { "mtime": 1783764562.0162137, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "d09f95206c3fa0bb9bd9fefabfd0ea71", "semantic_hash": "" }, "frontend/application/public/fonts/sahel-font-v3.4.0/sample-variable.gif": { "mtime": 1783856793.2291198, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "9d0c1a4764b2b06807578b33c40838ca", "semantic_hash": "" }, "frontend/application/public/fonts/shabnam-font-v5.0.1/sample.png": { "mtime": 1783856793.3151467, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "8bca253cfb55f954622145010756efa9", "semantic_hash": "" }, "frontend/application/public/globe.svg": { "mtime": 1783764562.0167208, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "2aaafa6a49b6563925fe440891e32717", "semantic_hash": "" }, "frontend/application/public/images/vets/vet1.webp": { "mtime": 1787461919.5417616, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "a9f359cce82a5ab0a24830ed59a33047", "semantic_hash": "" }, "frontend/application/public/next.svg": { "mtime": 1783764562.0182388, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "8e061864f388b47f33a1c3780831193e", "semantic_hash": "" }, "frontend/application/public/vercel.svg": { "mtime": 1783764562.019253, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "c0af2f507b369b085b35ef4bbe3bcf1e", "semantic_hash": "" }, "frontend/application/public/window.svg": { "mtime": 1783764562.019253, - "seen": 1788342104.6668074, + "seen": 1788608157.2198672, "ast_hash": "a2760511c65806022ad20adf74370ff3", "semantic_hash": "" }, "frontend/application/app/smart-advisor/page.tsx": { "mtime": 1787740536.6786995, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "915d70a715440d85d060653aaa219861", "semantic_hash": "" }, "frontend/application/app/dashboard/orders/page.tsx": { "mtime": 1787741941.3028061, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "2a229305eedc5601932638630618882d", "semantic_hash": "" }, "frontend/application/app/dashboard/pets/page.tsx": { "mtime": 1787741941.3038094, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "fb2e013e721c9711375e6bc4e73d2714", "semantic_hash": "" }, "frontend/application/components/ProductImageZoomModal.tsx": { - "mtime": 1787749751.969854, - "seen": 1788342104.6662529, - "ast_hash": "ef7bb690c74a484db1d7464ed2390e7d", + "mtime": 1788608060.8001156, + "seen": 1788608157.2198672, + "ast_hash": "61f6c262c49bb4ca4b2494d25a86767b", "semantic_hash": "" }, "backend/prisma/migrations/20260526145407_init/migration.sql": { "mtime": 1783764561.6120076, - "seen": 1788342104.6662529, + "seen": 1788608157.2188678, "ast_hash": "12a9a675c12bc5ff2d2c3164f803f0ad", "semantic_hash": "" }, "backend/prisma/migrations/20260526160916_add_ui_texts_and_scientific_terms/migration.sql": { "mtime": 1783764561.6134257, - "seen": 1788342104.6662529, + "seen": 1788608157.2188678, "ast_hash": "50977e705726df3fb0f30bd1d3af101b", "semantic_hash": "" }, "frontend/application/app/api/media/[...path]/route.ts": { - "mtime": 1787997353.1987097, - "seen": 1788342104.6662529, - "ast_hash": "09ad194faea0f369fd2a0c7d00189ca7", + "mtime": 1788353078.508489, + "seen": 1788608157.2198672, + "ast_hash": "5555c5fc73ee5a79d968367b2cba36a1", "semantic_hash": "" }, "frontend/application/app/api/uploads/[...path]/route.ts": { - "mtime": 1787997353.2003765, - "seen": 1788342104.6662529, - "ast_hash": "154fa6e5d8f875b25dd651957a6bca26", + "mtime": 1788353078.5100856, + "seen": 1788608157.2198672, + "ast_hash": "a58dd0b691ec9938a85dc9dd20dd2f6a", "semantic_hash": "" }, "frontend/application/lib/media.ts": { - "mtime": 1787993003.7764504, - "seen": 1788342104.6668074, - "ast_hash": "9216276186f66c66540dd2ceb58bb86b", + "mtime": 1788353540.75992, + "seen": 1788608157.2198672, + "ast_hash": "6997390e7ad424bc13f7594818afc1fb", "semantic_hash": "" }, "frontend/application/components/NavigationProgressBar.tsx": { "mtime": 1787999006.325061, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "fc0755d6a907e51dc86c33bd1abe4216", "semantic_hash": "" }, "frontend/application/app/api/torob/products/route.ts": { "mtime": 1788328838.7466128, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "8cf49957ae2e82069a968b39a8f78d30", "semantic_hash": "" }, "backend/src/products/torob.controller.ts": { "mtime": 1788334048.8063805, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "77815c75dbf3eac240a646100fc7a78e", "semantic_hash": "" }, "backend/src/admin/dto/pricing.dto.ts": { "mtime": 1788334048.8006155, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "1efa4c98ce79e6b8ba933614035d4093", "semantic_hash": "" }, "backend/src/common/utils/pricing.utils.ts": { "mtime": 1788330948.589741, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "b42cc525ab14fa97917933bbde01d9f3", "semantic_hash": "" }, "frontend/admin-panel/src/utils/pricing.ts": { "mtime": 1788330948.5947409, - "seen": 1788342104.6662529, + "seen": 1788608157.2198672, "ast_hash": "7a4e15557cc4b2db5d73cc30df2d7f27", "semantic_hash": "" + }, + "backend/src/common/services/sms-events.constants.ts": { + "mtime": 1788607875.3236513, + "seen": 1788608157.2198672, + "ast_hash": "25e634a06d9a816465ffe653a3bca7d8", + "semantic_hash": "" + }, + "frontend/application/components/AnalyticsDeferred.tsx": { + "mtime": 1788608043.344855, + "seen": 1788608157.2198672, + "ast_hash": "82d3ecf31ffa86d761b219ad85a7a63f", + "semantic_hash": "" + }, + "frontend/application/public/images/favicons/android-chrome-192x192.png": { + "mtime": 1788587906.752678, + "seen": 1788608157.2198672, + "ast_hash": "6ae1d478e3edc5c3fbc0ef83f08a5a34", + "semantic_hash": "" + }, + "frontend/application/public/images/favicons/android-chrome-512x512.png": { + "mtime": 1788587906.7572186, + "seen": 1788608157.2198672, + "ast_hash": "f7a3eebc8c1ae1b86bb2201cc040d38f", + "semantic_hash": "" + }, + "frontend/application/public/images/favicons/apple-touch-icon.png": { + "mtime": 1788587906.7592187, + "seen": 1788608157.2198672, + "ast_hash": "1bed40de2da456237daf45dd92a70519", + "semantic_hash": "" + }, + "frontend/application/public/images/favicons/favicon-16x16.png": { + "mtime": 1788587906.7611878, + "seen": 1788608157.2198672, + "ast_hash": "57e44df83d6c2b4250fe4f6d41723223", + "semantic_hash": "" + }, + "frontend/application/public/images/favicons/favicon-32x32.png": { + "mtime": 1788587906.7631907, + "seen": 1788608157.2198672, + "ast_hash": "c5d36a5d0acef758465b443872a011e2", + "semantic_hash": "" } } \ No newline at end of file diff --git a/graphify-out/GRAPH_REPORT.md b/graphify-out/GRAPH_REPORT.md index 7f57d4f..60befee 100644 --- a/graphify-out/GRAPH_REPORT.md +++ b/graphify-out/GRAPH_REPORT.md @@ -1,42 +1,42 @@ # Graph Report - canina (2026-09-05) ## Corpus Check -- 601 files · ~1,114,020 words +- 602 files · ~1,114,472 words - Verdict: corpus is large enough that graph structure adds value. ## Summary -- 4234 nodes · 7717 edges · 310 communities (215 shown, 95 thin omitted) +- 4240 nodes · 7765 edges · 330 communities (217 shown, 113 thin omitted) - Extraction: 96% EXTRACTED · 4% INFERRED · 0% AMBIGUOUS · INFERRED: 298 edges (avg confidence: 0.79) - Token cost: 0 input · 0 output ## Graph Freshness -- Built from commit: `e15c25da` +- Built from commit: `330d9605` - Run `git rev-parse HEAD` and compare to check if the graph is stale. - Run `graphify update .` after code changes (no API cost). ## Community Hubs (Navigation) - Roles - app.module.ts -- payment.service.ts +- getMediaUrl - productService.ts -- UserDashboard.tsx +- PetProfile.tsx - CmsController - tickets.controller.ts - SmsSettingsPage.tsx - SmsService - devDependencies -- ReviewsService -- ConfirmModal.tsx +- reviews.controller.ts +- UsersService - index.ts - app-audit-verification.e2e-spec.js -- toPersian +- UserDashboard.tsx - src/services/api.ts - DoctorQueryDto - schema.ts - JwtAuthGuard - admin.controller.ts - CreateVideoDto -- auth.service.ts +- auth.module.ts - ProductDto - MenuService - BE-001 @@ -51,7 +51,7 @@ - WholesaleApplyDto - B2BService - ContactService -- FaqService +- FaqController - راهنمای تست سیستم (Software Testing) - Button - CategoriesController @@ -67,13 +67,13 @@ - devDependencies - devDependencies - BlogsController -- PrescriptionsService +- prescriptions.controller.ts - SmartAdvisorService - Button.tsx - UITexts.tsx - Orders.tsx - Role & Core Objective -- AuthService +- auth.service.ts - compilerOptions - CreateUserDto - ProductPage.tsx @@ -100,15 +100,15 @@ - scripts - dependencies - Role & Core Objective -- RegisterDto +- auth.controller.ts - zibal.service.ts - dependencies - CreateEBankCheckoutDto - seed-products.ts -- useCartStore +- orderService.ts - Reconciled Audit Roles & Assignments - OrdersService -- ArchivePage.tsx +- components/Skeleton.tsx - Phase 3.1 — Human Review Preparation and Master Backlog Critique - getSeoConfig - compilerOptions @@ -138,7 +138,7 @@ - compilerOptions - backend/README.md - AdminService -- UsersService +- UsersController - Repository Map - validate_integrity.js - admin-panel/package.json @@ -159,15 +159,15 @@ - application/package.json - start-dev.js - generate-openapi.js -- PodcastPlayerModal.tsx -- AdminLoginDto +- lib/services/api.ts +- orders.service.ts - System Discovery - HomeController -- VerifyOtpDto +- RouteErrorBoundary - wiki/[slug]/page.tsx - Product Requirement Document (PRD) -- @types/node -- RevalidationService +- AddressDto +- RedisService - exclude - Baseline Command Plan & Reconciled Command History - seo-backfill.ts @@ -198,8 +198,8 @@ - ⚙️ Backend Technical Review (05_dev_backend) - 🎨 Frontend & Admin Panel Technical Review (06_dev_frontend) - 🚀 SEO & Content Strategy Review (12_seo_content) -- AppModule -- eslint-config-next +- FaqService +- Reviews.tsx - seed-ui-texts.ts - seed-wiki.ts - update-blog.dto.ts @@ -211,13 +211,14 @@ - Raw Finding Verification & Disposition Report - React + TypeScript + Vite - Select.tsx -- userStore.ts +- ClientLayout.tsx - @tailwindcss/postcss -- SmsLogQueryDto +- track/page.tsx - application/README.md - deploy.sh - 🔒 Security & Performance Review (09_devops_security) - 👁️ UX & Persona Interface Review (08_visual_qa) +- bcrypt - prisma/scientificTerms.ts - seed-blogs.ts - seed-custom.ts @@ -233,9 +234,11 @@ - sync_honest_manifest.js - sync_manifest.js - FormField.tsx +- class-transformer - Textarea.tsx - admin-panel/tsconfig.json - tailwindcss +- helmet - next.config.ts - Shabnam Font README - AGENTS.md @@ -243,7 +246,8 @@ - .agents/workflows/graphify.md - instructions.md - @nestjs/schematics -- prisma +- js-yaml +- @nestjs/core - source-map-support - ts-loader - ts-node @@ -271,6 +275,7 @@ - User Login API - User Logout API - @types/compression +- @nestjs/jwt - @types/express - @types/jest - @types/multer @@ -289,12 +294,21 @@ - Production Docker Compose - Staging Docker Compose - ZibalService +- @nestjs/throttler +- passport - ZibalEBankService - .initiateOrderPayment - @tailwindcss/postcss - typescript +- reflect-metadata - typescript-eslint +- swagger-ui-express +- eslint +- eslint-config-prettier - @eslint/js +- @eslint/eslintrc +- jest +- @nestjs/cli - @types/passport-jwt - 20260526160916_add_ui_texts_and_scientific_terms/migration.sql - eslint-plugin-prettier @@ -302,8 +316,14 @@ - globals - revalidate/route.ts - MaskableField.tsx +- @nestjs/testing +- prettier +- ts-jest +- @types/js-yaml - @types/react-dom +- @types/supertest - eslint-plugin-react-refresh +- tailwindcss - typescript-eslint ## God Nodes (most connected - your core abstractions) @@ -331,11 +351,11 @@ 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/store/cartStore.ts -> frontend/application/lib/services/api.ts` - 3-file cycle: `frontend/application/lib/services/api.ts -> frontend/application/lib/store/userStore.ts -> frontend/application/lib/services/authService.ts -> frontend/application/lib/services/api.ts` +- 3-file cycle: `frontend/application/lib/services/api.ts -> frontend/application/lib/store/userStore.ts -> frontend/application/lib/store/cartStore.ts -> frontend/application/lib/services/api.ts` - 4-file cycle: `frontend/application/lib/services/api.ts -> frontend/application/lib/store/userStore.ts -> frontend/application/lib/store/cartStore.ts -> frontend/application/lib/services/orderService.ts -> frontend/application/lib/services/api.ts` -## Communities (310 total, 95 thin omitted) +## Communities (330 total, 113 thin omitted) ### Community 0 - "Roles" Cohesion: 0.24 @@ -343,19 +363,19 @@ Nodes (13): Roles(), PaymentController, ApiBearerAuth, ApiOperation, ApiTags, Bo ### Community 1 - "app.module.ts" Cohesion: 0.07 -Nodes (36): B2BModule, Module, BannersModule, Module, CmsModule, Module, SmsModule, Global (+28 more) +Nodes (34): B2BModule, Module, BannersModule, Module, CmsModule, Module, SmsModule, Global (+26 more) -### Community 2 - "payment.service.ts" -Cohesion: 0.20 -Nodes (8): AdminTransactionFilterDto, ApiPropertyOptional, IsIn, IsNumber, IsOptional, IsString, Type, ClientMetadata +### Community 2 - "getMediaUrl" +Cohesion: 0.10 +Nodes (23): buildTorobProductSpec(), buildTorobProductTitle(), dynamic, GET(), revalidate, dynamic, GET(), revalidate (+15 more) ### Community 3 - "productService.ts" -Cohesion: 0.05 -Nodes (41): buildTorobProductSpec(), buildTorobProductTitle(), dynamic, GET(), revalidate, dynamic, GET(), revalidate (+33 more) +Cohesion: 0.07 +Nodes (32): DEFAULT_CATEGORIES, dynamic, revalidate, dynamic, revalidate, BlogCategory, BlogPostItem, CatalogPageSpread() (+24 more) -### Community 4 - "UserDashboard.tsx" -Cohesion: 0.11 -Nodes (20): metadata, OrderDetailsModal(), PetProfile(), SearchResultsPage(), CURRENT_SYMPTOMS, MEDICAL_HISTORIES, SmartAdvisor(), SmartAdvisorProps (+12 more) +### Community 4 - "PetProfile.tsx" +Cohesion: 0.09 +Nodes (31): VerifyContent(), metadata, CartDrawer(), Header(), MENU_ICONS, OrderSuccess(), PetProfile(), PrescriptionUploadModal() (+23 more) ### Community 5 - "CmsController" Cohesion: 0.09 @@ -370,20 +390,20 @@ Cohesion: 0.20 Nodes (10): PatternItem, SmsConfigState, SmsEventDefinition, SmsEventVariable, SmsLogItem, SmsLogStats, SmsRule, SmsSettingsPage() (+2 more) ### Community 8 - "SmsService" -Cohesion: 0.06 -Nodes (20): SmsEventDefinition, SmsService, Injectable, SettingsController, ApiBearerAuth, ApiOkResponse, ApiOperation, ApiTags (+12 more) +Cohesion: 0.05 +Nodes (27): SmsEventDefinition, SmsService, Injectable, SmsLogQueryDto, ApiPropertyOptional, IsIn, IsNumber, IsOptional (+19 more) ### Community 9 - "devDependencies" -Cohesion: 0.08 -Nodes (25): devDependencies, eslint, eslint-config-prettier, @eslint/eslintrc, jest, @nestjs/cli, @nestjs/testing, prettier (+17 more) +Cohesion: 0.22 +Nodes (9): devDependencies, prisma, @types/bcryptjs, @types/node, typescript, @types/node, typescript, prisma (+1 more) -### Community 10 - "ReviewsService" -Cohesion: 0.09 -Nodes (22): ApiProperty, IsIn, IsOptional, IsString, UpdateReviewDto, ReviewsController, ApiBearerAuth, ApiOperation (+14 more) +### Community 10 - "reviews.controller.ts" +Cohesion: 0.07 +Nodes (32): CreateReviewDto, ApiProperty, IsInt, IsNotEmpty, IsOptional, IsString, Min, ApiProperty (+24 more) -### Community 11 - "ConfirmModal.tsx" -Cohesion: 0.10 -Nodes (16): ConfirmModal(), ConfirmModalProps, Pagination(), PaginationProps, Category, Pet, DoctorOption, Video (+8 more) +### Community 11 - "UsersService" +Cohesion: 0.12 +Nodes (10): ApiPropertyOptional, IsEmail, IsOptional, IsString, MinLength, UpdateProfileDto, Injectable, Optional (+2 more) ### Community 12 - "index.ts" Cohesion: 0.06 @@ -393,13 +413,13 @@ Nodes (24): backend, frontend, playwright.config.ts, @playwright/test, tests/**/ Cohesion: 0.07 Nodes (26): EnvironmentVariables, IsNotEmpty, IsOptional, IsString, validateEnv(), CustomHttpExceptionFilter, Catch, PrismaExceptionFilter (+18 more) -### Community 14 - "toPersian" -Cohesion: 0.17 -Nodes (19): VerifyContent(), AddressFormData, AddressModal(), AddressModalProps, normalizeDigits(), validateAddressForm(), BackButton(), BackButtonProps (+11 more) +### Community 14 - "UserDashboard.tsx" +Cohesion: 0.14 +Nodes (23): AddressFormData, AddressModal(), AddressModalProps, normalizeDigits(), validateAddressForm(), BackButton(), BackButtonProps, CheckoutPage() (+15 more) ### Community 15 - "src/services/api.ts" Cohesion: 0.06 -Nodes (38): Layout(), ProtectedRoute(), MenuGroup, Sidebar(), SidebarProps, SubMenuItem, LiveMonitoringSummary, SEARCHABLE_PAGES (+30 more) +Nodes (36): Layout(), ProtectedRoute(), MenuGroup, Sidebar(), SidebarProps, SubMenuItem, LiveMonitoringSummary, SEARCHABLE_PAGES (+28 more) ### Community 16 - "DoctorQueryDto" Cohesion: 0.09 @@ -410,20 +430,20 @@ Cohesion: 0.14 Nodes (18): B2BPage(), generateMetadata(), ContactPage(), generateMetadata(), generateMetadata(), getInitialVideos(), Videos(), ContactFormClient() (+10 more) ### Community 18 - "JwtAuthGuard" -Cohesion: 0.10 -Nodes (19): JwtAuthGuard, Injectable, ROLES_KEY, RequestWithUser, RolesGuard, Injectable, ApiPropertyOptional, IsOptional (+11 more) +Cohesion: 0.21 +Nodes (6): JwtAuthGuard, Injectable, ROLES_KEY, RequestWithUser, RolesGuard, Injectable ### Community 19 - "admin.controller.ts" Cohesion: 0.29 Nodes (12): ApplyGlobalMarginsDto, BulkPriceAdjustmentDto, ApiProperty, ApiPropertyOptional, IsArray, IsBoolean, IsIn, IsNumber (+4 more) ### Community 20 - "CreateVideoDto" -Cohesion: 0.07 -Nodes (32): CreateVideoDto, ApiProperty, ApiPropertyOptional, IsBoolean, IsNotEmpty, IsOptional, IsString, UpdateVideoDto (+24 more) +Cohesion: 0.09 +Nodes (24): CreateVideoDto, ApiProperty, ApiPropertyOptional, IsBoolean, IsNotEmpty, IsOptional, IsString, UpdateVideoDto (+16 more) -### Community 21 - "auth.service.ts" -Cohesion: 0.14 -Nodes (13): AdminLoginInput, LoginInput, RegisterInput, LoginDto, ApiProperty, IsNotEmpty, IsString, MinLength (+5 more) +### Community 21 - "auth.module.ts" +Cohesion: 0.15 +Nodes (10): DEFAULT_JWT_REFRESH_SECRET, DEFAULT_JWT_SECRET, getJwtSecret(), AuthModule, Module, JwtPayload, JwtStrategy, Injectable (+2 more) ### Community 22 - "ProductDto" Cohesion: 0.16 @@ -467,23 +487,23 @@ Nodes (31): Acceptance Criteria, Affected Application, Affected Files, Alternati ### Community 32 - "adminRoutes.tsx" Cohesion: 0.07 -Nodes (16): App(), Props, RouteErrorBoundary, State, HeroBanner, VetTestimonial, SslStatus, AdminRouteConfig (+8 more) +Nodes (21): App(), ContactInfoItem, ContactSubmission, CategoryDist, DashboardData, SslStatus, Ticket, TicketMessage (+13 more) ### Community 33 - "WholesaleApplyDto" Cohesion: 0.10 Nodes (20): ApiProperty, ApiPropertyOptional, IsNotEmpty, IsOptional, IsString, WholesaleApplyDto, ApiBearerAuth, ApiOperation (+12 more) ### Community 34 - "B2BService" -Cohesion: 0.12 -Nodes (16): B2BController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Get, Param (+8 more) +Cohesion: 0.13 +Nodes (15): B2BController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Get, Param (+7 more) ### Community 35 - "ContactService" Cohesion: 0.13 Nodes (12): ContactController, Body, Controller, Get, Param, Post, Put, Query (+4 more) -### Community 36 - "FaqService" -Cohesion: 0.12 -Nodes (16): FaqController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+8 more) +### Community 36 - "FaqController" +Cohesion: 0.14 +Nodes (12): FaqController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+4 more) ### Community 37 - "راهنمای تست سیستم (Software Testing)" Cohesion: 0.07 @@ -499,7 +519,7 @@ Nodes (16): CategoriesController, ApiBearerAuth, ApiOperation, ApiQuery, ApiTags ### Community 40 - "MediaController" Cohesion: 0.11 -Nodes (16): MediaController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+8 more) +Nodes (14): MediaController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+6 more) ### Community 41 - "What You Must Do When Invoked" Cohesion: 0.07 @@ -530,7 +550,7 @@ Cohesion: 0.13 Nodes (14): IngredientsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+6 more) ### Community 48 - "AuthController" -Cohesion: 0.25 +Cohesion: 0.23 Nodes (13): AuthController, ApiBadRequestResponse, ApiBearerAuth, ApiOkResponse, ApiOperation, ApiTags, Body, Controller (+5 more) ### Community 49 - "devDependencies" @@ -539,23 +559,23 @@ Nodes (19): autoprefixer, devDependencies, autoprefixer, eslint, @eslint/js, glo ### Community 50 - "devDependencies" Cohesion: 0.12 -Nodes (17): devDependencies, eslint, jsdom, tailwindcss, @testing-library/jest-dom, @testing-library/react, @types/node, @types/react (+9 more) +Nodes (17): eslint-config-next, devDependencies, eslint, eslint-config-next, jsdom, @testing-library/jest-dom, @testing-library/react, @types/node (+9 more) ### Community 51 - "BlogsController" Cohesion: 0.07 Nodes (18): BlogsController, ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Body, Controller, Delete (+10 more) -### Community 52 - "PrescriptionsService" -Cohesion: 0.14 -Nodes (14): PrescriptionsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Get, Param (+6 more) +### Community 52 - "prescriptions.controller.ts" +Cohesion: 0.11 +Nodes (17): PrescriptionsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Get, Param (+9 more) ### Community 53 - "SmartAdvisorService" Cohesion: 0.13 Nodes (14): SmartAdvisorController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+6 more) ### Community 54 - "Button.tsx" -Cohesion: 0.07 -Nodes (24): ButtonProps, ButtonSize, ButtonVariant, maxWidthClasses, Modal(), ModalProps, ContactInfoItem, ContactSubmission (+16 more) +Cohesion: 0.10 +Nodes (16): ButtonProps, ButtonSize, ButtonVariant, ConfirmModal(), ConfirmModalProps, HeroBanner, VetTestimonial, FAQ (+8 more) ### Community 55 - "UITexts.tsx" Cohesion: 0.08 @@ -569,9 +589,9 @@ Nodes (15): Badge(), BadgeProps, BadgeVariant, variantStyles, Skeleton(), Monito Cohesion: 0.09 Nodes (22): CREATE MODE — Normal Operation, Expected JSON Output Schema, File Scope Boundary, Forbidden Actions, MODE 1: REVIEW (called during Review Phase), MODE 2: CONTENT CREATION (standalone task from backlog), Operating Modes, Operational Rules & Boundaries (+14 more) -### Community 58 - "AuthService" -Cohesion: 0.19 -Nodes (3): AuthService, Injectable, normalizeMobile() +### Community 58 - "auth.service.ts" +Cohesion: 0.09 +Nodes (17): AdminLoginInput, AuthService, LoginInput, RegisterInput, Injectable, SendOtpDto, ApiProperty, IsNotEmpty (+9 more) ### Community 59 - "compilerOptions" Cohesion: 0.06 @@ -582,16 +602,16 @@ Cohesion: 0.21 Nodes (10): CreateUserDto, ApiProperty, ApiPropertyOptional, IsEmail, IsNotEmpty, IsNumber, IsOptional, IsString (+2 more) ### Community 61 - "ProductPage.tsx" -Cohesion: 0.09 -Nodes (20): ProductImageZoomModalProps, CalculatorState, GalleryMediaItem, ICON_MAP, isVideoUrl(), ProductImageZoomModal, ProductPage(), ProductReviews (+12 more) +Cohesion: 0.18 +Nodes (21): ArchiveProductCard(), CATEGORY_MAP, ICON_MAP, FeaturedProducts(), ProductCard(), ProductImageZoomModalProps, CalculatorState, GalleryMediaItem (+13 more) ### Community 62 - "torob.controller.ts" Cohesion: 0.22 Nodes (8): buildTorobProductSpec(), buildTorobProductTitle(), TorobController, ApiOperation, ApiTags, Controller, Get, Query ### Community 63 - "dependencies" -Cohesion: 0.05 -Nodes (43): dependencies, bcrypt, bcryptjs, class-transformer, class-validator, compression, helmet, ioredis (+35 more) +Cohesion: 0.09 +Nodes (23): dependencies, bcryptjs, class-validator, compression, ioredis, @nestjs/common, @nestjs/passport, @nestjs/platform-express (+15 more) ### Community 64 - "compilerOptions" Cohesion: 0.10 @@ -606,12 +626,12 @@ Cohesion: 0.18 Nodes (7): ApiQuery, Query, AdminProductQueryDto, AdminQueryDto, ApiPropertyOptional, IsOptional, IsString ### Community 67 - "admin.module.ts" -Cohesion: 0.08 -Nodes (17): AdminModule, Module, ReportsController, ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Controller (+9 more) +Cohesion: 0.06 +Nodes (23): AdminModule, Module, CategoryQuery, MediaService, Injectable, PetQuery, PetsService, Injectable (+15 more) ### Community 68 - "useSettingsStore" -Cohesion: 0.08 -Nodes (36): HomeClient(), HomeClientProps, B2BLandingClient(), BlogPostClientProps, BlogPost, BlogPreviewSection(), ContactInfoItem, EnamadBadge() (+28 more) +Cohesion: 0.07 +Nodes (34): HomeClient(), HomeClientProps, ArchivePage(), B2BLandingClient(), BannerPlacement(), BannerPlacementProps, BrandLogo(), BrandLogoProps (+26 more) ### Community 69 - "Required Review Group Closures" Cohesion: 0.10 @@ -622,8 +642,8 @@ Cohesion: 0.08 Nodes (23): compilerOptions, allowImportingTsExtensions, erasableSyntaxOnly, jsx, lib, module, moduleDetection, moduleResolution (+15 more) ### Community 71 - "getPageMetadata" -Cohesion: 0.08 -Nodes (16): generateMetadata(), CatalogClient(), generateMetadata(), generateMetadata(), generateMetadata(), generateMetadata(), generateMetadata(), generateMetadata() (+8 more) +Cohesion: 0.09 +Nodes (15): generateMetadata(), CatalogClient(), generateMetadata(), generateMetadata(), generateMetadata(), generateMetadata(), generateMetadata(), generateMetadata() (+7 more) ### Community 72 - "Operational Rules & Boundaries" Cohesion: 0.11 @@ -677,9 +697,9 @@ Nodes (21): dependencies, axios, lucide-react, react, react-dom, react-hot-toast Cohesion: 0.12 Nodes (16): 1. Active Secret Scanning (All Modified Files), 2. Docker Container Verification (if Dockerfile exists), 3. CI/CD Basic Check (if `.github/workflows/` exists), 4. Failure Routing Protocol, 5. Forbidden Actions, ENFORCE MODE — Normal Operation, Expected JSON Output Schema, Operational Rules & Boundaries (+8 more) -### Community 85 - "RegisterDto" -Cohesion: 0.22 -Nodes (8): RegisterDto, ApiProperty, ApiPropertyOptional, IsEmail, IsNotEmpty, IsOptional, IsString, MinLength +### Community 85 - "auth.controller.ts" +Cohesion: 0.10 +Nodes (19): AdminLoginDto, ApiProperty, IsEmail, IsNotEmpty, IsString, MinLength, LoginDto, ApiProperty (+11 more) ### Community 86 - "zibal.service.ts" Cohesion: 0.16 @@ -697,21 +717,21 @@ Nodes (8): CreateEBankCheckoutDto, ApiProperty, ApiPropertyOptional, IsNotEmpty, Cohesion: 0.17 Nodes (12): prisma, main(), prisma, determineSuitableFor(), findOrCreateCategory(), getProductImageUrl(), main(), parseSize() (+4 more) -### Community 90 - "useCartStore" -Cohesion: 0.09 -Nodes (19): B2BPortal, CartDrawer, B2BPortal(), CartDrawer(), DeleteConfirmModal(), DeleteConfirmModalProps, OrderSuccess(), OrderTracking() (+11 more) +### Community 90 - "orderService.ts" +Cohesion: 0.18 +Nodes (5): ApiErr, Order, OrderItem, OrderService, mockProduct ### Community 91 - "Reconciled Audit Roles & Assignments" Cohesion: 0.12 Nodes (15): 10. Documentation Engineer, 1. Lead Architect / Orchestrator, 2. React / Vite Storefront Auditor, 3. NestJS Backend Auditor, 4. Admin Features Auditor, 5. Database & Data Integrity Auditor, 6. Security Auditor, 7. TypeScript & Code Quality Auditor (+7 more) ### Community 92 - "OrdersService" -Cohesion: 0.06 -Nodes (35): CreateOrderDto, OrderItemDto, ApiProperty, ApiPropertyOptional, IsArray, IsNotEmpty, IsNumber, IsOptional (+27 more) +Cohesion: 0.07 +Nodes (29): CreateOrderDto, OrderItemDto, ApiProperty, ApiPropertyOptional, IsArray, IsNotEmpty, IsNumber, IsOptional (+21 more) -### Community 93 - "ArchivePage.tsx" -Cohesion: 0.08 -Nodes (21): ArchivePage(), ArchiveProductCard(), CATEGORY_MAP, ICON_MAP, BannerPlacement(), BannerPlacementProps, OrderRowSkeleton(), PetProfileSkeleton() (+13 more) +### Community 93 - "components/Skeleton.tsx" +Cohesion: 0.24 +Nodes (4): OrderRowSkeleton(), PetProfileSkeleton(), Skeleton(), SkeletonProps ### Community 94 - "Phase 3.1 — Human Review Preparation and Master Backlog Critique" Cohesion: 0.13 @@ -725,6 +745,10 @@ Nodes (11): BlogPostPage(), generateMetadata(), getBlog(), revalidate, safeIso() Cohesion: 0.06 Nodes (32): compilerOptions, allowJs, esModuleInterop, incremental, isolatedModules, jsx, lib, module (+24 more) +### Community 97 - "PaymentService" +Cohesion: 0.10 +Nodes (9): AdminTransactionFilterDto, ApiPropertyOptional, IsIn, IsNumber, IsOptional, IsString, Type, PaymentService (+1 more) + ### Community 98 - "scripts" Cohesion: 0.13 Nodes (15): scripts, build, build:nest, docs:generate, lint, seo:backfill, start, start:debug (+7 more) @@ -750,8 +774,8 @@ Cohesion: 0.15 Nodes (12): 10. `TASK-VERIFY-001`, 1. `TASK-SEC-001`, 2. `TASK-SEC-002`, 3. `TASK-SEC-003`, 4. `TASK-FIN-001`, 5. `TASK-BUILD-001`, 6. `TASK-AUTH-001`, 7. `TASK-FE-001` (+4 more) ### Community 104 - "Products.tsx" -Cohesion: 0.09 -Nodes (25): Input, InputProps, formatPriceWithCommas(), PriceInput(), PriceInputProps, toEnglishDigits(), Coupon, CouponFormData (+17 more) +Cohesion: 0.10 +Nodes (24): Input, InputProps, formatPriceWithCommas(), PriceInput(), PriceInputProps, toEnglishDigits(), Coupon, CouponFormData (+16 more) ### Community 105 - "Operational Rules & Boundaries" Cohesion: 0.17 @@ -762,12 +786,12 @@ Cohesion: 0.43 Nodes (7): InitiatePaymentDto, InitiateWalletTopupDto, ApiProperty, ApiPropertyOptional, IsNotEmpty, IsOptional, IsString ### Community 107 - "PaginationDto" -Cohesion: 0.06 -Nodes (27): BlogsModule, Module, BlogFilterDto, BlogsService, Injectable, PaginationDto, SortOrder, ApiPropertyOptional (+19 more) +Cohesion: 0.05 +Nodes (32): BlogsModule, Module, BlogFilterDto, BlogsService, Injectable, PaginationDto, SortOrder, ApiPropertyOptional (+24 more) ### Community 108 - "PrismaService" -Cohesion: 0.07 -Nodes (23): CategoryQuery, DEFAULT_SMS_RULES, SMS_EVENT_DEFINITIONS, SmsEventVariable, SmsRule, MeliPayamakPattern, MeliPayamakResponse, SendPatternSmsOptions (+15 more) +Cohesion: 0.04 +Nodes (35): ApiExcludeController, Optional, B2BWholesaleOrderItem, MetricsController, Controller, Get, Res, RevalidationModule (+27 more) ### Community 109 - "1. Summary of Integrity Repairs Performed" Cohesion: 0.17 @@ -786,16 +810,16 @@ Cohesion: 0.18 Nodes (10): 1. Pre-Deployment Checklist, 2. Build Verification, 3. Deployment Strategy (Based on Target), 4. Post-Deployment Health Check, 5. Forbidden Actions, Expected JSON Output Schema, Operational Rules & Boundaries, Required Output Artifacts (What files to write/update) (+2 more) ### Community 113 - "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 114 - "AppService" Cohesion: 0.29 Nodes (5): AppController, Controller, Get, AppService, Injectable ### Community 115 - "Spinner.tsx" -Cohesion: 0.10 -Nodes (22): ImagePreviewModal(), ImagePreviewModalProps, getFileType(), Media, MediaSelector(), MediaSelectorProps, Spinner(), Doctor (+14 more) +Cohesion: 0.07 +Nodes (36): ImagePreviewModal(), ImagePreviewModalProps, getFileType(), Media, MediaSelector(), MediaSelectorProps, maxWidthClasses, Modal() (+28 more) ### Community 116 - "Vazirmatn Changelog" Cohesion: 0.18 @@ -825,9 +849,9 @@ Nodes (9): Compile and run the project, Deployment, Description, License, Projec Cohesion: 0.09 Nodes (12): AdminController, ApiBearerAuth, ApiOperation, ApiTags, Controller, Delete, Get, Param (+4 more) -### Community 123 - "UsersService" -Cohesion: 0.05 -Nodes (42): DEFAULT_JWT_REFRESH_SECRET, DEFAULT_JWT_SECRET, getJwtSecret(), AuthModule, Module, JwtPayload, JwtStrategy, Injectable (+34 more) +### Community 123 - "UsersController" +Cohesion: 0.21 +Nodes (16): ApiBadRequestResponse, ApiBearerAuth, ApiCreatedResponse, ApiOkResponse, ApiOperation, ApiTags, Body, Controller (+8 more) ### Community 124 - "Repository Map" Cohesion: 0.20 @@ -909,13 +933,13 @@ Nodes (7): backend, distMainPath, fs, http, path, { spawn, execSync }, waitForBa Cohesion: 0.25 Nodes (6): app_module_1, core_1, fs, path, swagger_1, yaml -### Community 144 - "PodcastPlayerModal.tsx" -Cohesion: 0.40 -Nodes (3): PLAYBACK_RATES, PodcastPlayerModal(), PodcastPlayerModalProps +### Community 144 - "lib/services/api.ts" +Cohesion: 0.08 +Nodes (24): B2BPortal(), BlogPostClientProps, BlogPost, BlogPreviewSection(), ContactInfoItem, OrderDetailsModal(), OrderDetailsModalProps, PLAYBACK_RATES (+16 more) -### Community 145 - "AdminLoginDto" -Cohesion: 0.29 -Nodes (6): AdminLoginDto, ApiProperty, IsEmail, IsNotEmpty, IsString, MinLength +### Community 145 - "orders.service.ts" +Cohesion: 0.24 +Nodes (6): IsNotEmpty, IsNumber, IsString, ValidateCouponDto, OrdersModule, Module ### Community 146 - "System Discovery" Cohesion: 0.25 @@ -925,9 +949,9 @@ Nodes (7): Active Core Applications, Current Architecture, Evidence-Based Status Cohesion: 0.16 Nodes (10): HomeController, ApiOkResponse, ApiOperation, ApiTags, Controller, Get, HomeModule, Module (+2 more) -### Community 148 - "VerifyOtpDto" -Cohesion: 0.33 -Nodes (6): ApiProperty, IsNotEmpty, IsString, Matches, VerifyOtpDto, Length +### Community 148 - "RouteErrorBoundary" +Cohesion: 0.22 +Nodes (3): Props, RouteErrorBoundary, State ### Community 149 - "wiki/[slug]/page.tsx" Cohesion: 0.60 @@ -937,9 +961,13 @@ Nodes (5): generateMetadata(), getRelatedProducts(), getWikiTerm(), WikiTermPage 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 152 - "RevalidationService" -Cohesion: 0.10 -Nodes (11): Optional, RevalidationModule, Global, Module, RevalidationService, Injectable, RedisModule, Global (+3 more) +### Community 151 - "AddressDto" +Cohesion: 0.25 +Nodes (7): AddressDto, ApiProperty, ApiPropertyOptional, IsBoolean, IsNotEmpty, IsOptional, IsString + +### Community 152 - "RedisService" +Cohesion: 0.11 +Nodes (7): AppModule, Module, RedisModule, Global, Module, RedisService, Injectable ### Community 153 - "exclude" Cohesion: 0.22 @@ -1057,9 +1085,13 @@ Nodes (3): Architectural Overview, Critical Review Findings & Required Enhanceme Cohesion: 0.50 Nodes (3): Overview & Content Foundation, SEO & Content Requirements, 🚀 SEO & Content Strategy Review (12_seo_content) -### Community 184 - "AppModule" -Cohesion: 0.12 -Nodes (7): ApiExcludeController, AppModule, Module, MetricsController, Controller, Get, Res +### Community 184 - "FaqService" +Cohesion: 0.33 +Nodes (4): FaqModule, Module, FaqService, Injectable + +### Community 185 - "Reviews.tsx" +Cohesion: 0.40 +Nodes (5): BlogCommentItem, ProductReview, Reviews(), toPersianDigits(), Reviews ### Community 191 - "graphify reference: add a URL and watch a folder" Cohesion: 0.50 @@ -1085,13 +1117,9 @@ Nodes (3): Expanding the ESLint configuration, React Compiler, React + TypeScrip Cohesion: 0.50 Nodes (3): Select, SelectOption, SelectProps -### Community 197 - "userStore.ts" -Cohesion: 0.06 -Nodes (33): AuthModal, ClientLayout(), LoginModal, AuthModal(), AuthModalProps, extractOtpFromText(), BrandLogo(), BrandLogoProps (+25 more) - -### Community 199 - "SmsLogQueryDto" -Cohesion: 0.25 -Nodes (7): SmsLogQueryDto, ApiPropertyOptional, IsIn, IsNumber, IsOptional, IsString, Type +### Community 197 - "ClientLayout.tsx" +Cohesion: 0.08 +Nodes (19): AuthModal, B2BPortal, CartDrawer, ClientLayout(), LoginModal, AuthModal(), AuthModalProps, extractOtpFromText() (+11 more) ### Community 200 - "application/README.md" Cohesion: 0.50 @@ -1110,8 +1138,8 @@ Cohesion: 0.67 Nodes (3): Shabnam Font README, Shabnam Font Sample, Vazir Font ### Community 298 - ".initiateOrderPayment" -Cohesion: 0.28 -Nodes (6): ApiBadRequestResponse, ApiOkResponse, Req, Res, Headers, Ip +Cohesion: 0.20 +Nodes (10): ApiPropertyOptional, IsOptional, IsString, ZibalCallbackQueryDto, ApiBadRequestResponse, ApiOkResponse, Req, Res (+2 more) ### Community 317 - "revalidate/route.ts" Cohesion: 0.83 @@ -1120,22 +1148,22 @@ Nodes (3): GET(), handleRevalidate(), POST() ## Knowledge Gaps - **1352 isolated node(s):** `$schema`, `collection`, `sourceRoot`, `deleteOutDir`, `name` (+1347 more) These have ≤1 connection - possible missing edges or undocumented components. -- **95 thin communities (<3 nodes) omitted from report** — run `graphify query` to explore isolated nodes. +- **113 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 `WholesaleApplyDto`, `B2BService`, `ContactService`, `FaqService`, `CmsController`, `tickets.controller.ts`, `SmsService`, `SslController`, `BannersService`, `ProductsService`, `ReviewsService`, `TestimonialsService`, `IngredientsService`, `JwtAuthGuard`, `PrescriptionsService`, `SmartAdvisorService`, `MenuService`?** +- **Why does `Roles()` connect `Roles` to `WholesaleApplyDto`, `B2BService`, `ContactService`, `FaqController`, `CmsController`, `tickets.controller.ts`, `SmsService`, `SslController`, `BannersService`, `ProductsService`, `reviews.controller.ts`, `TestimonialsService`, `IngredientsService`, `JwtAuthGuard`, `prescriptions.controller.ts`, `SmartAdvisorService`, `MenuService`?** _High betweenness centrality (0.094) - this node is a cross-community bridge._ -- **Why does `ApiResponse` connect `src/services/api.ts` to `BlogsController`, `PetsController`, `ProductsService`, `PaginationDto`, `AuthController`, `HomeController`, `UsersService`, `OrdersService`?** +- **Why does `ApiResponse` connect `src/services/api.ts` to `BlogsController`, `PetsController`, `ProductsService`, `PaginationDto`, `AuthController`, `HomeController`, `UsersController`, `OrdersService`?** _High betweenness centrality (0.066) - this node is a cross-community bridge._ -- **Why does `JwtAuthGuard` connect `JwtAuthGuard` to `admin.module.ts`, `CmsController`, `tickets.controller.ts`, `PaginationDto`, `PetsController`, `ProductsService`, `DoctorQueryDto`, `PetsController`, `admin.controller.ts`, `CreateVideoDto`, `auth.service.ts`, `UsersService`, `OrdersService`?** +- **Why does `JwtAuthGuard` connect `JwtAuthGuard` to `admin.module.ts`, `CmsController`, `tickets.controller.ts`, `reviews.controller.ts`, `PaginationDto`, `PetsController`, `ProductsService`, `UsersService`, `DoctorQueryDto`, `orders.service.ts`, `admin.controller.ts`, `prescriptions.controller.ts`, `auth.controller.ts`?** _High betweenness centrality (0.030) - this node is a cross-community bridge._ - **What connects `$schema`, `collection`, `sourceRoot` to the rest of the system?** _1352 weakly-connected nodes found - possible documentation gaps or missing edges._ - **Should `app.module.ts` be split into smaller, more focused modules?** - _Cohesion score 0.06988120195667366 - nodes in this community are weakly interconnected._ + _Cohesion score 0.07215686274509804 - nodes in this community are weakly interconnected._ +- **Should `getMediaUrl` be split into smaller, more focused modules?** + _Cohesion score 0.09848484848484848 - nodes in this community are weakly interconnected._ - **Should `productService.ts` be split into smaller, more focused modules?** - _Cohesion score 0.05472837022132797 - nodes in this community are weakly interconnected._ -- **Should `UserDashboard.tsx` be split into smaller, more focused modules?** - _Cohesion score 0.10752688172043011 - nodes in this community are weakly interconnected._ \ No newline at end of file + _Cohesion score 0.06654567453115548 - 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 8673c01..e6b0493 100644 --- a/graphify-out/cache/stat-index.json +++ b/graphify-out/cache/stat-index.json @@ -1 +1 @@ -{".agents/rules/graphify.md":{"size":933,"mtime_ns":1786870552830271100,"indexed_at_ns":1787726739808807000,"word_count":127,"hashes":{".agents/rules/graphify.md":"26f2577a68d808f7f33ec3e418b95b635aec180d93b22b975e9ae67c47e361c8"}},".agents/workflows/graphify.md":{"size":229,"mtime_ns":1786870552832398300,"indexed_at_ns":1787726739809809700,"word_count":37,"hashes":{".agents/workflows/graphify.md":"a81e2d017e0669c71099362b20854e4d9ed68753f1c240d0682120bdb9aa3c72"}},".ai_agency/AGENCY.md":{"size":8757,"mtime_ns":1785148021979607300,"indexed_at_ns":1787726739810808600,"word_count":1161,"hashes":{".ai_agency/agency.md":"88c7c13583a91fc7e41ce055fede9dce20f181e8d264557808989965e83a9030"}},".ai_agency/agents/00_intake.md":{"size":3819,"mtime_ns":1785148021984319000,"indexed_at_ns":1787726739811809900,"word_count":500,"hashes":{".ai_agency/agents/00_intake.md":"9dc8d7eeda0655717dc5b9d2f8572c47567b88ca88de7e4e5bf59869077ff407"}},".ai_agency/agents/01_auditor.md":{"size":3643,"mtime_ns":1785148021987782800,"indexed_at_ns":1787726739813809800,"word_count":467,"hashes":{".ai_agency/agents/01_auditor.md":"37ae09614034d9b5c855e0132b59a5e3cfd2fc38c54d1a5386fa43ba488c4d4d"}},".ai_agency/agents/02_ceo.md":{"size":2341,"mtime_ns":1785148021998374800,"indexed_at_ns":1787726739814809500,"word_count":294,"hashes":{".ai_agency/agents/02_ceo.md":"b4a76df6483fd52e1b9f1e70765b3f7b6d134dc003ef2ad0cb86b952c869c4a5"}},".ai_agency/agents/03_product_manager.md":{"size":8422,"mtime_ns":1785148022001968200,"indexed_at_ns":1787726739815810200,"word_count":1076,"hashes":{".ai_agency/agents/03_product_manager.md":"1927827474b1dd6fd4976af45b51f1ad3128fe3305c3af22639ab2584e8f0b55"}},".ai_agency/agents/04_architect.md":{"size":3603,"mtime_ns":1785148022004966000,"indexed_at_ns":1787726739816809500,"word_count":448,"hashes":{".ai_agency/agents/04_architect.md":"c96b04d5af093f455fa3c64ae177a69421e8150eb38c70bb8587b5a14e7d3ca8"}},".ai_agency/agents/05_dev_backend.md":{"size":7142,"mtime_ns":1785148022012481200,"indexed_at_ns":1787726739817810300,"word_count":953,"hashes":{".ai_agency/agents/05_dev_backend.md":"143a7c8a6fbedcd837d647efddb9f6b49074583502bd77f24c955bd86a6f3df8"}},".ai_agency/agents/06_dev_frontend.md":{"size":7518,"mtime_ns":1785148022017020100,"indexed_at_ns":1787726739819343800,"word_count":1011,"hashes":{".ai_agency/agents/06_dev_frontend.md":"e69679636d42dd626c7c76ddc96e1ddb656ab5b9ee912b89adcc7a9338f34a0b"}},".ai_agency/agents/07_qa_engineer.md":{"size":3764,"mtime_ns":1785148022020044600,"indexed_at_ns":1787726739820379800,"word_count":507,"hashes":{".ai_agency/agents/07_qa_engineer.md":"2616ef2b3ac39ded45fc669d5b5b140e72953fe61a819966fb040382e9b47d45"}},".ai_agency/agents/08_visual_qa.md":{"size":7910,"mtime_ns":1785148022030083200,"indexed_at_ns":1787726739821353800,"word_count":1121,"hashes":{".ai_agency/agents/08_visual_qa.md":"17a5a74039e8a9d7cb40c5bc3c616c7c92d53401efd92d0675d4bbe5e90572a8"}},".ai_agency/agents/09_devops_security.md":{"size":6825,"mtime_ns":1785148022034087400,"indexed_at_ns":1787726739822379900,"word_count":908,"hashes":{".ai_agency/agents/09_devops_security.md":"315bd3cee954ac3496da8db1b1718b75ab3822ec3a90f99bc77767ca99482edf"}},".ai_agency/agents/10_tech_writer.md":{"size":3119,"mtime_ns":1785148022037082600,"indexed_at_ns":1787726739824378500,"word_count":408,"hashes":{".ai_agency/agents/10_tech_writer.md":"3527b44265fec2472cc20ca4641667e1fa3d38cbc9b2fbf9a946ee1e531e9e37"}},".ai_agency/agents/11_deploy.md":{"size":3956,"mtime_ns":1785148022040602600,"indexed_at_ns":1787726739825379700,"word_count":537,"hashes":{".ai_agency/agents/11_deploy.md":"8169bc98b249cd83ba21551dea082f69dfa6deca5f5e4a7f2739a28746c143f9"}},".ai_agency/agents/12_seo_content.md":{"size":10963,"mtime_ns":1785148022048603900,"indexed_at_ns":1787726739826379900,"word_count":1539,"hashes":{".ai_agency/agents/12_seo_content.md":"2f50eb9db8bf1ad7bc23c7d8c3a4f167a2daafb73f095db9237c5bdb20e7a5f4"}},".ai_agency/memory/agent_outputs/README.txt":{"size":290,"mtime_ns":1785148022052150400,"indexed_at_ns":1787726728366347600,"word_count":34},".ai_agency/memory/backlog.json":{"size":10711,"mtime_ns":1785330750958890900,"indexed_at_ns":1787726739730126300,"word_count":981,"hashes":{".ai_agency/memory/backlog.json":"6bf3150a1877d03d03b368df21b84071381b1bb8cd03e3721fa9f8e6c38355be"}},".ai_agency/memory/scratchpad.md":{"size":1879,"mtime_ns":1785148022065114400,"indexed_at_ns":1787726739827380200,"word_count":249,"hashes":{".ai_agency/memory/scratchpad.md":"9d0f687cf8e95c6335f1efb070da8029878417c28117e3b89aa8536ad70a5b95"}},".ai_agency/memory/state.json":{"size":3654,"mtime_ns":1785330750963913800,"indexed_at_ns":1787726739754651600,"word_count":254,"hashes":{".ai_agency/memory/state.json":"1204676f8f295d89733888bb87936061b7a700df0cc936fbf08fd5269b534e8d"}},".ai_agency/orchestrate.py":{"size":6800,"mtime_ns":1785148022072662500,"indexed_at_ns":1787726739755649500,"word_count":644,"hashes":{".ai_agency/orchestrate.py":"90ec787fdd4c71f5203c56b6899aadcc26e6e0bad0cc576d2f982aa42eed42e1"}},".ai_agency/specs/api_contract.md":{"size":1515,"mtime_ns":1785148022077664900,"indexed_at_ns":1787726739828380100,"word_count":139,"hashes":{".ai_agency/specs/api_contract.md":"ea0911b6a5ad6a908ab707f7553f5f24712c1e198fd79255fa85e3249150e8b4"}},".ai_agency/specs/architecture_spec.md":{"size":790,"mtime_ns":1785148022082260900,"indexed_at_ns":1787726739829380100,"word_count":99,"hashes":{".ai_agency/specs/architecture_spec.md":"6269043f6a144e8ac86ff1db7e014075185e5675a4a0ee23e99e70d88253b8af"}},".ai_agency/specs/prd.md":{"size":724,"mtime_ns":1785148022087251600,"indexed_at_ns":1787726739830914500,"word_count":96,"hashes":{".ai_agency/specs/prd.md":"1c6d5a0ec8a709a2b3aed28225f5fe148ad2d75851d45699187678d055947b11"}},".ai_agency/specs/project_health.md":{"size":444,"mtime_ns":1785148022098314600,"indexed_at_ns":1787726739831950800,"word_count":65,"hashes":{".ai_agency/specs/project_health.md":"677c2f1d35c31d75d935766f154683e0483b08c696117ee612bee1528705c598"}},".ai_agency/specs/reviews/README.md":{"size":1029,"mtime_ns":1785148022105834900,"indexed_at_ns":1787726739832950700,"word_count":117,"hashes":{".ai_agency/specs/reviews/readme.md":"8ceb4cae1ad4c0f660557d827ced970cda8f7d020f8124b624b228174b1b65ab"}},".ai_agency/specs/reviews/backend_review.md":{"size":1430,"mtime_ns":1785148022110362400,"indexed_at_ns":1787726739834457300,"word_count":172,"hashes":{".ai_agency/specs/reviews/backend_review.md":"fca1f8d59c2eab255f7aba246b26731fe53f208e737ccf46035389591900a150"}},".ai_agency/specs/reviews/code_health_review.md":{"size":2193,"mtime_ns":1785148022114359700,"indexed_at_ns":1787726739835467400,"word_count":279,"hashes":{".ai_agency/specs/reviews/code_health_review.md":"532e04465e125183d6dd8f8af61bfc8735a514b3fbbc49069f5f0884155ed93f"}},".ai_agency/specs/reviews/frontend_review.md":{"size":1452,"mtime_ns":1785148022118486900,"indexed_at_ns":1787726739837467800,"word_count":183,"hashes":{".ai_agency/specs/reviews/frontend_review.md":"9f826c0267cad8bd5d342b1f908c927976d9be7da3f75b175331381ef8c8b680"}},".ai_agency/specs/reviews/security_review.md":{"size":874,"mtime_ns":1785148022121487200,"indexed_at_ns":1787726739838331800,"word_count":110,"hashes":{".ai_agency/specs/reviews/security_review.md":"51363e62e919d6772c2b3b9a1a3f3870a5892dae6d408217ed3fb475f72d3f0b"}},".ai_agency/specs/reviews/seo_content_review.md":{"size":1238,"mtime_ns":1785148022131533800,"indexed_at_ns":1787726739839755700,"word_count":156,"hashes":{".ai_agency/specs/reviews/seo_content_review.md":"bc8401649a86585b4061b3ec0f584910c54aad25bc9943392179bc070c07a434"}},".ai_agency/specs/reviews/ux_review.md":{"size":1131,"mtime_ns":1785148022136550700,"indexed_at_ns":1787726739840765700,"word_count":150,"hashes":{".ai_agency/specs/reviews/ux_review.md":"b8a52f324e36fcc2d046cc903a05903057098a67a397ae6442d6c825091f4513"}},".antigravity/instructions.md":{"size":226,"mtime_ns":1786870552833405800,"indexed_at_ns":1787726739842276100,"word_count":29,"hashes":{".antigravity/instructions.md":"8d8f5c1bbdbb7b8045e02b06a50e68d3fcfabfb2d65f8ac1cd86168dc8a8cc96"}},".antigravity/workflows/graphify.md":{"size":43292,"mtime_ns":1786870552837921500,"indexed_at_ns":1787726739843281500,"word_count":5442,"hashes":{".antigravity/workflows/graphify.md":"0c16b701a50d64f741f6de107c49584012a8dd7f5e922af9f79754540629e2fe"}},".claude/CLAUDE.md":{"size":226,"mtime_ns":1786870552838920200,"indexed_at_ns":1787726739845281600,"word_count":29,"hashes":{".claude/claude.md":"c6f7fc2f062904d246b700d446ba3ad03e77f41809b12eccfb5e090a11f4fad2"}},".claude/settings.json":{"size":479,"mtime_ns":1786870552841922800,"indexed_at_ns":1787726739757648600,"word_count":38,"hashes":{".claude/settings.json":"0aaafba2cbd7dd67f7d69fa2f01b747c9a72f56ee421a40825521f937caec82b"}},".claude/skills/graphify/SKILL.md":{"size":43292,"mtime_ns":1786870552845041000,"indexed_at_ns":1787726739846281500,"word_count":5442,"hashes":{".claude/skills/graphify/skill.md":"5b24d39cbbb662ea1cd672839f64b50823e1b7de9b113f542248eac38c70cdf1"}},".claude/skills/graphify/references/add-watch.md":{"size":2486,"mtime_ns":1786870552848102000,"indexed_at_ns":1787726739847281400,"word_count":366,"hashes":{".claude/skills/graphify/references/add-watch.md":"cb5e2f3284265c08c88c08f445b96958b13a9115c0afc0a33206c293d1b1c187"}},".claude/skills/graphify/references/exports.md":{"size":3362,"mtime_ns":1786870552849102100,"indexed_at_ns":1787726739848281300,"word_count":470,"hashes":{".claude/skills/graphify/references/exports.md":"7aa8b606e5c19334b6c9fe62a12fc30eb46c0320d1dbb5726cfda0becdd04a5a"}},".claude/skills/graphify/references/extraction-spec.md":{"size":7960,"mtime_ns":1786870552850101900,"indexed_at_ns":1787726739849713100,"word_count":1038,"hashes":{".claude/skills/graphify/references/extraction-spec.md":"9cf5d515d0d8584aeef36708df34f560078772a568ed599cac5ba20b089e563d"}},".claude/skills/graphify/references/github-and-merge.md":{"size":2177,"mtime_ns":1786870552853101000,"indexed_at_ns":1787726739850713300,"word_count":271,"hashes":{".claude/skills/graphify/references/github-and-merge.md":"609de4b1331ddb2f8c80e97aac0a5de782a373d6f5af858e10a731c20b35c0e2"}},".claude/skills/graphify/references/hooks.md":{"size":1267,"mtime_ns":1786870552855098700,"indexed_at_ns":1787726739852220900,"word_count":193,"hashes":{".claude/skills/graphify/references/hooks.md":"7c7827f2f29d6e2cb6cc6902558dac08380f60c414b4968f83e1bc4e61b3e268"}},".claude/skills/graphify/references/query.md":{"size":13456,"mtime_ns":1786870552857702900,"indexed_at_ns":1787726739853231100,"word_count":1763,"hashes":{".claude/skills/graphify/references/query.md":"54526cc3e2392922d344f14767f09037ef85fb7ec5cc7911b749b35bcb004fbf"}},".claude/skills/graphify/references/transcribe.md":{"size":3173,"mtime_ns":1786870552858710700,"indexed_at_ns":1787726739855230800,"word_count":418,"hashes":{".claude/skills/graphify/references/transcribe.md":"1d5afbaccf36e952e71082591edfc9e4fbd9946eb85b01855a1d0bd810b7623d"}},".claude/skills/graphify/references/update.md":{"size":10425,"mtime_ns":1786870552860709800,"indexed_at_ns":1787726739856230800,"word_count":1196,"hashes":{".claude/skills/graphify/references/update.md":"0249cd6ceae6effdfc7371b51d00c462f51d95700101dcedd36255bab1b4ce7a"}},".gemini/config/mcp_config.json":{"size":146,"mtime_ns":1787729527922392700,"indexed_at_ns":1787729937075859600,"word_count":15,"hashes":{".gemini/config/mcp_config.json":"5350ccca14cfd0cb47901b879636407765ead90ade58684cbe3bca634580cbd7"}},".gitea/scripts/with-vpn.sh":{"size":1794,"mtime_ns":1786799852126316200,"indexed_at_ns":1787726739759255200,"word_count":208,"hashes":{".gitea/scripts/with-vpn.sh":"9ec013d142e3cf5d7e5f09778fcb06b4b8ea7b394688f9f40b5e74298c76bcf0"}},".gitea/workflows/deploy.yml":{"size":993,"mtime_ns":1787078454762471500,"indexed_at_ns":1787726728591851200,"word_count":84},".gitea/workflows/e2e.yml":{"size":980,"mtime_ns":1787729527923391900,"indexed_at_ns":1787729927042405700,"word_count":98},".vscode/extensions.json":{"size":74,"mtime_ns":1787461919449307400,"indexed_at_ns":1787726739761255600,"word_count":6,"hashes":{".vscode/extensions.json":"57518c36999b5176c9e8617cf937f6e35b54ddd015305005d4611729d1d69177"}},"AGENTS.md":{"size":226,"mtime_ns":1786870552862708600,"indexed_at_ns":1787726739857230800,"word_count":29,"hashes":{"agents.md":"b664c2bb6d85e009d7495bcd9c3d52c419176473cd4e19362fd4256616076151"}},"BACKEND_INTEGRATION.md":{"size":15568,"mtime_ns":1786885876768825200,"indexed_at_ns":1787726728620874500,"word_count":1521},"CLAUDE.md":{"size":772,"mtime_ns":1786870552863710100,"indexed_at_ns":1787726739858230900,"word_count":106,"hashes":{"claude.md":"3612256e7473a2e5f67ef4778d4edeefb44794ef22bac5529bee9c87dc5d8f3d"}},"DATABASE_SCHEMA.md":{"size":15399,"mtime_ns":1786885876771342200,"indexed_at_ns":1787726728633463600,"word_count":1566},"README.md":{"size":13117,"mtime_ns":1786885876775371800,"indexed_at_ns":1787726728645776100,"word_count":1310},"backend/README.md":{"size":5028,"mtime_ns":1783764561601382400,"indexed_at_ns":1787726739859230700,"word_count":472,"hashes":{"backend/readme.md":"c3edfd26252566ef2ddee12c91a874b59e03a1656894d3db25209a0e4031010a"}},"backend/eslint.config.mjs":{"size":1649,"mtime_ns":1787073059105361700,"indexed_at_ns":1787726728676723300,"word_count":104},"backend/nest-cli.json":{"size":172,"mtime_ns":1787072106370561300,"indexed_at_ns":1787726739762253100,"word_count":13,"hashes":{"backend/nest-cli.json":"64fe2904203985aa0acb9b67d7ade489f2362ac8730283fb11d6a764d1cb3878"}},"backend/package.json":{"size":2903,"mtime_ns":1787644197137104200,"indexed_at_ns":1787726739763253000,"word_count":214,"hashes":{"backend/package.json":"164822617eb449e27d8e6a9ff13476f3b08fb3dcf5710289e85af9bf50ec39d5"}},"backend/prisma/migrations/20260526145407_init/migration.sql":{"size":8963,"mtime_ns":1783764561612007600,"indexed_at_ns":1787726739764254000,"word_count":936,"hashes":{"backend/prisma/migrations/20260526145407_init/migration.sql":"d6cc5e861e43bf82dcffe1ad7121fcbe9f74db7901cf204b5058da3132d3c1d2"}},"backend/prisma/migrations/20260526160916_add_ui_texts_and_scientific_terms/migration.sql":{"size":404,"mtime_ns":1783764561613425800,"indexed_at_ns":1787726739765254200,"word_count":48,"hashes":{"backend/prisma/migrations/20260526160916_add_ui_texts_and_scientific_terms/migration.sql":"c564f4aba35d32a733a5837c33664c68c8912277ad9645310f7e8116fbcba741"}},"backend/prisma/scientificTerms.ts":{"size":24298,"mtime_ns":1785325924634812500,"indexed_at_ns":1787726728717813800,"word_count":2294},"backend/prisma/seed-blogs.ts":{"size":6950,"mtime_ns":1786885876777374000,"indexed_at_ns":1787726728724742400,"word_count":620},"backend/prisma/seed-custom.ts":{"size":3836,"mtime_ns":1786799852144902000,"indexed_at_ns":1787726728731289500,"word_count":371},"backend/prisma/seed-home.ts":{"size":3870,"mtime_ns":1786885876779371100,"indexed_at_ns":1787726728738323600,"word_count":374},"backend/prisma/seed-products-data.json":{"size":59231,"mtime_ns":1788333723584557900,"indexed_at_ns":1788333819826304600,"word_count":5730,"hashes":{"backend/prisma/seed-products-data.json":"2c84695a0e1ce94406b8eb038936758a2dd27e22b5727051ea8d30749b4e9163"}},"backend/prisma/seed-products.ts":{"size":28268,"mtime_ns":1787127978219270600,"indexed_at_ns":1787726728749556400,"word_count":2063},"backend/prisma/seed-ui-texts.ts":{"size":9168,"mtime_ns":1787999006317919000,"indexed_at_ns":1787999341072321100,"word_count":758},"backend/prisma/seed-wiki.ts":{"size":24019,"mtime_ns":1786961195297596000,"indexed_at_ns":1787726728762216000,"word_count":2292},"backend/prisma/seed.ts":{"size":30480,"mtime_ns":1787127978225587600,"indexed_at_ns":1787726728769733300,"word_count":2636},"backend/prisma/tsconfig.json":{"size":194,"mtime_ns":1786961195300236300,"indexed_at_ns":1787726739768256500,"word_count":17,"hashes":{"backend/prisma/tsconfig.json":"0308b15b67bad714ff5f1b6b73f64ae46f98d5190cd6092abb1fb67885d67be1"}},"backend/prisma/tsconfig.seed.json":{"size":194,"mtime_ns":1786955870751259200,"indexed_at_ns":1787726739769256400,"word_count":17,"hashes":{"backend/prisma/tsconfig.seed.json":"e178d23a09563a7a9b348d905bc70322115514c78a7afcc5a53db7d18e511583"}},"backend/scripts/generate-openapi.d.ts":{"size":11,"mtime_ns":1786883225777483700,"indexed_at_ns":1787726728788027700,"word_count":2},"backend/scripts/generate-openapi.js":{"size":2965,"mtime_ns":1786883225779120000,"indexed_at_ns":1787726728794115400,"word_count":309},"backend/scripts/generate-openapi.ts":{"size":1421,"mtime_ns":1787729527925391800,"indexed_at_ns":1787729927210338500,"word_count":132},"backend/scripts/seo-backfill.ts":{"size":4551,"mtime_ns":1787729527925391800,"indexed_at_ns":1787729927215335400,"word_count":464},"backend/src/admin/admin.controller.spec.ts":{"size":593,"mtime_ns":1786799852157399700,"indexed_at_ns":1787726728816339600,"word_count":59},"backend/src/admin/admin.controller.ts":{"size":11107,"mtime_ns":1788607875323651200,"indexed_at_ns":1788608118401128100,"word_count":1076},"backend/src/admin/admin.module.ts":{"size":1420,"mtime_ns":1786877667005008400,"indexed_at_ns":1787726728829614400,"word_count":145},"backend/src/admin/admin.service.spec.ts":{"size":903,"mtime_ns":1787729523434852600,"indexed_at_ns":1787729927236681900,"word_count":89},"backend/src/admin/admin.service.ts":{"size":54945,"mtime_ns":1788607875323651200,"indexed_at_ns":1788608118417767100,"word_count":5207},"backend/src/admin/blogs.controller.ts":{"size":5204,"mtime_ns":1787579631758177800,"indexed_at_ns":1787726728849039400,"word_count":532},"backend/src/admin/blogs.service.ts":{"size":9542,"mtime_ns":1787579631760177700,"indexed_at_ns":1787726728855138400,"word_count":1070},"backend/src/admin/categories.controller.ts":{"size":2187,"mtime_ns":1786799852174192500,"indexed_at_ns":1787726728862149600,"word_count":204},"backend/src/admin/categories.service.ts":{"size":2005,"mtime_ns":1786799852175194300,"indexed_at_ns":1787726728869148700,"word_count":223},"backend/src/admin/dto/admin-query.dto.ts":{"size":975,"mtime_ns":1788332757638029400,"indexed_at_ns":1788333107621968800,"word_count":89},"backend/src/admin/dto/product.dto.ts":{"size":9859,"mtime_ns":1788607875323651200,"indexed_at_ns":1788608118456743700,"word_count":808},"backend/src/admin/dto/user.dto.ts":{"size":2839,"mtime_ns":1787072106381989700,"indexed_at_ns":1787726728889404100,"word_count":259},"backend/src/admin/media.controller.ts":{"size":2339,"mtime_ns":1786876983648866300,"indexed_at_ns":1787726728895408700,"word_count":226},"backend/src/admin/media.service.ts":{"size":3596,"mtime_ns":1787748438701533500,"indexed_at_ns":1787748507167881200,"word_count":373},"backend/src/admin/pets.controller.ts":{"size":1195,"mtime_ns":1786799852186217200,"indexed_at_ns":1787726728908565800,"word_count":117},"backend/src/admin/pets.service.ts":{"size":1731,"mtime_ns":1786954681814243000,"indexed_at_ns":1787726728915489100,"word_count":193},"backend/src/admin/reports.controller.ts":{"size":1079,"mtime_ns":1787729523434852600,"indexed_at_ns":1787729927304516400,"word_count":107},"backend/src/admin/reports.service.ts":{"size":6497,"mtime_ns":1787729523434852600,"indexed_at_ns":1787729927310486400,"word_count":729},"backend/src/admin/ssl.controller.ts":{"size":3371,"mtime_ns":1787072106382979000,"indexed_at_ns":1787726728933458100,"word_count":296},"backend/src/admin/ssl.service.ts":{"size":6502,"mtime_ns":1787072106383978900,"indexed_at_ns":1787726728940536700,"word_count":612},"backend/src/admin/wiki.controller.ts":{"size":1814,"mtime_ns":1786799852191732300,"indexed_at_ns":1787726728947315900,"word_count":179},"backend/src/admin/wiki.service.ts":{"size":1767,"mtime_ns":1786799852193324200,"indexed_at_ns":1787726728953886100,"word_count":195},"backend/src/app.controller.spec.ts":{"size":617,"mtime_ns":1783764561644839700,"indexed_at_ns":1787726728959886100,"word_count":61},"backend/src/app.controller.ts":{"size":274,"mtime_ns":1783764561645849100,"indexed_at_ns":1787726728965475600,"word_count":31},"backend/src/app.module.ts":{"size":4052,"mtime_ns":1787579631764695400,"indexed_at_ns":1787726728971183900,"word_count":382},"backend/src/app.service.ts":{"size":142,"mtime_ns":1783764561648840500,"indexed_at_ns":1787726728977275800,"word_count":19},"backend/src/auth/auth.constants.ts":{"size":456,"mtime_ns":1787072106385980100,"indexed_at_ns":1787726728983890000,"word_count":32},"backend/src/auth/auth.controller.spec.ts":{"size":1528,"mtime_ns":1785327951179468000,"indexed_at_ns":1787726728988890000,"word_count":149},"backend/src/auth/auth.controller.ts":{"size":4304,"mtime_ns":1787645037368025500,"indexed_at_ns":1787726728996333500,"word_count":410},"backend/src/auth/auth.module.ts":{"size":724,"mtime_ns":1787072106388501600,"indexed_at_ns":1787726729002365400,"word_count":80},"backend/src/auth/auth.service.spec.ts":{"size":4306,"mtime_ns":1787729523436876800,"indexed_at_ns":1787729927377157300,"word_count":381},"backend/src/auth/auth.service.ts":{"size":9713,"mtime_ns":1787127978228589700,"indexed_at_ns":1787726729014017400,"word_count":933},"backend/src/auth/dto/admin-login.dto.ts":{"size":766,"mtime_ns":1787127978229587400,"indexed_at_ns":1787726729021017300,"word_count":82},"backend/src/auth/dto/login.dto.ts":{"size":587,"mtime_ns":1783764561659109000,"indexed_at_ns":1787726729027109900,"word_count":63},"backend/src/auth/dto/register.dto.ts":{"size":1197,"mtime_ns":1785327951186476900,"indexed_at_ns":1787726729033385300,"word_count":115},"backend/src/auth/dto/send-otp.dto.ts":{"size":374,"mtime_ns":1783764561661106500,"indexed_at_ns":1787726729039417400,"word_count":39},"backend/src/auth/dto/verify-otp.dto.ts":{"size":594,"mtime_ns":1783764561662112100,"indexed_at_ns":1787726729045971800,"word_count":64},"backend/src/auth/jwt-auth.guard.ts":{"size":494,"mtime_ns":1786799852205862700,"indexed_at_ns":1787726729051550300,"word_count":58},"backend/src/auth/jwt.strategy.ts":{"size":1122,"mtime_ns":1786883225794343300,"indexed_at_ns":1787726729058027000,"word_count":116},"backend/src/auth/roles.decorator.ts":{"size":54,"mtime_ns":1786799852208379600,"indexed_at_ns":1787726729064059300,"word_count":4},"backend/src/auth/roles.guard.ts":{"size":46,"mtime_ns":1786799852209003400,"indexed_at_ns":1787726729070031800,"word_count":4},"backend/src/b2b/b2b.controller.ts":{"size":2782,"mtime_ns":1787645037369065300,"indexed_at_ns":1787726729075540200,"word_count":261},"backend/src/b2b/b2b.module.ts":{"size":342,"mtime_ns":1786799852212013200,"indexed_at_ns":1787726729082375900,"word_count":38},"backend/src/b2b/b2b.service.ts":{"size":2379,"mtime_ns":1786799852214009300,"indexed_at_ns":1787726729088349500,"word_count":243},"backend/src/banners/banners.controller.ts":{"size":1923,"mtime_ns":1786799852215010200,"indexed_at_ns":1787726729094382800,"word_count":169},"backend/src/banners/banners.module.ts":{"size":374,"mtime_ns":1786799852216010300,"indexed_at_ns":1787726729099954900,"word_count":38},"backend/src/banners/banners.service.ts":{"size":1394,"mtime_ns":1786799852216010300,"indexed_at_ns":1787726729105481900,"word_count":160},"backend/src/blogs/blogs.controller.ts":{"size":2794,"mtime_ns":1788334048803235500,"indexed_at_ns":1788334713518424700,"word_count":247},"backend/src/blogs/blogs.module.ts":{"size":248,"mtime_ns":1783764561665678100,"indexed_at_ns":1787726729117858700,"word_count":28},"backend/src/blogs/blogs.service.ts":{"size":10448,"mtime_ns":1788334048804373300,"indexed_at_ns":1788334713528538100,"word_count":1157},"backend/src/blogs/dto/create-blog.dto.ts":{"size":30,"mtime_ns":1783764561671557000,"indexed_at_ns":1787726729130858800,"word_count":4},"backend/src/blogs/dto/update-blog.dto.ts":{"size":164,"mtime_ns":1783764561673712400,"indexed_at_ns":1787726729137866600,"word_count":18},"backend/src/blogs/entities/blog.entity.ts":{"size":21,"mtime_ns":1783764561675101100,"indexed_at_ns":1787726729143865200,"word_count":4},"backend/src/cms/cms.controller.ts":{"size":3521,"mtime_ns":1785327951196913100,"indexed_at_ns":1787726729149268700,"word_count":280},"backend/src/cms/cms.module.ts":{"size":342,"mtime_ns":1785148022206298000,"indexed_at_ns":1787726729156414600,"word_count":38},"backend/src/cms/cms.service.ts":{"size":2501,"mtime_ns":1785327951197940400,"indexed_at_ns":1787726729162441900,"word_count":256},"backend/src/cms/dto/cms.dto.ts":{"size":2357,"mtime_ns":1785327951199995500,"indexed_at_ns":1787726729169380900,"word_count":203},"backend/src/common/decorators/roles.decorator.ts":{"size":157,"mtime_ns":1786799852220522400,"indexed_at_ns":1787726729174954700,"word_count":20},"backend/src/common/dto/pagination.dto.ts":{"size":1188,"mtime_ns":1785327951201988900,"indexed_at_ns":1787726729180990600,"word_count":121},"backend/src/common/env.validation.ts":{"size":1162,"mtime_ns":1787645037370646800,"indexed_at_ns":1787726729187990800,"word_count":109},"backend/src/common/filters/http-exception.filter.ts":{"size":4993,"mtime_ns":1787645037371739300,"indexed_at_ns":1787726729194260200,"word_count":500},"backend/src/common/filters/prisma-exception.filter.ts":{"size":2862,"mtime_ns":1787645037372254700,"indexed_at_ns":1787726729201199300,"word_count":280},"backend/src/common/guards/roles.guard.spec.ts":{"size":2426,"mtime_ns":1786799852225556800,"indexed_at_ns":1787726729208239500,"word_count":223},"backend/src/common/guards/roles.guard.ts":{"size":1285,"mtime_ns":1786799852226565200,"indexed_at_ns":1787726729214246900,"word_count":120},"backend/src/common/interceptors/decimal.interceptor.spec.ts":{"size":1677,"mtime_ns":1786799852227565700,"indexed_at_ns":1787726729220254800,"word_count":164},"backend/src/common/interceptors/decimal.interceptor.ts":{"size":1094,"mtime_ns":1786799852227565700,"indexed_at_ns":1787726729226825500,"word_count":118},"backend/src/common/metrics.controller.ts":{"size":2093,"mtime_ns":1786799852229073100,"indexed_at_ns":1787726729232447400,"word_count":206},"backend/src/common/revalidation/revalidation.module.ts":{"size":240,"mtime_ns":1787579631769582300,"indexed_at_ns":1787726729239087900,"word_count":24},"backend/src/common/revalidation/revalidation.service.ts":{"size":3410,"mtime_ns":1787579631770587500,"indexed_at_ns":1787726729246057400,"word_count":272},"backend/src/common/schemas/error-response.schema.ts":{"size":1680,"mtime_ns":1785330913144701500,"indexed_at_ns":1787726729252104800,"word_count":162},"backend/src/common/schemas/paginated-response.schema.ts":{"size":1108,"mtime_ns":1786799852230082200,"indexed_at_ns":1787726729258104400,"word_count":110},"backend/src/common/services/sms.service.ts":{"size":43530,"mtime_ns":1788607875323651200,"indexed_at_ns":1788608118799823200,"word_count":4091},"backend/src/common/sms.module.ts":{"size":204,"mtime_ns":1785330750996125100,"indexed_at_ns":1787726729274176800,"word_count":24},"backend/src/common/utils/phone.utils.ts":{"size":1089,"mtime_ns":1786883225801396000,"indexed_at_ns":1787726729280624000,"word_count":149},"backend/src/contact/contact.controller.ts":{"size":2088,"mtime_ns":1787645037373264000,"indexed_at_ns":1787726729286660600,"word_count":192},"backend/src/contact/contact.module.ts":{"size":365,"mtime_ns":1786799852236599000,"indexed_at_ns":1787726729292806800,"word_count":38},"backend/src/contact/contact.service.ts":{"size":4445,"mtime_ns":1788584193706148400,"indexed_at_ns":1788608118832554900,"word_count":432},"backend/src/doctors/doctors.controller.ts":{"size":1583,"mtime_ns":1787148092311692900,"indexed_at_ns":1787726729304627000,"word_count":148},"backend/src/doctors/doctors.module.ts":{"size":374,"mtime_ns":1786971396035575100,"indexed_at_ns":1787726729310709500,"word_count":38},"backend/src/doctors/doctors.service.ts":{"size":2336,"mtime_ns":1787148092312693100,"indexed_at_ns":1787726729316710800,"word_count":266},"backend/src/doctors/dto/doctor-query.dto.ts":{"size":1009,"mtime_ns":1787148092314699500,"indexed_at_ns":1787726729323711800,"word_count":116},"backend/src/faq/faq.controller.ts":{"size":2210,"mtime_ns":1787148092316694700,"indexed_at_ns":1787726729329710800,"word_count":199},"backend/src/faq/faq.module.ts":{"size":234,"mtime_ns":1787148092316694700,"indexed_at_ns":1787726729335913700,"word_count":28},"backend/src/faq/faq.service.ts":{"size":1541,"mtime_ns":1787148092319911700,"indexed_at_ns":1787726729341879200,"word_count":184},"backend/src/home/dto/create-home.dto.ts":{"size":30,"mtime_ns":1783764561682365300,"indexed_at_ns":1787726729348678200,"word_count":4},"backend/src/home/dto/update-home.dto.ts":{"size":164,"mtime_ns":1783764561682365300,"indexed_at_ns":1787726729354360200,"word_count":18},"backend/src/home/entities/home.entity.ts":{"size":21,"mtime_ns":1783764561684884800,"indexed_at_ns":1787726729360332100,"word_count":4},"backend/src/home/home.controller.ts":{"size":757,"mtime_ns":1785327951212087300,"indexed_at_ns":1787726729365692000,"word_count":69},"backend/src/home/home.module.ts":{"size":241,"mtime_ns":1783764561687108000,"indexed_at_ns":1787726729372815400,"word_count":28},"backend/src/home/home.service.ts":{"size":1372,"mtime_ns":1785327951214087300,"indexed_at_ns":1787726729378370200,"word_count":144},"backend/src/ingredients/ingredients.controller.ts":{"size":1952,"mtime_ns":1786799852237596500,"indexed_at_ns":1787726729384776300,"word_count":165},"backend/src/ingredients/ingredients.module.ts":{"size":406,"mtime_ns":1786799852238596500,"indexed_at_ns":1787726729391513400,"word_count":38},"backend/src/ingredients/ingredients.service.ts":{"size":1526,"mtime_ns":1786799852240108300,"indexed_at_ns":1787726729397517700,"word_count":162},"backend/src/main.ts":{"size":4119,"mtime_ns":1787999006319547500,"indexed_at_ns":1787999341613980900,"word_count":362},"backend/src/menu/menu.controller.ts":{"size":2920,"mtime_ns":1787564348681948800,"indexed_at_ns":1787726729410971900,"word_count":265},"backend/src/menu/menu.module.ts":{"size":267,"mtime_ns":1787148092323869500,"indexed_at_ns":1787726729418641500,"word_count":30},"backend/src/menu/menu.service.ts":{"size":7799,"mtime_ns":1787564362262172600,"indexed_at_ns":1787726729424116700,"word_count":799},"backend/src/orders/dto/create-order.dto.ts":{"size":1899,"mtime_ns":1785327951218626100,"indexed_at_ns":1787726729430534500,"word_count":162},"backend/src/orders/orders.controller.spec.ts":{"size":1910,"mtime_ns":1785327951219627700,"indexed_at_ns":1787726729437590400,"word_count":194},"backend/src/orders/orders.controller.ts":{"size":5930,"mtime_ns":1787072106398077200,"indexed_at_ns":1787726729444156500,"word_count":517},"backend/src/orders/orders.module.ts":{"size":255,"mtime_ns":1783764561697598200,"indexed_at_ns":1787726729449863600,"word_count":28},"backend/src/orders/orders.service.spec.ts":{"size":5121,"mtime_ns":1787729523436876800,"indexed_at_ns":1787729927751553500,"word_count":493},"backend/src/orders/orders.service.ts":{"size":21538,"mtime_ns":1788607875323651200,"indexed_at_ns":1788608118972234200,"word_count":2046},"backend/src/payment/dto/admin-transaction-filter.dto.ts":{"size":2060,"mtime_ns":1787072106401590500,"indexed_at_ns":1787726729467565100,"word_count":191},"backend/src/payment/dto/ebank-checkout.dto.ts":{"size":1378,"mtime_ns":1787394001603461200,"indexed_at_ns":1787726729473467400,"word_count":118},"backend/src/payment/dto/initiate-payment.dto.ts":{"size":775,"mtime_ns":1786870552874246400,"indexed_at_ns":1787726729479997200,"word_count":69},"backend/src/payment/dto/verify-payment.dto.ts":{"size":1421,"mtime_ns":1786894580126857900,"indexed_at_ns":1787726729487007600,"word_count":126},"backend/src/payment/interfaces/payment-gateway.interface.ts":{"size":1330,"mtime_ns":1786870552876751100,"indexed_at_ns":1787726729493007700,"word_count":128},"backend/src/payment/payment.controller.ts":{"size":19204,"mtime_ns":1788606564779886000,"indexed_at_ns":1788608119005116100,"word_count":1576},"backend/src/payment/payment.module.ts":{"size":608,"mtime_ns":1787394001605617900,"indexed_at_ns":1787726729505386600,"word_count":61},"backend/src/payment/payment.service.ts":{"size":40259,"mtime_ns":1788607875323651200,"indexed_at_ns":1788608119016669600,"word_count":3576},"backend/src/payment/zibal-ebank.service.ts":{"size":10087,"mtime_ns":1787461919452306600,"indexed_at_ns":1787726729518640700,"word_count":1006},"backend/src/payment/zibal.service.ts":{"size":25781,"mtime_ns":1787461919453309100,"indexed_at_ns":1787726729525641200,"word_count":2490},"backend/src/pets/dto/create-health-log.dto.ts":{"size":761,"mtime_ns":1785327951229443300,"indexed_at_ns":1787726729532595600,"word_count":69},"backend/src/pets/dto/create-pet.dto.ts":{"size":1143,"mtime_ns":1785327951230948800,"indexed_at_ns":1787726729539689500,"word_count":104},"backend/src/pets/dto/create-reminder.dto.ts":{"size":810,"mtime_ns":1785327951231958200,"indexed_at_ns":1787726729545689700,"word_count":71},"backend/src/pets/dto/update-pet.dto.ts":{"size":160,"mtime_ns":1783764561709557500,"indexed_at_ns":1787726729551201600,"word_count":18},"backend/src/pets/pets.controller.spec.ts":{"size":2544,"mtime_ns":1786799852248118800,"indexed_at_ns":1787726729556953000,"word_count":269},"backend/src/pets/pets.controller.ts":{"size":8427,"mtime_ns":1787461919454308900,"indexed_at_ns":1787726729563595800,"word_count":781},"backend/src/pets/pets.module.ts":{"size":241,"mtime_ns":1783764561714469800,"indexed_at_ns":1787726729570135400,"word_count":28},"backend/src/pets/pets.service.spec.ts":{"size":2961,"mtime_ns":1785327951238208000,"indexed_at_ns":1787726729576202600,"word_count":272},"backend/src/pets/pets.service.ts":{"size":6978,"mtime_ns":1786799852250117400,"indexed_at_ns":1787726729581853500,"word_count":710},"backend/src/prescriptions/prescriptions.controller.ts":{"size":2356,"mtime_ns":1786799852253748300,"indexed_at_ns":1787726729589105100,"word_count":232},"backend/src/prescriptions/prescriptions.module.ts":{"size":495,"mtime_ns":1786954681815809200,"indexed_at_ns":1787726729595362900,"word_count":45},"backend/src/prescriptions/prescriptions.service.ts":{"size":4666,"mtime_ns":1787072106408779000,"indexed_at_ns":1787726729601839800,"word_count":498},"backend/src/prisma/prisma.module.ts":{"size":210,"mtime_ns":1783764561718199800,"indexed_at_ns":1787726729608494400,"word_count":24},"backend/src/prisma/prisma.service.ts":{"size":4250,"mtime_ns":1787640806107781000,"indexed_at_ns":1787726729614499200,"word_count":425},"backend/src/products/dto/get-products.dto.ts":{"size":1320,"mtime_ns":1786799852260271600,"indexed_at_ns":1787726729621151100,"word_count":115},"backend/src/products/products.controller.spec.ts":{"size":1863,"mtime_ns":1785327951243280800,"indexed_at_ns":1787726729629866100,"word_count":166},"backend/src/products/products.controller.ts":{"size":2445,"mtime_ns":1786799852261281700,"indexed_at_ns":1787726729636530800,"word_count":209},"backend/src/products/products.module.ts":{"size":340,"mtime_ns":1787999968301264900,"indexed_at_ns":1788000007911577500,"word_count":35},"backend/src/products/products.service.spec.ts":{"size":1860,"mtime_ns":1787729523438446200,"indexed_at_ns":1787729927908082400,"word_count":175},"backend/src/products/products.service.ts":{"size":7842,"mtime_ns":1788334048805380100,"indexed_at_ns":1788334713972877000,"word_count":807},"backend/src/redis/redis.module.ts":{"size":205,"mtime_ns":1783764561727662100,"indexed_at_ns":1787726729660667100,"word_count":24},"backend/src/redis/redis.service.spec.ts":{"size":1525,"mtime_ns":1783764561728672300,"indexed_at_ns":1787726729667111900,"word_count":145},"backend/src/redis/redis.service.ts":{"size":1202,"mtime_ns":1786895436211834600,"indexed_at_ns":1787726729673119800,"word_count":132},"backend/src/reviews/dto/create-review.dto.ts":{"size":949,"mtime_ns":1787072106414306300,"indexed_at_ns":1787726729680066000,"word_count":92},"backend/src/reviews/dto/update-review.dto.ts":{"size":534,"mtime_ns":1787072106415805700,"indexed_at_ns":1787726729686118000,"word_count":53},"backend/src/reviews/reviews.controller.ts":{"size":3318,"mtime_ns":1787645037375268800,"indexed_at_ns":1787726729692109200,"word_count":329},"backend/src/reviews/reviews.module.ts":{"size":374,"mtime_ns":1786944769517310800,"indexed_at_ns":1787726729699837600,"word_count":38},"backend/src/reviews/reviews.service.ts":{"size":7013,"mtime_ns":1787579631775586600,"indexed_at_ns":1787726729706361600,"word_count":742},"backend/src/seo/seo.controller.ts":{"size":904,"mtime_ns":1785327951247283200,"indexed_at_ns":1787726729713027000,"word_count":85},"backend/src/seo/seo.module.ts":{"size":342,"mtime_ns":1785148022268580900,"indexed_at_ns":1787726729720026400,"word_count":38},"backend/src/seo/seo.service.ts":{"size":2023,"mtime_ns":1787127978249385200,"indexed_at_ns":1787726729726026200,"word_count":182},"backend/src/settings/default-ui-texts.ts":{"size":19254,"mtime_ns":1787999006320546900,"indexed_at_ns":1787999341882239600,"word_count":1538},"backend/src/settings/dto/sms-log-query.dto.ts":{"size":1343,"mtime_ns":1787072106421339300,"indexed_at_ns":1787726729739063400,"word_count":125},"backend/src/settings/settings.controller.spec.ts":{"size":2855,"mtime_ns":1787729523438446200,"indexed_at_ns":1787729927987436700,"word_count":239},"backend/src/settings/settings.controller.ts":{"size":9726,"mtime_ns":1788607875323651200,"indexed_at_ns":1788608119219837300,"word_count":762},"backend/src/settings/settings.module.ts":{"size":382,"mtime_ns":1783764561735515700,"indexed_at_ns":1787726729758697700,"word_count":38},"backend/src/settings/settings.service.spec.ts":{"size":3028,"mtime_ns":1787729523439452400,"indexed_at_ns":1787729928002596300,"word_count":279},"backend/src/settings/settings.service.ts":{"size":23005,"mtime_ns":1788607882232596300,"indexed_at_ns":1788608119236075200,"word_count":1766},"backend/src/smart-advisor/smart-advisor.controller.ts":{"size":1821,"mtime_ns":1786799852275441500,"indexed_at_ns":1787726729775867900,"word_count":152},"backend/src/smart-advisor/smart-advisor.module.ts":{"size":416,"mtime_ns":1786799852276441700,"indexed_at_ns":1787726729782878800,"word_count":38},"backend/src/smart-advisor/smart-advisor.service.ts":{"size":1241,"mtime_ns":1786799852277440400,"indexed_at_ns":1787726729788878100,"word_count":131},"backend/src/testimonials/testimonials.controller.ts":{"size":1905,"mtime_ns":1787148092329786500,"indexed_at_ns":1787726729795446100,"word_count":160},"backend/src/testimonials/testimonials.module.ts":{"size":414,"mtime_ns":1786799852279441800,"indexed_at_ns":1787726729801924900,"word_count":38},"backend/src/testimonials/testimonials.service.ts":{"size":1268,"mtime_ns":1787148092332501600,"indexed_at_ns":1787726729810241500,"word_count":140},"backend/src/tickets/dto/create-ticket.dto.ts":{"size":2374,"mtime_ns":1787072106430874900,"indexed_at_ns":1787726729816278100,"word_count":201},"backend/src/tickets/dto/ticket-query.dto.ts":{"size":1103,"mtime_ns":1787072106431871400,"indexed_at_ns":1787726729824281400,"word_count":106},"backend/src/tickets/tickets.controller.ts":{"size":3114,"mtime_ns":1787072106433878000,"indexed_at_ns":1787726729829734800,"word_count":293},"backend/src/tickets/tickets.module.ts":{"size":374,"mtime_ns":1786890779322296800,"indexed_at_ns":1787726729836741100,"word_count":38},"backend/src/tickets/tickets.service.ts":{"size":7310,"mtime_ns":1787072106434874300,"indexed_at_ns":1787726729844342200,"word_count":781},"backend/src/users/dto/address.dto.ts":{"size":1098,"mtime_ns":1783764561739871500,"indexed_at_ns":1787726729851866000,"word_count":99},"backend/src/users/dto/update-profile.dto.ts":{"size":1068,"mtime_ns":1786885876805472100,"indexed_at_ns":1787726729858986800,"word_count":98},"backend/src/users/users.controller.spec.ts":{"size":3333,"mtime_ns":1785327951253796500,"indexed_at_ns":1787726729865019600,"word_count":322},"backend/src/users/users.controller.ts":{"size":6854,"mtime_ns":1786799852282481500,"indexed_at_ns":1787726729871026300,"word_count":590},"backend/src/users/users.module.ts":{"size":275,"mtime_ns":1783764561748154400,"indexed_at_ns":1787726729878590100,"word_count":30},"backend/src/users/users.service.spec.ts":{"size":3844,"mtime_ns":1787729523440453600,"indexed_at_ns":1787729928098956400,"word_count":320},"backend/src/users/users.service.ts":{"size":9199,"mtime_ns":1788607875323651200,"indexed_at_ns":1788608119331743100,"word_count":861},"backend/src/videos/dto/create-video.dto.ts":{"size":1573,"mtime_ns":1786971396042093900,"indexed_at_ns":1787726729895417800,"word_count":127},"backend/src/videos/dto/get-videos-query.dto.ts":{"size":643,"mtime_ns":1786799852287643500,"indexed_at_ns":1787726729903314300,"word_count":77},"backend/src/videos/videos.controller.ts":{"size":1924,"mtime_ns":1786799852291153100,"indexed_at_ns":1787726729909344900,"word_count":173},"backend/src/videos/videos.module.ts":{"size":283,"mtime_ns":1785148022306583700,"indexed_at_ns":1787726729915346300,"word_count":30},"backend/src/videos/videos.service.ts":{"size":3036,"mtime_ns":1788334048807380600,"indexed_at_ns":1788334714212541600,"word_count":321},"backend/src/wholesale/dto/wholesale-apply.dto.ts":{"size":739,"mtime_ns":1785148022317622300,"indexed_at_ns":1787726729928834600,"word_count":66},"backend/src/wholesale/wholesale.controller.ts":{"size":2037,"mtime_ns":1786799852294177000,"indexed_at_ns":1787726729934839900,"word_count":160},"backend/src/wholesale/wholesale.module.ts":{"size":390,"mtime_ns":1785148022328746300,"indexed_at_ns":1787726729941840900,"word_count":38},"backend/src/wholesale/wholesale.service.ts":{"size":2618,"mtime_ns":1788584193713366900,"indexed_at_ns":1788608119381476800,"word_count":266},"backend/src/wiki/dto/create-wiki.dto.ts":{"size":30,"mtime_ns":1783764561752933200,"indexed_at_ns":1787726729953896900,"word_count":4},"backend/src/wiki/dto/update-wiki.dto.ts":{"size":164,"mtime_ns":1783764561753945200,"indexed_at_ns":1787726729959896600,"word_count":18},"backend/src/wiki/entities/wiki.entity.ts":{"size":21,"mtime_ns":1783764561755039400,"indexed_at_ns":1787726729966410900,"word_count":4},"backend/src/wiki/wiki.controller.ts":{"size":1219,"mtime_ns":1785327951272850400,"indexed_at_ns":1787726729972418600,"word_count":110},"backend/src/wiki/wiki.module.ts":{"size":241,"mtime_ns":1783764561756925000,"indexed_at_ns":1787726729978966700,"word_count":28},"backend/src/wiki/wiki.service.ts":{"size":1562,"mtime_ns":1786799852295173000,"indexed_at_ns":1787726729985599000,"word_count":174},"backend/test/app-audit-verification.e2e-spec.d.ts":{"size":11,"mtime_ns":1787073059109005600,"indexed_at_ns":1787726729992165500,"word_count":2},"backend/test/app-audit-verification.e2e-spec.js":{"size":8429,"mtime_ns":1787073059110516300,"indexed_at_ns":1787726729998303900,"word_count":714},"backend/test/app-audit-verification.e2e-spec.ts":{"size":6464,"mtime_ns":1786799852296174700,"indexed_at_ns":1787726730009127800,"word_count":569},"backend/test/app.e2e-spec.d.ts":{"size":11,"mtime_ns":1787073059112563300,"indexed_at_ns":1787726730014789500,"word_count":2},"backend/test/app.e2e-spec.js":{"size":1228,"mtime_ns":1787073059113572500,"indexed_at_ns":1787726730020887300,"word_count":97},"backend/test/app.e2e-spec.ts":{"size":981,"mtime_ns":1786799852297175000,"indexed_at_ns":1787726730030564200,"word_count":83},"backend/test/jest-e2e.json":{"size":183,"mtime_ns":1783764561762911800,"indexed_at_ns":1787726739771257900,"word_count":17,"hashes":{"backend/test/jest-e2e.json":"94091f560937212ad7027afcb77e62e6ac79e3e4cb401c3a16a56e7be4cac721"}},"backend/tsconfig.build.json":{"size":107,"mtime_ns":1783764561763447000,"indexed_at_ns":1787726739772258300,"word_count":10,"hashes":{"backend/tsconfig.build.json":"1f47c7dc3c8b5a15558654f45f21e0f553acc1680046f09dc24428e8538c4f9d"}},"backend/tsconfig.json":{"size":785,"mtime_ns":1787073059116167600,"indexed_at_ns":1787726739773257700,"word_count":56,"hashes":{"backend/tsconfig.json":"9b20fbca537d1e55f3a113fcee6683f0eb1f06752d3c8c52edf26eef8e2053f2"}},"backend/uploads/1781288429353-508765350.jpg":{"size":110246,"mtime_ns":1783764561766257000,"indexed_at_ns":1787726730057371500,"word_count":3882},"canina.md":{"size":21919,"mtime_ns":1786885876809472400,"indexed_at_ns":1787726730067353200,"word_count":1983},"canina.pdf":{"size":2858373,"mtime_ns":1785148022370811500,"indexed_at_ns":1787726730072352400,"word_count":0},"docker-compose.yml":{"size":2147,"mtime_ns":1787752951349742200,"indexed_at_ns":1787752967203975800,"word_count":125},"docs/01-introduction.md":{"size":5537,"mtime_ns":1786885876812474900,"indexed_at_ns":1787726730085575100,"word_count":523},"docs/02-user-guide.md":{"size":4303,"mtime_ns":1786885876813985900,"indexed_at_ns":1787726730091574900,"word_count":422},"docs/03-developer-guide.md":{"size":6717,"mtime_ns":1783764561771660500,"indexed_at_ns":1787726730099089600,"word_count":678},"docs/04-setup-and-deployment.md":{"size":4005,"mtime_ns":1787127978256847800,"indexed_at_ns":1787726739861230800,"word_count":425,"hashes":{"docs/04-setup-and-deployment.md":"aee712cb19a8475be75f8073f7e39870e704923a561ffb9f4ce4b31b1d4bd830"}},"docs/05-devops-and-monitoring.md":{"size":3590,"mtime_ns":1783764561774446100,"indexed_at_ns":1787726739862230700,"word_count":374,"hashes":{"docs/05-devops-and-monitoring.md":"53f1f45bbbdd3cf81cb4bc082ef4e49f506627f10f581d3c4b835028d02b5421"}},"docs/06-testing.md":{"size":4214,"mtime_ns":1783764561774967500,"indexed_at_ns":1787726739862740900,"word_count":457,"hashes":{"docs/06-testing.md":"69d50bd5e233f030d8076b55b69599cee201e1c393b7ee1beeb495c304fd4bd3"}},"docs/README.md":{"size":2740,"mtime_ns":1786885876816996700,"indexed_at_ns":1787726739864750200,"word_count":253,"hashes":{"docs/readme.md":"1b7ffde4b290e742802fc554f2dd2f7a2316fe25bd1cd328421ffa823b36f40f"}},"docs/audit/00-repository-map.md":{"size":3171,"mtime_ns":1786799852298174200,"indexed_at_ns":1787726739865750000,"word_count":351,"hashes":{"docs/audit/00-repository-map.md":"dde4a63c991d0f469086a147df03b97d8370cd75fa19cc83af1199f267d7bc55"}},"docs/audit/01-system-discovery.md":{"size":3790,"mtime_ns":1786799852299174400,"indexed_at_ns":1787726739866750300,"word_count":467,"hashes":{"docs/audit/01-system-discovery.md":"6c91253cac025506db71adea33a054f88f4c367ba81fc3cb1b85c2bdcfec5c70"}},"docs/audit/02-audit-plan.md":{"size":5058,"mtime_ns":1786799852300175400,"indexed_at_ns":1787726739867750300,"word_count":530,"hashes":{"docs/audit/02-audit-plan.md":"b623d8f8c2b8a14c1ddca1ad956cd8afc9203f7a94eda8e63fd608bc8e9164d1"}},"docs/audit/03-baseline-command-plan.md":{"size":4904,"mtime_ns":1786799852300175400,"indexed_at_ns":1787726739868750300,"word_count":735,"hashes":{"docs/audit/03-baseline-command-plan.md":"fcf49beae52c69d7e9cf85967f028052fa1a78eaae5a2bb9b18072b0273e80e1"}},"docs/audit/04-open-questions.md":{"size":1690,"mtime_ns":1786799852301682100,"indexed_at_ns":1787726739869750100,"word_count":224,"hashes":{"docs/audit/04-open-questions.md":"02fbd51a9131da0b12122a5280cc6f842c299b436a72b117e2263f011b9ebf9c"}},"docs/audit/05-architectural-audit.md":{"size":4884,"mtime_ns":1786799852302689800,"indexed_at_ns":1787726730169702300,"word_count":560},"docs/audit/06-storefront-audit.md":{"size":4191,"mtime_ns":1786799852303691400,"indexed_at_ns":1787726739871758800,"word_count":520,"hashes":{"docs/audit/06-storefront-audit.md":"1e2f2d9d867dc553f503ef91b3bd60310202225da12bc7d324e192f4e15d8c38"}},"docs/audit/07-backend-audit.md":{"size":5037,"mtime_ns":1786799852304689900,"indexed_at_ns":1787726739872758800,"word_count":581,"hashes":{"docs/audit/07-backend-audit.md":"0436a967b82026334bf45c9ca677d1e79ce688681bea4dc06a7fd19e2d5a2129"}},"docs/audit/08-admin-features-audit.md":{"size":4222,"mtime_ns":1786799852305951400,"indexed_at_ns":1787726739873758600,"word_count":479,"hashes":{"docs/audit/08-admin-features-audit.md":"dda5b0bae4f843a51274269dcb91d8b65db2f2917d336d511790da4718b05b8d"}},"docs/audit/09-database-audit.md":{"size":4126,"mtime_ns":1786799852306969500,"indexed_at_ns":1787726739874758900,"word_count":521,"hashes":{"docs/audit/09-database-audit.md":"d4f82b84ae6c1899ab4da1310414d993d9c23dcd2759120fbe551f5b8da95a08"}},"docs/audit/10-security-audit.md":{"size":5560,"mtime_ns":1786799852307952600,"indexed_at_ns":1787726730204465900,"word_count":678},"docs/audit/11-code-quality-audit.md":{"size":3379,"mtime_ns":1786799852308957000,"indexed_at_ns":1787726739875758500,"word_count":419,"hashes":{"docs/audit/11-code-quality-audit.md":"b6b9a4845e0bd5674d897c08f5451f8cab4df22722826f7c9d55ca19b94d88da"}},"docs/audit/12-testing-audit.md":{"size":4106,"mtime_ns":1786799852309952600,"indexed_at_ns":1787726739877758700,"word_count":486,"hashes":{"docs/audit/12-testing-audit.md":"8bdf2058520a88de4d08c0635999de8f79fdab83055ef560ca3a865026b6450a"}},"docs/audit/13-devops-audit.md":{"size":3435,"mtime_ns":1786799852310953800,"indexed_at_ns":1787726739878758700,"word_count":440,"hashes":{"docs/audit/13-devops-audit.md":"d21daac201fcfc3a0e27c27348806f3f5d2790071578dcb98e7869cd6e9ec8a9"}},"docs/audit/14-documentation-audit.md":{"size":3311,"mtime_ns":1786799852311952200,"indexed_at_ns":1787726739879758400,"word_count":379,"hashes":{"docs/audit/14-documentation-audit.md":"e64be175bd632a05e37be823621eb8a8f13bdb74887d10f5f20887d41cef5c62"}},"docs/audit/15-raw-findings-index.json":{"size":9909,"mtime_ns":1786799852313066900,"indexed_at_ns":1787726739774686100,"word_count":817,"hashes":{"docs/audit/15-raw-findings-index.json":"3c1e582431f5f25edd2c38285c9d59f83c83d5348eaf0ced91d6e7c94a9afb6d"}},"docs/audit/16-deep-audit-summary.md":{"size":3111,"mtime_ns":1786799852313066900,"indexed_at_ns":1787726739880758700,"word_count":393,"hashes":{"docs/audit/16-deep-audit-summary.md":"8ea08de6ac54dddd9da6de934bc850bb31ab7e3c5470059d02d7f84dd120a0e4"}},"docs/audit/17-source-coverage-manifest.json":{"size":128714,"mtime_ns":1786799852315065000,"indexed_at_ns":1787726739775692000,"word_count":7827,"hashes":{"docs/audit/17-source-coverage-manifest.json":"834e6c341db760439d2e7a9c17531b03c17151ab0f2f16b92aac8a350bcae51d"}},"docs/audit/18-compiler-diagnostic-dispositions.md":{"size":1961,"mtime_ns":1786799852315065000,"indexed_at_ns":1787726739881758500,"word_count":285,"hashes":{"docs/audit/18-compiler-diagnostic-dispositions.md":"246b9164725e89c67c76f2305cd128f0c0f9bfdba46e45e0e958fe92ccdcda53"}},"docs/audit/19-finding-verification-report.md":{"size":5464,"mtime_ns":1786799852316064800,"indexed_at_ns":1787726739883758400,"word_count":753,"hashes":{"docs/audit/19-finding-verification-report.md":"1cd1bc37f9e76ba7e4d4ef82b8565def786abfeb159bc4d822e364e3f2ea694f"}},"docs/audit/20-verified-findings-index.json":{"size":21797,"mtime_ns":1786799852317071400,"indexed_at_ns":1787726739777692600,"word_count":1903,"hashes":{"docs/audit/20-verified-findings-index.json":"b20d0b140bd727faefde9f29aa4d787199dd386464030eecdf58e5a8ab629442"}},"docs/audit/21-phase2-quality-gate-summary.md":{"size":1706,"mtime_ns":1786799852318066000,"indexed_at_ns":1787726739883758400,"word_count":211,"hashes":{"docs/audit/21-phase2-quality-gate-summary.md":"1b117f866e73cd17c43e3a4e856584f03997a3c897d1de9afbd128ff8a86d09e"}},"docs/audit/22-tracked-first-party-files.txt":{"size":4452,"mtime_ns":1786799852319066000,"indexed_at_ns":1787726730289099900,"word_count":139},"docs/audit/23-untracked-first-party-files.txt":{"size":59,"mtime_ns":1786799852319066000,"indexed_at_ns":1787726730295099800,"word_count":7},"docs/audit/24-omitted-file-inspection-report.md":{"size":2462,"mtime_ns":1786799852320065700,"indexed_at_ns":1787726739885266400,"word_count":227,"hashes":{"docs/audit/24-omitted-file-inspection-report.md":"d4484eea65f1861b9b6a30813d2c233d947c2965a13ed5b399462b80ca9c1513"}},"docs/audit/25-reference-integrity-validation.json":{"size":1002,"mtime_ns":1786799852321571600,"indexed_at_ns":1787726739778692300,"word_count":82,"hashes":{"docs/audit/25-reference-integrity-validation.json":"31b900ed297325cabee3e0804809ecd4229f4427283e449f5d82951bb5ed7fde"}},"docs/audit/26-phase2-integrity-repair-report.md":{"size":3191,"mtime_ns":1786799852322091800,"indexed_at_ns":1787726739887276800,"word_count":385,"hashes":{"docs/audit/26-phase2-integrity-repair-report.md":"2b2f385705db6729fccedc63db0f5709afa23e08a80fc859fe0138b416356cd9"}},"docs/audit/27-all-tracked-repository-files.txt":{"size":4631,"mtime_ns":1786799852323099900,"indexed_at_ns":1787726730320693600,"word_count":148},"docs/audit/28-full-repository-classification.json":{"size":27913,"mtime_ns":1786799852324099500,"indexed_at_ns":1787726739779692400,"word_count":1782,"hashes":{"docs/audit/28-full-repository-classification.json":"bcb50229ceddb267c8839ee69c05f5e5c8c4460485c92849532bcf163c37faa8"}},"docs/audit/29-file-content-evidence.json":{"size":109095,"mtime_ns":1786799852325608100,"indexed_at_ns":1787726739781691000,"word_count":9098,"hashes":{"docs/audit/29-file-content-evidence.json":"c4696525e8ab3c252ff9b6b38d5882225e0a9016698111df28064edbe7bf5124"}},"docs/audit/30-compiler-diagnostics-index.json":{"size":3707,"mtime_ns":1786799852326617100,"indexed_at_ns":1787726739783194500,"word_count":324,"hashes":{"docs/audit/30-compiler-diagnostics-index.json":"85bd1a964e41cc5e615c7260be2beb54b49dd444da40d96ae31e2a33c1c6bc24"}},"docs/audit/31-module-audit-closure.md":{"size":7587,"mtime_ns":1786799852327616800,"indexed_at_ns":1787726739888276700,"word_count":709,"hashes":{"docs/audit/31-module-audit-closure.md":"a1c9d7902131d71cf87a072876cc309ac8dfc7cd6e1f33e9619ac12d99f685ba"}},"docs/audit/32-evidence-grade-validation.json":{"size":1613,"mtime_ns":1786799852328616800,"indexed_at_ns":1787726739784200700,"word_count":123,"hashes":{"docs/audit/32-evidence-grade-validation.json":"12ddcc21ff65a2aa76845935ebc0d8313c39991335356fbe3ae7cdd201251af5"}},"docs/audit/33-final-phase2-audit-closure.md":{"size":2535,"mtime_ns":1786799852328616800,"indexed_at_ns":1787726739889276900,"word_count":271,"hashes":{"docs/audit/33-final-phase2-audit-closure.md":"217cadb664c7f7d27f8f849ea1249dfd88d5398fd2af154fd385c80e4d559bb1"}},"docs/audit/34-repository-observations.json":{"size":594,"mtime_ns":1786799852329618700,"indexed_at_ns":1787726739785199000,"word_count":49,"hashes":{"docs/audit/34-repository-observations.json":"28ce67ed3f5bcc3e5c3c80d73a16a34d8053d570be0af62be8afaffbc9318a27"}},"docs/audit/35-semantic-review-ledger.json":{"size":99353,"mtime_ns":1786799852330616000,"indexed_at_ns":1787726739786706200,"word_count":6011,"hashes":{"docs/audit/35-semantic-review-ledger.json":"ac0529050e87efc9e2b5a6c5b3a2ce6379186b4b07f23d8ec9cebf214ff885ef"}},"docs/audit/36-mandatory-semantic-scope.json":{"size":7960,"mtime_ns":1786799852331617100,"indexed_at_ns":1787726739787707200,"word_count":638,"hashes":{"docs/audit/36-mandatory-semantic-scope.json":"af62db825dd527009b8d79a6edab6ab627fe55303d3f7fd1c2d8e5fab9a8760b"}},"docs/audit/ADR-AUTH-001.md":{"size":3274,"mtime_ns":1786799852332642700,"indexed_at_ns":1787726730388254300,"word_count":398},"docs/audit/CROSS_BOUNDARY_DEPENDENCIES.md":{"size":2146,"mtime_ns":1786799852332642700,"indexed_at_ns":1787726730394794200,"word_count":239},"docs/audit/FRONTEND_INTEGRATION_REQUIREMENTS.md":{"size":15307,"mtime_ns":1787127978258848200,"indexed_at_ns":1787726730402390500,"word_count":1579},"docs/audit/MASTER-TASK-BACKLOG.md":{"size":30107,"mtime_ns":1786799852335470200,"indexed_at_ns":1787726730410947100,"word_count":3510},"docs/audit/audit-state.json":{"size":4135,"mtime_ns":1786799852337382200,"indexed_at_ns":1787726739788704900,"word_count":267,"hashes":{"docs/audit/audit-state.json":"4b804494570a2812170cb8dab35d15da659f57d6e637652328725e956f7d98aa"}},"docs/audit/build_manifest.js":{"size":4060,"mtime_ns":1786799852338393200,"indexed_at_ns":1787726730421985600,"word_count":348},"docs/audit/frontend-route-map.md":{"size":2558,"mtime_ns":1786799852339389800,"indexed_at_ns":1787726730429495100,"word_count":329},"docs/audit/generate_classification.js":{"size":2186,"mtime_ns":1786799852339389800,"indexed_at_ns":1787726730434093300,"word_count":204},"docs/audit/generate_evidence.js":{"size":3098,"mtime_ns":1786799852340390100,"indexed_at_ns":1787726730440532500,"word_count":253},"docs/audit/generate_ledger.js":{"size":7648,"mtime_ns":1786799852341897300,"indexed_at_ns":1787726730446281100,"word_count":620},"docs/audit/generate_manifest.js":{"size":6357,"mtime_ns":1786799852341897300,"indexed_at_ns":1787726730452526800,"word_count":489},"docs/audit/master-task-backlog.json":{"size":22336,"mtime_ns":1786799852342906700,"indexed_at_ns":1787726739790706500,"word_count":2071,"hashes":{"docs/audit/master-task-backlog.json":"f1c994d971b4e58165ab9f74f8b69b97c07fe74005f64dc11badf5e287b5fd28"}},"docs/audit/phase3-execution-plan.md":{"size":6007,"mtime_ns":1786799852343952400,"indexed_at_ns":1787726730466602900,"word_count":736},"docs/audit/phase3-traceability-matrix.md":{"size":5237,"mtime_ns":1786799852344952800,"indexed_at_ns":1787726739890276800,"word_count":692,"hashes":{"docs/audit/phase3-traceability-matrix.md":"c46b1b09c5f6be7f54ba888652e69698b26d955a8e7c8e4fa19cda8729ee2f7b"}},"docs/audit/phase3.1-backlog-review.md":{"size":9737,"mtime_ns":1786799852345952800,"indexed_at_ns":1787726739891276700,"word_count":1202,"hashes":{"docs/audit/phase3.1-backlog-review.md":"021895bb0b90dd75935ebe0317d3198a2c448ccdd6861b1302cc29735f48da82"}},"docs/audit/phase3.1-change-log.md":{"size":3756,"mtime_ns":1786799852346954800,"indexed_at_ns":1787726739893276700,"word_count":451,"hashes":{"docs/audit/phase3.1-change-log.md":"093d244c2788ead47c69e3068ccf66930ba52e04430bdba87020cb4a4edcb817"}},"docs/audit/phase3.2-change-log.md":{"size":8272,"mtime_ns":1786799852347952200,"indexed_at_ns":1787726739894276600,"word_count":930,"hashes":{"docs/audit/phase3.2-change-log.md":"00bff98e2ae2ef50c4daf265d5f34469f21c244b6dca88b70e1f9ffa17a71d83"}},"docs/audit/phase3.2-implementation-readiness.md":{"size":4694,"mtime_ns":1786799852347952200,"indexed_at_ns":1787726739895276700,"word_count":517,"hashes":{"docs/audit/phase3.2-implementation-readiness.md":"9f1e0335fdc0fa2db0fd5ceaa97e50be85d04bc1ad5d3db1ef74e85de97f71a6"}},"docs/audit/rebuild_honest_ledger.js":{"size":6113,"mtime_ns":1786799852348952900,"indexed_at_ns":1787726730506440800,"word_count":559},"docs/audit/sync_honest_manifest.js":{"size":1213,"mtime_ns":1786799852349953100,"indexed_at_ns":1787726730513042200,"word_count":75},"docs/audit/sync_manifest.js":{"size":997,"mtime_ns":1786799852350953300,"indexed_at_ns":1787726730519090300,"word_count":62},"docs/audit/validate_evidence_grade.js":{"size":6141,"mtime_ns":1786799852351954100,"indexed_at_ns":1787726730524859000,"word_count":526},"docs/audit/validate_integrity.js":{"size":3408,"mtime_ns":1786799852352952400,"indexed_at_ns":1787726730530859600,"word_count":284},"docs/backlog.md":{"size":26175,"mtime_ns":1786799852356021600,"indexed_at_ns":1787726730538035500,"word_count":2834},"frontend/admin-panel/README.md":{"size":2425,"mtime_ns":1783764561778952800,"indexed_at_ns":1787726739896276700,"word_count":212,"hashes":{"frontend/admin-panel/readme.md":"3945c052249ebd020b013303d5921815b52d847bd36c748a03bfdc8eb2a390b8"}},"frontend/admin-panel/eslint.config.js":{"size":906,"mtime_ns":1787148092334501700,"indexed_at_ns":1787726730554130000,"word_count":69},"frontend/admin-panel/index.html":{"size":363,"mtime_ns":1783764561780558500,"indexed_at_ns":1787726730559871600,"word_count":28},"frontend/admin-panel/package.json":{"size":1072,"mtime_ns":1788000055991496000,"indexed_at_ns":1788000470938176500,"word_count":84,"hashes":{"frontend/admin-panel/package.json":"455b58b802fb0ba4c5aabfa83f023a9e9b692f1d6a2e71b66952509b1a7dd6da"}},"frontend/admin-panel/postcss.config.js":{"size":91,"mtime_ns":1783764561796281900,"indexed_at_ns":1787726730571159000,"word_count":11},"frontend/admin-panel/public/favicon.svg":{"size":9522,"mtime_ns":1783764561797801500,"indexed_at_ns":1787726730577396200,"word_count":491},"frontend/admin-panel/public/fonts/A-Iranian-Sans/A-Iranian-Sans/read me!.txt":{"size":281,"mtime_ns":1783856792435855000,"indexed_at_ns":1787726730602607800,"word_count":15},"frontend/admin-panel/public/fonts/IranNastaliq/IranNastaliq/read me!.txt":{"size":281,"mtime_ns":1783856792445365000,"indexed_at_ns":1787726730626154600,"word_count":15},"frontend/admin-panel/public/fonts/sahel-font-v3.4.0/CHANGELOG.md":{"size":8519,"mtime_ns":1783856792454604400,"indexed_at_ns":1787726739897276800,"word_count":1077,"hashes":{"frontend/admin-panel/public/fonts/sahel-font-v3.4.0/changelog.md":"4003fe6a71221e735897cfe03ac11bd59ef9951572007763151bf95663256a3d"}},"frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md":{"size":4136,"mtime_ns":1783856792502503100,"indexed_at_ns":1787726739898786800,"word_count":366,"hashes":{"frontend/admin-panel/public/fonts/sahel-font-v3.4.0/readme.md":"880beb9c92fd527a098de27bc779b6891a36af98ae994f506a64be199ed50392"}},"frontend/admin-panel/public/fonts/sahel-font-v3.4.0/sample-variable.gif":{"size":236102,"mtime_ns":1783856792546496500,"indexed_at_ns":1787726731162750800,"word_count":10881},"frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/CHANGELOG.md":{"size":7177,"mtime_ns":1783856792548005600,"indexed_at_ns":1787726739900396600,"word_count":951,"hashes":{"frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/changelog.md":"a735e1b29ad9d3361a0d1ecfd5c1f2f78c200a272918606decc377c469944321"}},"frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md":{"size":3696,"mtime_ns":1783856792595155200,"indexed_at_ns":1787726739901406500,"word_count":283,"hashes":{"frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/readme.md":"3b6e2d78372a72b67e339bfd7331d408f43245840749d2f46df5c356a208fbfd"}},"frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/sample.png":{"size":85019,"mtime_ns":1783856792645667900,"indexed_at_ns":1787726731663450200,"word_count":2615},"frontend/admin-panel/public/fonts/vazirmatn-v33.003/AUTHORS.txt":{"size":339,"mtime_ns":1783856792646666000,"indexed_at_ns":1787726731673001900,"word_count":55},"frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md":{"size":38550,"mtime_ns":1783856792647671700,"indexed_at_ns":1787726739903406700,"word_count":5086,"hashes":{"frontend/admin-panel/public/fonts/vazirmatn-v33.003/changelog.md":"5207a2a148ccfd0338342325a39d9b5b2d39514429c93e0aedf68b21f23fd71e"}},"frontend/admin-panel/public/fonts/vazirmatn-v33.003/OFL.txt":{"size":4391,"mtime_ns":1783856792648669800,"indexed_at_ns":1787726731688185800,"word_count":671},"frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md":{"size":2339,"mtime_ns":1783856792648669800,"indexed_at_ns":1787726739904406600,"word_count":270,"hashes":{"frontend/admin-panel/public/fonts/vazirmatn-v33.003/readme.md":"0d736c7dd11e89622e7105e6a5958fc3d83ec827b8a00debc0943bc8e3a3d201"}},"frontend/admin-panel/public/fonts/vazirmatn-v33.003/\u0631\u0627\u0647\u0646\u0645\u0627.txt":{"size":211,"mtime_ns":1783856792971535000,"indexed_at_ns":1787726733915800800,"word_count":14},"frontend/admin-panel/public/icons.svg":{"size":5031,"mtime_ns":1783764561799320300,"indexed_at_ns":1787726733920800200,"word_count":382},"frontend/admin-panel/src/App.tsx":{"size":1088,"mtime_ns":1786799852365481100,"indexed_at_ns":1787726733931929300,"word_count":99},"frontend/admin-panel/src/assets/hero.png":{"size":13057,"mtime_ns":1783764561812863000,"indexed_at_ns":1787726733938940400,"word_count":437},"frontend/admin-panel/src/assets/react.svg":{"size":4126,"mtime_ns":1783764561813924700,"indexed_at_ns":1787726733944940500,"word_count":366},"frontend/admin-panel/src/assets/vite.svg":{"size":8709,"mtime_ns":1783764561814995700,"indexed_at_ns":1787726733951568000,"word_count":439},"frontend/admin-panel/src/components/Layout.tsx":{"size":726,"mtime_ns":1784621786958594800,"indexed_at_ns":1787726733957572200,"word_count":69},"frontend/admin-panel/src/components/ProtectedRoute.tsx":{"size":2336,"mtime_ns":1786799852369164100,"indexed_at_ns":1787726733964577700,"word_count":210},"frontend/admin-panel/src/components/RouteErrorBoundary.tsx":{"size":4042,"mtime_ns":1787062174623011100,"indexed_at_ns":1787726733970575200,"word_count":350},"frontend/admin-panel/src/components/Sidebar.tsx":{"size":13111,"mtime_ns":1787461920842084500,"indexed_at_ns":1787726733977661300,"word_count":1198},"frontend/admin-panel/src/components/Topbar.tsx":{"size":19016,"mtime_ns":1787466234964385700,"indexed_at_ns":1787726733983181100,"word_count":1586},"frontend/admin-panel/src/components/TransactionReceiptModal.tsx":{"size":9674,"mtime_ns":1787405554804618300,"indexed_at_ns":1787726733989180000,"word_count":738},"frontend/admin-panel/src/components/ui/Badge.tsx":{"size":1554,"mtime_ns":1787461920844094000,"indexed_at_ns":1787726733997180400,"word_count":158},"frontend/admin-panel/src/components/ui/Button.tsx":{"size":3591,"mtime_ns":1787467799871536000,"indexed_at_ns":1787726734004723300,"word_count":338},"frontend/admin-panel/src/components/ui/ConfirmModal.tsx":{"size":2294,"mtime_ns":1786972191359099700,"indexed_at_ns":1787726734011333000,"word_count":192},"frontend/admin-panel/src/components/ui/FormField.tsx":{"size":1683,"mtime_ns":1786954681823527000,"indexed_at_ns":1787726734018369200,"word_count":148},"frontend/admin-panel/src/components/ui/IconPickerModal.tsx":{"size":4853,"mtime_ns":1787071159959928200,"indexed_at_ns":1787726734024338100,"word_count":397},"frontend/admin-panel/src/components/ui/ImagePreviewModal.tsx":{"size":3351,"mtime_ns":1786954681824534900,"indexed_at_ns":1787726734032842500,"word_count":270},"frontend/admin-panel/src/components/ui/Input.tsx":{"size":2451,"mtime_ns":1788332598539946700,"indexed_at_ns":1788332708245483800,"word_count":213},"frontend/admin-panel/src/components/ui/MaskableField.tsx":{"size":3246,"mtime_ns":1787405554805712000,"indexed_at_ns":1787726734045422000,"word_count":310},"frontend/admin-panel/src/components/ui/MediaSelector.tsx":{"size":21604,"mtime_ns":1787038450536696800,"indexed_at_ns":1787726734051928800,"word_count":1686},"frontend/admin-panel/src/components/ui/Modal.tsx":{"size":3381,"mtime_ns":1787461920845094300,"indexed_at_ns":1787726734060570900,"word_count":324},"frontend/admin-panel/src/components/ui/Pagination.tsx":{"size":5510,"mtime_ns":1786799852387442100,"indexed_at_ns":1787726734066608900,"word_count":447},"frontend/admin-panel/src/components/ui/PriceInput.tsx":{"size":2633,"mtime_ns":1786948119771162400,"indexed_at_ns":1787726734074127900,"word_count":267},"frontend/admin-panel/src/components/ui/RichTextEditor.tsx":{"size":36574,"mtime_ns":1787980615563542500,"indexed_at_ns":1787981098348418200,"word_count":2767},"frontend/admin-panel/src/components/ui/Select.tsx":{"size":1881,"mtime_ns":1786954681828537500,"indexed_at_ns":1787726734087116300,"word_count":160},"frontend/admin-panel/src/components/ui/Skeleton.tsx":{"size":178,"mtime_ns":1783856792977535800,"indexed_at_ns":1787726734092926500,"word_count":22},"frontend/admin-panel/src/components/ui/Spinner.tsx":{"size":650,"mtime_ns":1783856792979049200,"indexed_at_ns":1787726734100568500,"word_count":67},"frontend/admin-panel/src/components/ui/Textarea.tsx":{"size":1287,"mtime_ns":1786954681828537500,"indexed_at_ns":1787726734107173200,"word_count":110},"frontend/admin-panel/src/components/ui/ThSort.tsx":{"size":1478,"mtime_ns":1787461920845094300,"indexed_at_ns":1787726734113136300,"word_count":148},"frontend/admin-panel/src/components/ui/ToggleSwitch.tsx":{"size":1623,"mtime_ns":1786954681830044900,"indexed_at_ns":1787726734120391600,"word_count":143},"frontend/admin-panel/src/main.tsx":{"size":1055,"mtime_ns":1787062325395038600,"indexed_at_ns":1787726734130217700,"word_count":106},"frontend/admin-panel/src/pages/B2BManager.tsx":{"size":24689,"mtime_ns":1787729527927391700,"indexed_at_ns":1787729932214362700,"word_count":1682},"frontend/admin-panel/src/pages/BannersManager.tsx":{"size":19583,"mtime_ns":1787467799874171700,"indexed_at_ns":1787726734145966800,"word_count":1396},"frontend/admin-panel/src/pages/Blogs.tsx":{"size":82294,"mtime_ns":1787729527928391800,"indexed_at_ns":1787729932225892600,"word_count":5654},"frontend/admin-panel/src/pages/CMS.tsx":{"size":10114,"mtime_ns":1787467933664259800,"indexed_at_ns":1787726734157997900,"word_count":791},"frontend/admin-panel/src/pages/Categories.tsx":{"size":16242,"mtime_ns":1787469989141511600,"indexed_at_ns":1787726734164506500,"word_count":1174},"frontend/admin-panel/src/pages/ContactSubmissions.tsx":{"size":12346,"mtime_ns":1787467799877343800,"indexed_at_ns":1787726734172638600,"word_count":842},"frontend/admin-panel/src/pages/Coupons.tsx":{"size":27669,"mtime_ns":1788332598543451700,"indexed_at_ns":1788332708366710500,"word_count":2138},"frontend/admin-panel/src/pages/Dashboard.tsx":{"size":6006,"mtime_ns":1786885876829510000,"indexed_at_ns":1787726734186274700,"word_count":534},"frontend/admin-panel/src/pages/DoctorsManager.tsx":{"size":23282,"mtime_ns":1787467799879923800,"indexed_at_ns":1787726734193275100,"word_count":1666},"frontend/admin-panel/src/pages/FAQManager.tsx":{"size":12625,"mtime_ns":1787467799881924800,"indexed_at_ns":1787726734201784400,"word_count":937},"frontend/admin-panel/src/pages/FinancialSettingsPage.tsx":{"size":27051,"mtime_ns":1788333161520132500,"indexed_at_ns":1788333266832134200,"word_count":1794},"frontend/admin-panel/src/pages/IngredientsManager.tsx":{"size":17943,"mtime_ns":1787467933669934500,"indexed_at_ns":1787726734213391200,"word_count":1254},"frontend/admin-panel/src/pages/Login.tsx":{"size":11573,"mtime_ns":1788587906733886000,"indexed_at_ns":1788608123807803900,"word_count":838},"frontend/admin-panel/src/pages/Media.tsx":{"size":29374,"mtime_ns":1787467799885925200,"indexed_at_ns":1787726734227390500,"word_count":2304},"frontend/admin-panel/src/pages/MenuManager.tsx":{"size":19625,"mtime_ns":1787469989146215000,"indexed_at_ns":1787726734240896100,"word_count":1512},"frontend/admin-panel/src/pages/MonitoringPage.tsx":{"size":16455,"mtime_ns":1787466234965980200,"indexed_at_ns":1787726734246489100,"word_count":1289},"frontend/admin-panel/src/pages/Orders.tsx":{"size":64822,"mtime_ns":1788607962727445400,"indexed_at_ns":1788608123829586600,"word_count":4808},"frontend/admin-panel/src/pages/PaymentGatewaysPage.tsx":{"size":37893,"mtime_ns":1787467799889939500,"indexed_at_ns":1787726734259598900,"word_count":2521},"frontend/admin-panel/src/pages/Pets.tsx":{"size":16631,"mtime_ns":1787467799891938300,"indexed_at_ns":1787726734268435300,"word_count":1209},"frontend/admin-panel/src/pages/PrescriptionsManager.tsx":{"size":19424,"mtime_ns":1787467799892935800,"indexed_at_ns":1787726734275434500,"word_count":1419},"frontend/admin-panel/src/pages/Products.tsx":{"size":248144,"mtime_ns":1788351605801883800,"indexed_at_ns":1788608123851710200,"word_count":16079},"frontend/admin-panel/src/pages/Reports.tsx":{"size":24050,"mtime_ns":1787729523442451300,"indexed_at_ns":1787729932336128900,"word_count":1832},"frontend/admin-panel/src/pages/Reviews.tsx":{"size":30539,"mtime_ns":1787740536670948600,"indexed_at_ns":1787741544010232200,"word_count":2140},"frontend/admin-panel/src/pages/SeoSettingsPage.tsx":{"size":50513,"mtime_ns":1788343360494035900,"indexed_at_ns":1788608123872221300,"word_count":3404},"frontend/admin-panel/src/pages/Settings.tsx":{"size":24256,"mtime_ns":1787468615457819400,"indexed_at_ns":1787726734308156100,"word_count":1701},"frontend/admin-panel/src/pages/ShippingSettingsPage.tsx":{"size":7615,"mtime_ns":1787467799901935300,"indexed_at_ns":1787726734314725100,"word_count":585},"frontend/admin-panel/src/pages/SmartAdvisorManager.tsx":{"size":13745,"mtime_ns":1787467799902933600,"indexed_at_ns":1787726734320253400,"word_count":1014},"frontend/admin-panel/src/pages/SmsSettingsPage.tsx":{"size":133824,"mtime_ns":1788607971015674300,"indexed_at_ns":1788608123894909600,"word_count":9191},"frontend/admin-panel/src/pages/SslSettingsPage.tsx":{"size":25502,"mtime_ns":1787467799905446700,"indexed_at_ns":1787726734336379700,"word_count":1847},"frontend/admin-panel/src/pages/SystemSettingsPage.tsx":{"size":18951,"mtime_ns":1787742160542543900,"indexed_at_ns":1787742226362423500,"word_count":1264},"frontend/admin-panel/src/pages/TestimonialsManager.tsx":{"size":18547,"mtime_ns":1787467799908955400,"indexed_at_ns":1787726734348881900,"word_count":1297},"frontend/admin-panel/src/pages/Tickets.tsx":{"size":20254,"mtime_ns":1787467799909962900,"indexed_at_ns":1787726734355478000,"word_count":1455},"frontend/admin-panel/src/pages/Transactions.tsx":{"size":45136,"mtime_ns":1787471434872188300,"indexed_at_ns":1787726734362406800,"word_count":3213},"frontend/admin-panel/src/pages/UITexts.tsx":{"size":64687,"mtime_ns":1788587906738676600,"indexed_at_ns":1788608123929931500,"word_count":5471},"frontend/admin-panel/src/pages/Users.tsx":{"size":42038,"mtime_ns":1788587906739671200,"indexed_at_ns":1788608123936596200,"word_count":2827},"frontend/admin-panel/src/pages/Videos.tsx":{"size":25920,"mtime_ns":1787740536675689700,"indexed_at_ns":1787741544096497300,"word_count":1845},"frontend/admin-panel/src/pages/WholesaleApplications.tsx":{"size":6713,"mtime_ns":1787467799916852500,"indexed_at_ns":1787726734390128300,"word_count":505},"frontend/admin-panel/src/pages/Wiki.tsx":{"size":15651,"mtime_ns":1787469989158212800,"indexed_at_ns":1787726734396025400,"word_count":1221},"frontend/admin-panel/src/pages/ZibalPortalPage.tsx":{"size":55699,"mtime_ns":1787570438155805200,"indexed_at_ns":1787726734402122900,"word_count":3753},"frontend/admin-panel/src/routes/adminRoutes.tsx":{"size":6245,"mtime_ns":1787461920854097100,"indexed_at_ns":1787726734408451000,"word_count":603},"frontend/admin-panel/src/services/api.ts":{"size":5190,"mtime_ns":1787997670262225000,"indexed_at_ns":1787998034950007400,"word_count":479},"frontend/admin-panel/src/store/adminAuthStore.ts":{"size":666,"mtime_ns":1786799852469037000,"indexed_at_ns":1787726734421659400,"word_count":65},"frontend/admin-panel/src/types/admin.ts":{"size":4526,"mtime_ns":1788336258608452000,"indexed_at_ns":1788337260287496600,"word_count":483},"frontend/admin-panel/src/utils/lazyWithRetry.ts":{"size":1129,"mtime_ns":1787062174626227900,"indexed_at_ns":1787726734435357300,"word_count":114},"frontend/admin-panel/src/utils/useTableParams.ts":{"size":4060,"mtime_ns":1787461920855096000,"indexed_at_ns":1787726734441273300,"word_count":441},"frontend/admin-panel/tailwind.config.js":{"size":182,"mtime_ns":1783764561861721300,"indexed_at_ns":1787726734447096600,"word_count":20},"frontend/admin-panel/tsconfig.app.json":{"size":633,"mtime_ns":1787055476779566300,"indexed_at_ns":1787726739794704700,"word_count":48,"hashes":{"frontend/admin-panel/tsconfig.app.json":"2d9838ee1119342fd03bf7644781b8b6aced2cbdc908ff186cdd6ab7ab9ba1c4"}},"frontend/admin-panel/tsconfig.json":{"size":119,"mtime_ns":1783764561863393600,"indexed_at_ns":1787726739795705100,"word_count":15,"hashes":{"frontend/admin-panel/tsconfig.json":"7a6c2e21b6eaa2355b4e2ed29db2a767499a88498bde745cdccf3ba8c7f64f2b"}},"frontend/admin-panel/tsconfig.node.json":{"size":591,"mtime_ns":1783764561863923100,"indexed_at_ns":1787726739796704600,"word_count":44,"hashes":{"frontend/admin-panel/tsconfig.node.json":"035a8143cff9651dbb67885756a07cc3f8ed1c5dcbf04a6e2042600b7989d525"}},"frontend/admin-panel/vite.config.ts":{"size":161,"mtime_ns":1783764561864454900,"indexed_at_ns":1787726734467280600,"word_count":18},"frontend/application/AGENTS.md":{"size":717,"mtime_ns":1787127978268943700,"indexed_at_ns":1787726734477280500,"word_count":88},"frontend/application/CLAUDE.md":{"size":11,"mtime_ns":1783764561866744500,"indexed_at_ns":1787726739905406700,"word_count":1,"hashes":{"frontend/application/claude.md":"0776fbbe8c29c6dc861efa70683090a370ab56dc77c22cb9de74895b4c783320"}},"frontend/application/README.md":{"size":1450,"mtime_ns":1783764561867354300,"indexed_at_ns":1787726739906406500,"word_count":155,"hashes":{"frontend/application/readme.md":"dd829cdf325092d859080ac1db3cbf2cca3198e72834f0f228495ef3c49a2240"}},"frontend/application/app/ClientLayout.tsx":{"size":7245,"mtime_ns":1787999006323066200,"indexed_at_ns":1787999346453403700,"word_count":658},"frontend/application/app/HomeClient.tsx":{"size":13529,"mtime_ns":1788587906741672600,"indexed_at_ns":1788608124055744400,"word_count":868},"frontend/application/app/about/page.tsx":{"size":5706,"mtime_ns":1787139270959412500,"indexed_at_ns":1787726734506477700,"word_count":474},"frontend/application/app/api/revalidate/route.ts":{"size":1889,"mtime_ns":1787579631780106700,"indexed_at_ns":1787726734514149300,"word_count":220},"frontend/application/app/b2b/error.tsx":{"size":380,"mtime_ns":1787645037377262000,"indexed_at_ns":1787726734520148500,"word_count":50},"frontend/application/app/b2b/page.tsx":{"size":1506,"mtime_ns":1787644197141618200,"indexed_at_ns":1787726734526117900,"word_count":135},"frontend/application/app/blog/[slug]/page.tsx":{"size":8201,"mtime_ns":1787641161057694000,"indexed_at_ns":1787726734533148700,"word_count":767},"frontend/application/app/blog/error.tsx":{"size":382,"mtime_ns":1787645037378268200,"indexed_at_ns":1787726734540186900,"word_count":50},"frontend/application/app/blog/loading.tsx":{"size":1293,"mtime_ns":1787645037379262800,"indexed_at_ns":1787726734546152600,"word_count":115},"frontend/application/app/blog/page.tsx":{"size":3378,"mtime_ns":1787993003772568700,"indexed_at_ns":1787997305789060800,"word_count":346},"frontend/application/app/blog/rss.xml/route.ts":{"size":3076,"mtime_ns":1787577523710351300,"indexed_at_ns":1787726734558947600,"word_count":280},"frontend/application/app/catalog/CatalogClient.tsx":{"size":1338,"mtime_ns":1788351605803883700,"indexed_at_ns":1788608124133262000,"word_count":124},"frontend/application/app/catalog/page.tsx":{"size":671,"mtime_ns":1787139270965525300,"indexed_at_ns":1787726734570982600,"word_count":66},"frontend/application/app/checkout/page.tsx":{"size":604,"mtime_ns":1787139270967535500,"indexed_at_ns":1787726734576551900,"word_count":60},"frontend/application/app/checkout/success/[id]/page.tsx":{"size":231,"mtime_ns":1783764561878668300,"indexed_at_ns":1787726734582122000,"word_count":31},"frontend/application/app/contact/page.tsx":{"size":2655,"mtime_ns":1787644197143198500,"indexed_at_ns":1787726734588729900,"word_count":214},"frontend/application/app/dashboard/page.tsx":{"size":903,"mtime_ns":1787394935318217400,"indexed_at_ns":1787726734595730700,"word_count":83},"frontend/application/app/error.tsx":{"size":383,"mtime_ns":1785148022478709000,"indexed_at_ns":1787726734601792600,"word_count":50},"frontend/application/app/layout.tsx":{"size":6818,"mtime_ns":1788354488237712300,"indexed_at_ns":1788608124192280700,"word_count":547},"frontend/application/app/loading.tsx":{"size":1373,"mtime_ns":1785148022487650000,"indexed_at_ns":1787726734623432900,"word_count":122},"frontend/application/app/not-found.tsx":{"size":124,"mtime_ns":1783764561891411400,"indexed_at_ns":1787726734629416600,"word_count":15},"frontend/application/app/page.tsx":{"size":1093,"mtime_ns":1788587906745671800,"indexed_at_ns":1788608124207313100,"word_count":120},"frontend/application/app/payment/verify/page.tsx":{"size":14338,"mtime_ns":1786891855356078600,"indexed_at_ns":1787726734641507800,"word_count":1094},"frontend/application/app/privacy/page.tsx":{"size":4098,"mtime_ns":1787139270976563700,"indexed_at_ns":1787726734648804500,"word_count":336},"frontend/application/app/profile/page.tsx":{"size":623,"mtime_ns":1787139270978803200,"indexed_at_ns":1787726734655771200,"word_count":63},"frontend/application/app/robots.ts":{"size":825,"mtime_ns":1787578481501464000,"indexed_at_ns":1787726734660416500,"word_count":72},"frontend/application/app/search/page.tsx":{"size":786,"mtime_ns":1787139270979946700,"indexed_at_ns":1787726734667451100,"word_count":82},"frontend/application/app/shop/[slug]/page.tsx":{"size":11235,"mtime_ns":1788337303756021500,"indexed_at_ns":1788337670120361600,"word_count":1011},"frontend/application/app/shop/error.tsx":{"size":382,"mtime_ns":1787645037380267900,"indexed_at_ns":1787726734679433600,"word_count":50},"frontend/application/app/shop/feed.xml/route.ts":{"size":3698,"mtime_ns":1788000526323436900,"indexed_at_ns":1788328795003523300,"word_count":333},"frontend/application/app/shop/loading.tsx":{"size":1596,"mtime_ns":1787645037380267900,"indexed_at_ns":1787726734691441600,"word_count":144},"frontend/application/app/shop/page.tsx":{"size":2715,"mtime_ns":1787644197146199100,"indexed_at_ns":1787726734698441300,"word_count":295},"frontend/application/app/sitemap-categories.xml/route.ts":{"size":1797,"mtime_ns":1787578481507462100,"indexed_at_ns":1787726734703951500,"word_count":179},"frontend/application/app/sitemap-products.xml/route.ts":{"size":1980,"mtime_ns":1787578481508464300,"indexed_at_ns":1787726734710719000,"word_count":186},"frontend/application/app/sitemap.ts":{"size":3510,"mtime_ns":1787578481510463300,"indexed_at_ns":1787726734715717900,"word_count":350},"frontend/application/app/track/page.tsx":{"size":612,"mtime_ns":1787139270984213600,"indexed_at_ns":1787726734723190300,"word_count":60},"frontend/application/app/trust-seals/page.tsx":{"size":7155,"mtime_ns":1787394001609306700,"indexed_at_ns":1787726734729188900,"word_count":566},"frontend/application/app/videos/page.tsx":{"size":2822,"mtime_ns":1787644197147196700,"indexed_at_ns":1787726734735191600,"word_count":266},"frontend/application/app/wiki/[slug]/page.tsx":{"size":8912,"mtime_ns":1787644197149197300,"indexed_at_ns":1787726734743193100,"word_count":702},"frontend/application/app/wiki/page.tsx":{"size":910,"mtime_ns":1787139270987830800,"indexed_at_ns":1787726734749703000,"word_count":85},"frontend/application/components/AddressModal.tsx":{"size":16470,"mtime_ns":1787739535190383900,"indexed_at_ns":1787739632847264500,"word_count":1146},"frontend/application/components/ArchivePage.tsx":{"size":38764,"mtime_ns":1788587906746671000,"indexed_at_ns":1788608124325220700,"word_count":3002},"frontend/application/components/AuthModal.tsx":{"size":55557,"mtime_ns":1787741599341881000,"indexed_at_ns":1787741688145548900,"word_count":3610},"frontend/application/components/B2BLandingClient.tsx":{"size":25866,"mtime_ns":1787645037381267600,"indexed_at_ns":1787726734774269600,"word_count":1824},"frontend/application/components/B2BPortal.tsx":{"size":14014,"mtime_ns":1786894580156857600,"indexed_at_ns":1787726734780287600,"word_count":1094},"frontend/application/components/BackButton.tsx":{"size":1120,"mtime_ns":1786965281357277800,"indexed_at_ns":1787726734786847300,"word_count":117},"frontend/application/components/BannerPlacement.tsx":{"size":7703,"mtime_ns":1788346274841175500,"indexed_at_ns":1788608124349969300,"word_count":527},"frontend/application/components/BlogPage.tsx":{"size":21976,"mtime_ns":1787729523446453700,"indexed_at_ns":1787729932775425100,"word_count":1583},"frontend/application/components/BlogPostClient.tsx":{"size":20329,"mtime_ns":1787740536679696900,"indexed_at_ns":1787741544522017800,"word_count":1361},"frontend/application/components/BlogPreviewSection.tsx":{"size":7925,"mtime_ns":1788345971093472400,"indexed_at_ns":1788608124366176400,"word_count":567},"frontend/application/components/BrandLogo.tsx":{"size":3307,"mtime_ns":1787564348690862200,"indexed_at_ns":1787726734819682600,"word_count":287},"frontend/application/components/CartDrawer.tsx":{"size":22052,"mtime_ns":1787733215548980400,"indexed_at_ns":1787737992400541400,"word_count":1448},"frontend/application/components/CheckoutPage.tsx":{"size":48510,"mtime_ns":1788595515841005300,"indexed_at_ns":1788608124380746700,"word_count":3241},"frontend/application/components/ContactFormClient.tsx":{"size":10833,"mtime_ns":1787729527935396400,"indexed_at_ns":1787729932808029300,"word_count":784},"frontend/application/components/DeleteConfirmModal.tsx":{"size":2328,"mtime_ns":1786799852608752300,"indexed_at_ns":1787726734845321800,"word_count":195},"frontend/application/components/EnamadBadge.tsx":{"size":1516,"mtime_ns":1786799852612361900,"indexed_at_ns":1787726734850835400,"word_count":114},"frontend/application/components/ErrorBoundary.tsx":{"size":2617,"mtime_ns":1786799852614549600,"indexed_at_ns":1787726734857066500,"word_count":235},"frontend/application/components/ErrorPages.tsx":{"size":2809,"mtime_ns":1787661485945074600,"indexed_at_ns":1787726734862654700,"word_count":243},"frontend/application/components/FAQSection.tsx":{"size":5086,"mtime_ns":1787729995239614600,"indexed_at_ns":1787733017983672300,"word_count":414},"frontend/application/components/FeaturedProducts.tsx":{"size":11944,"mtime_ns":1788354488239705800,"indexed_at_ns":1788608124418136900,"word_count":1041},"frontend/application/components/Footer.tsx":{"size":14945,"mtime_ns":1788349370985831800,"indexed_at_ns":1788608124424181700,"word_count":996},"frontend/application/components/Header.tsx":{"size":33116,"mtime_ns":1788346274842183200,"indexed_at_ns":1788608124429851700,"word_count":2234},"frontend/application/components/HeaderButton.tsx":{"size":2242,"mtime_ns":1786799852637156100,"indexed_at_ns":1787726734893172700,"word_count":208},"frontend/application/components/Hero.tsx":{"size":20159,"mtime_ns":1788354488241306800,"indexed_at_ns":1788608124439859300,"word_count":1652},"frontend/application/components/IngredientWiki.tsx":{"size":20337,"mtime_ns":1786965281374206800,"indexed_at_ns":1787726734906680500,"word_count":1496},"frontend/application/components/LoginModal.tsx":{"size":13846,"mtime_ns":1786885876932267500,"indexed_at_ns":1787726734914249200,"word_count":1121},"frontend/application/components/MaintenancePage.tsx":{"size":3686,"mtime_ns":1786946249984693000,"indexed_at_ns":1787726734921249900,"word_count":313},"frontend/application/components/NetworkBanner.tsx":{"size":2350,"mtime_ns":1786799852662138900,"indexed_at_ns":1787726734928082300,"word_count":214},"frontend/application/components/OrderDetailsModal.tsx":{"size":36797,"mtime_ns":1788607435004711800,"indexed_at_ns":1788608124473104900,"word_count":2547},"frontend/application/components/OrderSuccess.tsx":{"size":6396,"mtime_ns":1786799852665542300,"indexed_at_ns":1787726734947087000,"word_count":521},"frontend/application/components/OrderTracking.tsx":{"size":9269,"mtime_ns":1787729527937447000,"indexed_at_ns":1787729932896464500,"word_count":681},"frontend/application/components/PetProfile.tsx":{"size":83314,"mtime_ns":1787564348695930500,"indexed_at_ns":1787726734959758100,"word_count":5882},"frontend/application/components/PodcastInlinePlayer.tsx":{"size":18123,"mtime_ns":1787993003774220500,"indexed_at_ns":1787997306151429500,"word_count":1464},"frontend/application/components/PodcastPlayerModal.tsx":{"size":18105,"mtime_ns":1787748657155136900,"indexed_at_ns":1787748748510048700,"word_count":1487},"frontend/application/components/PrescriptionUploadModal.tsx":{"size":19183,"mtime_ns":1787741735267947500,"indexed_at_ns":1787741779220211300,"word_count":1356},"frontend/application/components/ProductPage.tsx":{"size":93200,"mtime_ns":1788337303758174500,"indexed_at_ns":1788337670383858200,"word_count":6672},"frontend/application/components/ProductReviews.tsx":{"size":16113,"mtime_ns":1788333723592862900,"indexed_at_ns":1788333815613251700,"word_count":1195},"frontend/application/components/SafeImage.tsx":{"size":4289,"mtime_ns":1788354488242911600,"indexed_at_ns":1788608124543408700,"word_count":399},"frontend/application/components/SearchResultsPage.tsx":{"size":8335,"mtime_ns":1786799852701578200,"indexed_at_ns":1787726735012019400,"word_count":594},"frontend/application/components/SearchableSelect.tsx":{"size":4375,"mtime_ns":1785575516155554800,"indexed_at_ns":1787726735019020000,"word_count":336},"frontend/application/components/Skeleton.tsx":{"size":3084,"mtime_ns":1783764561943996900,"indexed_at_ns":1787726735026024900,"word_count":291},"frontend/application/components/SmartAdvisor.tsx":{"size":37402,"mtime_ns":1788587906747669800,"indexed_at_ns":1788608124565416700,"word_count":2836},"frontend/application/components/TestimonialsSection.tsx":{"size":6677,"mtime_ns":1788346274843208600,"indexed_at_ns":1788608124571187900,"word_count":516},"frontend/application/components/TickerBanner.tsx":{"size":1605,"mtime_ns":1786885876960835800,"indexed_at_ns":1787726735043649000,"word_count":140},"frontend/application/components/Tooltip.tsx":{"size":5237,"mtime_ns":1788333306923629700,"indexed_at_ns":1788333673999170900,"word_count":438},"frontend/application/components/TopUpModal.tsx":{"size":9381,"mtime_ns":1787406597303349300,"indexed_at_ns":1787726735057286900,"word_count":741},"frontend/application/components/UserDashboard.tsx":{"size":97844,"mtime_ns":1788607306532469100,"indexed_at_ns":1788608124591981100,"word_count":6202},"frontend/application/components/VetGallery.tsx":{"size":8392,"mtime_ns":1788346274844355400,"indexed_at_ns":1788608124598520700,"word_count":653},"frontend/application/components/VideoModalPlayer.tsx":{"size":24822,"mtime_ns":1787993003775855300,"indexed_at_ns":1787997306253976800,"word_count":1846},"frontend/application/components/VideosPage.tsx":{"size":8815,"mtime_ns":1787729523450452600,"indexed_at_ns":1787729932995147700,"word_count":672},"frontend/application/components/__tests__/CartDrawer.test.tsx":{"size":3197,"mtime_ns":1786799852761825800,"indexed_at_ns":1787726735089813300,"word_count":285},"frontend/application/components/__tests__/FeaturedProducts.test.tsx":{"size":2922,"mtime_ns":1787729523451454700,"indexed_at_ns":1787729933006280300,"word_count":246},"frontend/application/components/__tests__/Footer.test.tsx":{"size":1200,"mtime_ns":1787729523452453700,"indexed_at_ns":1787729933012281300,"word_count":97},"frontend/application/components/__tests__/Header.test.tsx":{"size":3336,"mtime_ns":1787729523452453700,"indexed_at_ns":1787729933018310200,"word_count":266},"frontend/application/components/__tests__/Hero.test.tsx":{"size":1980,"mtime_ns":1786799852776010800,"indexed_at_ns":1787726735115917200,"word_count":192},"frontend/application/components/__tests__/Tooltip.test.tsx":{"size":1508,"mtime_ns":1786799852784348900,"indexed_at_ns":1787726735121917300,"word_count":137},"frontend/application/components/catalog/CatalogPageSpread.tsx":{"size":27337,"mtime_ns":1788351605804884100,"indexed_at_ns":1788608124652342700,"word_count":2162},"frontend/application/components/catalog/FlipbookCatalog.tsx":{"size":36610,"mtime_ns":1787738052869335500,"indexed_at_ns":1787738361662030900,"word_count":3147},"frontend/application/components/catalog/ProductDetailModal.tsx":{"size":8265,"mtime_ns":1787981163247727400,"indexed_at_ns":1787981250441706300,"word_count":589},"frontend/application/eslint.config.mjs":{"size":747,"mtime_ns":1787148092358055900,"indexed_at_ns":1787726735150541200,"word_count":61},"frontend/application/lib/data/products.ts":{"size":104414,"mtime_ns":1788351605806390800,"indexed_at_ns":1788608124674690000,"word_count":9765},"frontend/application/lib/data/provinces.ts":{"size":2993,"mtime_ns":1785571725610676000,"indexed_at_ns":1787726735166169300,"word_count":203},"frontend/application/lib/data/scientificTerms.ts":{"size":18042,"mtime_ns":1786958978743097300,"indexed_at_ns":1787726735173169300,"word_count":1756},"frontend/application/lib/fonts.ts":{"size":561,"mtime_ns":1788351855943419900,"indexed_at_ns":1788608124691696500,"word_count":55},"frontend/application/lib/hooks/useNetworkStatus.ts":{"size":610,"mtime_ns":1786799852793488000,"indexed_at_ns":1787726735185762100,"word_count":59},"frontend/application/lib/schema.ts":{"size":7336,"mtime_ns":1787644197156205400,"indexed_at_ns":1787726735192345800,"word_count":609},"frontend/application/lib/seo.ts":{"size":9685,"mtime_ns":1788587906749774900,"indexed_at_ns":1788608124712831100,"word_count":837},"frontend/application/lib/services/api.ts":{"size":3694,"mtime_ns":1787997670265470700,"indexed_at_ns":1787998035733091300,"word_count":391},"frontend/application/lib/services/authService.ts":{"size":4524,"mtime_ns":1786885876986184800,"indexed_at_ns":1787726735211416700,"word_count":509},"frontend/application/lib/services/orderService.ts":{"size":2428,"mtime_ns":1786799852810726500,"indexed_at_ns":1787726735217187400,"word_count":279},"frontend/application/lib/services/productService.ts":{"size":14085,"mtime_ns":1788354488244444100,"indexed_at_ns":1788608124734055200,"word_count":1287},"frontend/application/lib/services/ticketService.ts":{"size":1569,"mtime_ns":1786890779340901800,"indexed_at_ns":1787726735230632600,"word_count":170},"frontend/application/lib/services/videoService.ts":{"size":1867,"mtime_ns":1787993003779460300,"indexed_at_ns":1787997306396146000,"word_count":210},"frontend/application/lib/store/__tests__/cartStore.test.ts":{"size":4430,"mtime_ns":1786799852822036900,"indexed_at_ns":1787726735244738400,"word_count":386},"frontend/application/lib/store/__tests__/settingsStore.test.ts":{"size":1949,"mtime_ns":1783856793043803200,"indexed_at_ns":1787726735251871200,"word_count":194},"frontend/application/lib/store/__tests__/userStore.test.ts":{"size":3639,"mtime_ns":1786799852825547700,"indexed_at_ns":1787726735257815200,"word_count":289},"frontend/application/lib/store/cartStore.ts":{"size":6972,"mtime_ns":1787660831220289700,"indexed_at_ns":1787726735265091600,"word_count":697},"frontend/application/lib/store/settingsStore.ts":{"size":3630,"mtime_ns":1786948119787096800,"indexed_at_ns":1787726735271091300,"word_count":371},"frontend/application/lib/store/uiStore.ts":{"size":872,"mtime_ns":1786799852833588000,"indexed_at_ns":1787726735277092600,"word_count":100},"frontend/application/lib/store/usePetStore.ts":{"size":8680,"mtime_ns":1786954681845300600,"indexed_at_ns":1787726735283172200,"word_count":850},"frontend/application/lib/store/userStore.ts":{"size":10602,"mtime_ns":1788607172861257300,"indexed_at_ns":1788608124789741800,"word_count":918},"frontend/application/lib/types.ts":{"size":2222,"mtime_ns":1787729527940443900,"indexed_at_ns":1787729933167879300,"word_count":239},"frontend/application/lib/utils.ts":{"size":478,"mtime_ns":1786799852847284000,"indexed_at_ns":1787726735301154500,"word_count":61},"frontend/application/next.config.ts":{"size":3153,"mtime_ns":1788353540761527200,"indexed_at_ns":1788608124808716400,"word_count":279},"frontend/application/package.json":{"size":879,"mtime_ns":1788000055992497300,"indexed_at_ns":1788000470956192900,"word_count":74,"hashes":{"frontend/application/package.json":"7a1fa68660fc9ab2089ea4e22c7d889b8efd8dbdc9faf56ce7d354319ac081b9"}},"frontend/application/postcss.config.mjs":{"size":94,"mtime_ns":1783764561988252100,"indexed_at_ns":1787726735322173300,"word_count":13},"frontend/application/public/assets/images/canina-product-placeholder.png":{"size":6990105,"mtime_ns":1787461919505024400,"indexed_at_ns":1787726735328171600,"word_count":267685},"frontend/application/public/assets/images/regenerated_image_1779109861747.png":{"size":2269101,"mtime_ns":1783764562014110300,"indexed_at_ns":1787726735596033500,"word_count":84979},"frontend/application/public/file.svg":{"size":391,"mtime_ns":1783764562016213600,"indexed_at_ns":1787726735643616000,"word_count":50},"frontend/application/public/fonts/A-Iranian-Sans/A-Iranian-Sans/read me!.txt":{"size":281,"mtime_ns":1783856793098052000,"indexed_at_ns":1787726735668659800,"word_count":15},"frontend/application/public/fonts/IranNastaliq/IranNastaliq/read me!.txt":{"size":281,"mtime_ns":1783856793107660400,"indexed_at_ns":1787726735694207900,"word_count":15},"frontend/application/public/fonts/sahel-font-v3.4.0/CHANGELOG.md":{"size":8519,"mtime_ns":1783856793113660500,"indexed_at_ns":1787726739908406400,"word_count":1077,"hashes":{"frontend/application/public/fonts/sahel-font-v3.4.0/changelog.md":"be9b046e69dc5442c30d61cca51a69e4238f861da265d1ce8cd0192bafce40a9"}},"frontend/application/public/fonts/sahel-font-v3.4.0/README.md":{"size":4136,"mtime_ns":1783856793156251700,"indexed_at_ns":1787726739909406300,"word_count":366,"hashes":{"frontend/application/public/fonts/sahel-font-v3.4.0/readme.md":"9b0e689f6474b487d70db0ecb05321072f15df92266522497b60aaa47579aac5"}},"frontend/application/public/fonts/sahel-font-v3.4.0/sample-variable.gif":{"size":236102,"mtime_ns":1783856793229119700,"indexed_at_ns":1787726736213031900,"word_count":10881},"frontend/application/public/fonts/shabnam-font-v5.0.1/CHANGELOG.md":{"size":7177,"mtime_ns":1783856793230118600,"indexed_at_ns":1787726736225832200,"word_count":951},"frontend/application/public/fonts/shabnam-font-v5.0.1/README.md":{"size":3696,"mtime_ns":1783856793279542700,"indexed_at_ns":1787726736475009300,"word_count":283},"frontend/application/public/fonts/shabnam-font-v5.0.1/sample.png":{"size":85019,"mtime_ns":1783856793315146800,"indexed_at_ns":1787726736717303100,"word_count":2615},"frontend/application/public/fonts/vazirmatn-v33.003/AUTHORS.txt":{"size":339,"mtime_ns":1783856793316155600,"indexed_at_ns":1787726736727313200,"word_count":55},"frontend/application/public/fonts/vazirmatn-v33.003/CHANGELOG.md":{"size":38550,"mtime_ns":1783856793317690100,"indexed_at_ns":1787726736736959200,"word_count":5086},"frontend/application/public/fonts/vazirmatn-v33.003/OFL.txt":{"size":4391,"mtime_ns":1783856793319422000,"indexed_at_ns":1787726736744957500,"word_count":671},"frontend/application/public/fonts/vazirmatn-v33.003/README.md":{"size":2339,"mtime_ns":1783856793320489000,"indexed_at_ns":1787726736753050400,"word_count":270},"frontend/application/public/fonts/vazirmatn-v33.003/\u0631\u0627\u0647\u0646\u0645\u0627.txt":{"size":211,"mtime_ns":1783856793668096800,"indexed_at_ns":1787726738964542200,"word_count":14},"frontend/application/public/globe.svg":{"size":1035,"mtime_ns":1783764562016720700,"indexed_at_ns":1787726738969546300,"word_count":154},"frontend/application/public/images/vets/vet1.webp":{"size":6990105,"mtime_ns":1787461919541761600,"indexed_at_ns":1787726738988845300,"word_count":267685},"frontend/application/public/next.svg":{"size":1375,"mtime_ns":1783764562018238900,"indexed_at_ns":1787726739135424800,"word_count":183},"frontend/application/public/vercel.svg":{"size":128,"mtime_ns":1783764562019253000,"indexed_at_ns":1787726739141424700,"word_count":12},"frontend/application/public/window.svg":{"size":385,"mtime_ns":1783764562019253000,"indexed_at_ns":1787726739147423800,"word_count":63},"frontend/application/tsconfig.json":{"size":750,"mtime_ns":1786799852865640000,"indexed_at_ns":1787726739800717100,"word_count":61,"hashes":{"frontend/application/tsconfig.json":"adcade0f962ec5888be99b4b1402d98812cfd570b0c5669bda73142b2cb9210d"}},"frontend/application/vitest.config.ts":{"size":244,"mtime_ns":1786799852868652900,"indexed_at_ns":1787726739161997600,"word_count":25},"frontend/application/vitest.setup.ts":{"size":1237,"mtime_ns":1787729523454452000,"indexed_at_ns":1787729936531670400,"word_count":141},"manual-test-scenarios.md":{"size":0,"mtime_ns":1787729528073006400,"indexed_at_ns":1787729937354455500,"word_count":0,"hashes":{"manual-test-scenarios.md":"c6e53ad8216c7ae7d9e1449511caca4c768d1c68b0b859ae24f0add4afe8e502"}},"metadata.json":{"size":334,"mtime_ns":1783856793672137200,"indexed_at_ns":1787726739801716800,"word_count":35,"hashes":{"metadata.json":"c44b4c4ba60752554ceae65e2f22bddb756cbeb25a4a31ee79160b6eb182255a"}},"package.json":{"size":1237,"mtime_ns":1787729528076005200,"indexed_at_ns":1787729937137155800,"word_count":136,"hashes":{"package.json":"3ca5b265c68cc5660e5fd57b0aeb13de7eb49732740eafe405f6f0804671ceeb"}},"playwright.config.ts":{"size":2710,"mtime_ns":1787729528077005300,"indexed_at_ns":1787729936552986300,"word_count":270},"prometheus.yml":{"size":164,"mtime_ns":1783764562027779300,"indexed_at_ns":1787726739197125100,"word_count":13},"scripts/backup_db.sh":{"size":1362,"mtime_ns":1786799852876784600,"indexed_at_ns":1787726739803716600,"word_count":134,"hashes":{"scripts/backup_db.sh":"f90cf2d0c954f3eaca83566ccb365bff62fd97a2af0225816c19902ee4dfdd6c"}},"scripts/compose.prod.yml":{"size":2248,"mtime_ns":1787998075631988900,"indexed_at_ns":1787998966532164100,"word_count":126},"scripts/compose.stage.yml":{"size":2557,"mtime_ns":1787077093991779700,"indexed_at_ns":1787726739215476500,"word_count":137},"scripts/deploy.sh":{"size":3346,"mtime_ns":1787136904559094200,"indexed_at_ns":1787726739805264300,"word_count":351,"hashes":{"scripts/deploy.sh":"64d276bb6eb6cfb83690c529b9d1c0c71fa46aa912a458f684dfcf842fab2aea"}},"scripts/open-browsers.js":{"size":1551,"mtime_ns":1788000056009180700,"indexed_at_ns":1788000469601092500,"word_count":202},"scripts/start-dev.js":{"size":1689,"mtime_ns":1787997670335055900,"indexed_at_ns":1787998039460221000,"word_count":186},"start.sh":{"size":26,"mtime_ns":1784033954813080300,"indexed_at_ns":1787726739806268200,"word_count":4,"hashes":{"start.sh":"694c258b963c309734a3316c770f5fef29703bc6f24754b04155fd8db94cf862"}},"swagger.yml":{"size":95785,"mtime_ns":1786799852892091600,"indexed_at_ns":1787726739249239800,"word_count":7031},"test-coverage-map.md":{"size":13899,"mtime_ns":1787729528078006200,"indexed_at_ns":1787729937356455600,"word_count":1524,"hashes":{"test-coverage-map.md":"970d0bc2af7773ce27006da7c642991e3f094e71838201680fca7d9dfe809746"}},"tests/e2e/admin/admin-b2b-submissions.spec.ts":{"size":8979,"mtime_ns":1787729528080005900,"indexed_at_ns":1787729936612960300,"word_count":742},"tests/e2e/admin/admin-blogs-crud.spec.ts":{"size":5540,"mtime_ns":1787729528080005900,"indexed_at_ns":1787729936618959100,"word_count":490},"tests/e2e/admin/admin-crud.spec.ts":{"size":6485,"mtime_ns":1787729528081005800,"indexed_at_ns":1787729936623995800,"word_count":569},"tests/e2e/admin/admin-orders-flow.spec.ts":{"size":4130,"mtime_ns":1787729528082005000,"indexed_at_ns":1787729936630000900,"word_count":352},"tests/e2e/admin/admin-rbac-roles.spec.ts":{"size":4011,"mtime_ns":1787729528083005700,"indexed_at_ns":1787729936634530400,"word_count":327},"tests/e2e/security/xss-ratelimit.spec.ts":{"size":5646,"mtime_ns":1787729528085005800,"indexed_at_ns":1787729936640566600,"word_count":491},"tests/e2e/storefront/auth-otp-recovery.spec.ts":{"size":4540,"mtime_ns":1787729528086009200,"indexed_at_ns":1787729936646208300,"word_count":384},"tests/e2e/storefront/b2b-flow.spec.ts":{"size":3521,"mtime_ns":1787729528086516700,"indexed_at_ns":1787729936650784800,"word_count":288},"tests/e2e/storefront/blog-wiki.spec.ts":{"size":2107,"mtime_ns":1787729528087532400,"indexed_at_ns":1787729936656754300,"word_count":185},"tests/e2e/storefront/cart-operations.spec.ts":{"size":3910,"mtime_ns":1787729528089034600,"indexed_at_ns":1787729936662399200,"word_count":332},"tests/e2e/storefront/checkout-flow.spec.ts":{"size":2766,"mtime_ns":1787729528089034600,"indexed_at_ns":1787729936667403000,"word_count":251},"tests/e2e/storefront/concurrency-stock.spec.ts":{"size":5868,"mtime_ns":1787729528090041700,"indexed_at_ns":1787729936673410700,"word_count":537},"tests/e2e/storefront/contact.spec.ts":{"size":2899,"mtime_ns":1787729528091042800,"indexed_at_ns":1787729936678440900,"word_count":238},"tests/e2e/storefront/error-pages-404-500.spec.ts":{"size":1238,"mtime_ns":1787729528092042000,"indexed_at_ns":1787729936683435600,"word_count":121},"tests/e2e/storefront/order-tracking.spec.ts":{"size":3125,"mtime_ns":1787729528093041900,"indexed_at_ns":1787729936689592900,"word_count":282},"tests/e2e/storefront/shop-filter-search.spec.ts":{"size":2151,"mtime_ns":1787729528094048800,"indexed_at_ns":1787729936695374800,"word_count":187},"tests/fixtures/admin-auth.setup.ts":{"size":1950,"mtime_ns":1787729528095047800,"indexed_at_ns":1787729936700406800,"word_count":195},"tests/fixtures/index.ts":{"size":194,"mtime_ns":1787729528095047800,"indexed_at_ns":1787729936705408800,"word_count":32},"tsconfig.json":{"size":439,"mtime_ns":1787729528096047500,"indexed_at_ns":1787729937145762700,"word_count":37,"hashes":{"tsconfig.json":"12f2e30da1a34da7d06440370b7d1930cd5a3c3293f485789f5cfa2434aeea6f"}},"frontend/application/app/smart-advisor/page.tsx":{"size":2634,"mtime_ns":1787740536678699600,"indexed_at_ns":1787741544436016800,"word_count":232},"frontend/application/app/dashboard/orders/page.tsx":{"size":132,"mtime_ns":1787741941302806200,"indexed_at_ns":1787741982449356000,"word_count":13},"frontend/application/app/dashboard/pets/page.tsx":{"size":128,"mtime_ns":1787741941303809300,"indexed_at_ns":1787741982462112200,"word_count":13},"frontend/application/components/ProductImageZoomModal.tsx":{"size":12596,"mtime_ns":1788608060800115500,"indexed_at_ns":1788608124519382100,"word_count":1139},"frontend/application/app/api/media/[...path]/route.ts":{"size":6739,"mtime_ns":1788353078508488900,"indexed_at_ns":1788608124068410300,"word_count":613},"frontend/application/app/api/uploads/[...path]/route.ts":{"size":6805,"mtime_ns":1788353078510085700,"indexed_at_ns":1788608124086973600,"word_count":622},"frontend/application/lib/media.ts":{"size":2051,"mtime_ns":1788353540759919900,"indexed_at_ns":1788608124702730800,"word_count":227},"frontend/application/components/NavigationProgressBar.tsx":{"size":3658,"mtime_ns":1787999006325061100,"indexed_at_ns":1787999346873063500,"word_count":380},"frontend/application/app/api/torob/products/route.ts":{"size":6649,"mtime_ns":1788328838746612700,"indexed_at_ns":1788330894736956000,"word_count":738},"backend/src/products/torob.controller.ts":{"size":6562,"mtime_ns":1788334048806380400,"indexed_at_ns":1788334713978590500,"word_count":681},"backend/src/admin/dto/pricing.dto.ts":{"size":5033,"mtime_ns":1788334048800615600,"indexed_at_ns":1788334713321316900,"word_count":444},"backend/src/common/utils/pricing.utils.ts":{"size":1516,"mtime_ns":1788330948589741100,"indexed_at_ns":1788332263529713900,"word_count":205},"frontend/admin-panel/src/utils/pricing.ts":{"size":1127,"mtime_ns":1788330948594740900,"indexed_at_ns":1788332268764720100,"word_count":147},"backend/src/common/services/sms-events.constants.ts":{"size":10144,"mtime_ns":1788607875323651200,"indexed_at_ns":1788608118794103200,"word_count":956},"frontend/application/components/AnalyticsDeferred.tsx":{"size":3286,"mtime_ns":1788608043344855000,"indexed_at_ns":1788608124319442200,"word_count":303},"frontend/application/public/images/favicons/android-chrome-192x192.png":{"size":62883,"mtime_ns":1788587906752677800,"indexed_at_ns":1788608128262720100,"word_count":2247},"frontend/application/public/images/favicons/android-chrome-512x512.png":{"size":395793,"mtime_ns":1788587906757218700,"indexed_at_ns":1788608128270717200,"word_count":13917},"frontend/application/public/images/favicons/apple-touch-icon.png":{"size":56230,"mtime_ns":1788587906759218700,"indexed_at_ns":1788608128285373300,"word_count":2032},"frontend/application/public/images/favicons/favicon-16x16.png":{"size":943,"mtime_ns":1788587906761187700,"indexed_at_ns":1788608128293375000,"word_count":36},"frontend/application/public/images/favicons/favicon-32x32.png":{"size":2797,"mtime_ns":1788587906763190700,"indexed_at_ns":1788608128300378400,"word_count":103}} \ No newline at end of file +{".agents/rules/graphify.md":{"size":933,"mtime_ns":1786870552830271100,"indexed_at_ns":1787726739808807000,"word_count":127,"hashes":{".agents/rules/graphify.md":"26f2577a68d808f7f33ec3e418b95b635aec180d93b22b975e9ae67c47e361c8"}},".agents/workflows/graphify.md":{"size":229,"mtime_ns":1786870552832398300,"indexed_at_ns":1787726739809809700,"word_count":37,"hashes":{".agents/workflows/graphify.md":"a81e2d017e0669c71099362b20854e4d9ed68753f1c240d0682120bdb9aa3c72"}},".ai_agency/AGENCY.md":{"size":8757,"mtime_ns":1785148021979607300,"indexed_at_ns":1787726739810808600,"word_count":1161,"hashes":{".ai_agency/agency.md":"88c7c13583a91fc7e41ce055fede9dce20f181e8d264557808989965e83a9030"}},".ai_agency/agents/00_intake.md":{"size":3819,"mtime_ns":1785148021984319000,"indexed_at_ns":1787726739811809900,"word_count":500,"hashes":{".ai_agency/agents/00_intake.md":"9dc8d7eeda0655717dc5b9d2f8572c47567b88ca88de7e4e5bf59869077ff407"}},".ai_agency/agents/01_auditor.md":{"size":3643,"mtime_ns":1785148021987782800,"indexed_at_ns":1787726739813809800,"word_count":467,"hashes":{".ai_agency/agents/01_auditor.md":"37ae09614034d9b5c855e0132b59a5e3cfd2fc38c54d1a5386fa43ba488c4d4d"}},".ai_agency/agents/02_ceo.md":{"size":2341,"mtime_ns":1785148021998374800,"indexed_at_ns":1787726739814809500,"word_count":294,"hashes":{".ai_agency/agents/02_ceo.md":"b4a76df6483fd52e1b9f1e70765b3f7b6d134dc003ef2ad0cb86b952c869c4a5"}},".ai_agency/agents/03_product_manager.md":{"size":8422,"mtime_ns":1785148022001968200,"indexed_at_ns":1787726739815810200,"word_count":1076,"hashes":{".ai_agency/agents/03_product_manager.md":"1927827474b1dd6fd4976af45b51f1ad3128fe3305c3af22639ab2584e8f0b55"}},".ai_agency/agents/04_architect.md":{"size":3603,"mtime_ns":1785148022004966000,"indexed_at_ns":1787726739816809500,"word_count":448,"hashes":{".ai_agency/agents/04_architect.md":"c96b04d5af093f455fa3c64ae177a69421e8150eb38c70bb8587b5a14e7d3ca8"}},".ai_agency/agents/05_dev_backend.md":{"size":7142,"mtime_ns":1785148022012481200,"indexed_at_ns":1787726739817810300,"word_count":953,"hashes":{".ai_agency/agents/05_dev_backend.md":"143a7c8a6fbedcd837d647efddb9f6b49074583502bd77f24c955bd86a6f3df8"}},".ai_agency/agents/06_dev_frontend.md":{"size":7518,"mtime_ns":1785148022017020100,"indexed_at_ns":1787726739819343800,"word_count":1011,"hashes":{".ai_agency/agents/06_dev_frontend.md":"e69679636d42dd626c7c76ddc96e1ddb656ab5b9ee912b89adcc7a9338f34a0b"}},".ai_agency/agents/07_qa_engineer.md":{"size":3764,"mtime_ns":1785148022020044600,"indexed_at_ns":1787726739820379800,"word_count":507,"hashes":{".ai_agency/agents/07_qa_engineer.md":"2616ef2b3ac39ded45fc669d5b5b140e72953fe61a819966fb040382e9b47d45"}},".ai_agency/agents/08_visual_qa.md":{"size":7910,"mtime_ns":1785148022030083200,"indexed_at_ns":1787726739821353800,"word_count":1121,"hashes":{".ai_agency/agents/08_visual_qa.md":"17a5a74039e8a9d7cb40c5bc3c616c7c92d53401efd92d0675d4bbe5e90572a8"}},".ai_agency/agents/09_devops_security.md":{"size":6825,"mtime_ns":1785148022034087400,"indexed_at_ns":1787726739822379900,"word_count":908,"hashes":{".ai_agency/agents/09_devops_security.md":"315bd3cee954ac3496da8db1b1718b75ab3822ec3a90f99bc77767ca99482edf"}},".ai_agency/agents/10_tech_writer.md":{"size":3119,"mtime_ns":1785148022037082600,"indexed_at_ns":1787726739824378500,"word_count":408,"hashes":{".ai_agency/agents/10_tech_writer.md":"3527b44265fec2472cc20ca4641667e1fa3d38cbc9b2fbf9a946ee1e531e9e37"}},".ai_agency/agents/11_deploy.md":{"size":3956,"mtime_ns":1785148022040602600,"indexed_at_ns":1787726739825379700,"word_count":537,"hashes":{".ai_agency/agents/11_deploy.md":"8169bc98b249cd83ba21551dea082f69dfa6deca5f5e4a7f2739a28746c143f9"}},".ai_agency/agents/12_seo_content.md":{"size":10963,"mtime_ns":1785148022048603900,"indexed_at_ns":1787726739826379900,"word_count":1539,"hashes":{".ai_agency/agents/12_seo_content.md":"2f50eb9db8bf1ad7bc23c7d8c3a4f167a2daafb73f095db9237c5bdb20e7a5f4"}},".ai_agency/memory/agent_outputs/README.txt":{"size":290,"mtime_ns":1785148022052150400,"indexed_at_ns":1787726728366347600,"word_count":34},".ai_agency/memory/backlog.json":{"size":10711,"mtime_ns":1785330750958890900,"indexed_at_ns":1787726739730126300,"word_count":981,"hashes":{".ai_agency/memory/backlog.json":"6bf3150a1877d03d03b368df21b84071381b1bb8cd03e3721fa9f8e6c38355be"}},".ai_agency/memory/scratchpad.md":{"size":1879,"mtime_ns":1785148022065114400,"indexed_at_ns":1787726739827380200,"word_count":249,"hashes":{".ai_agency/memory/scratchpad.md":"9d0f687cf8e95c6335f1efb070da8029878417c28117e3b89aa8536ad70a5b95"}},".ai_agency/memory/state.json":{"size":3654,"mtime_ns":1785330750963913800,"indexed_at_ns":1787726739754651600,"word_count":254,"hashes":{".ai_agency/memory/state.json":"1204676f8f295d89733888bb87936061b7a700df0cc936fbf08fd5269b534e8d"}},".ai_agency/orchestrate.py":{"size":6800,"mtime_ns":1785148022072662500,"indexed_at_ns":1787726739755649500,"word_count":644,"hashes":{".ai_agency/orchestrate.py":"90ec787fdd4c71f5203c56b6899aadcc26e6e0bad0cc576d2f982aa42eed42e1"}},".ai_agency/specs/api_contract.md":{"size":1515,"mtime_ns":1785148022077664900,"indexed_at_ns":1787726739828380100,"word_count":139,"hashes":{".ai_agency/specs/api_contract.md":"ea0911b6a5ad6a908ab707f7553f5f24712c1e198fd79255fa85e3249150e8b4"}},".ai_agency/specs/architecture_spec.md":{"size":790,"mtime_ns":1785148022082260900,"indexed_at_ns":1787726739829380100,"word_count":99,"hashes":{".ai_agency/specs/architecture_spec.md":"6269043f6a144e8ac86ff1db7e014075185e5675a4a0ee23e99e70d88253b8af"}},".ai_agency/specs/prd.md":{"size":724,"mtime_ns":1785148022087251600,"indexed_at_ns":1787726739830914500,"word_count":96,"hashes":{".ai_agency/specs/prd.md":"1c6d5a0ec8a709a2b3aed28225f5fe148ad2d75851d45699187678d055947b11"}},".ai_agency/specs/project_health.md":{"size":444,"mtime_ns":1785148022098314600,"indexed_at_ns":1787726739831950800,"word_count":65,"hashes":{".ai_agency/specs/project_health.md":"677c2f1d35c31d75d935766f154683e0483b08c696117ee612bee1528705c598"}},".ai_agency/specs/reviews/README.md":{"size":1029,"mtime_ns":1785148022105834900,"indexed_at_ns":1787726739832950700,"word_count":117,"hashes":{".ai_agency/specs/reviews/readme.md":"8ceb4cae1ad4c0f660557d827ced970cda8f7d020f8124b624b228174b1b65ab"}},".ai_agency/specs/reviews/backend_review.md":{"size":1430,"mtime_ns":1785148022110362400,"indexed_at_ns":1787726739834457300,"word_count":172,"hashes":{".ai_agency/specs/reviews/backend_review.md":"fca1f8d59c2eab255f7aba246b26731fe53f208e737ccf46035389591900a150"}},".ai_agency/specs/reviews/code_health_review.md":{"size":2193,"mtime_ns":1785148022114359700,"indexed_at_ns":1787726739835467400,"word_count":279,"hashes":{".ai_agency/specs/reviews/code_health_review.md":"532e04465e125183d6dd8f8af61bfc8735a514b3fbbc49069f5f0884155ed93f"}},".ai_agency/specs/reviews/frontend_review.md":{"size":1452,"mtime_ns":1785148022118486900,"indexed_at_ns":1787726739837467800,"word_count":183,"hashes":{".ai_agency/specs/reviews/frontend_review.md":"9f826c0267cad8bd5d342b1f908c927976d9be7da3f75b175331381ef8c8b680"}},".ai_agency/specs/reviews/security_review.md":{"size":874,"mtime_ns":1785148022121487200,"indexed_at_ns":1787726739838331800,"word_count":110,"hashes":{".ai_agency/specs/reviews/security_review.md":"51363e62e919d6772c2b3b9a1a3f3870a5892dae6d408217ed3fb475f72d3f0b"}},".ai_agency/specs/reviews/seo_content_review.md":{"size":1238,"mtime_ns":1785148022131533800,"indexed_at_ns":1787726739839755700,"word_count":156,"hashes":{".ai_agency/specs/reviews/seo_content_review.md":"bc8401649a86585b4061b3ec0f584910c54aad25bc9943392179bc070c07a434"}},".ai_agency/specs/reviews/ux_review.md":{"size":1131,"mtime_ns":1785148022136550700,"indexed_at_ns":1787726739840765700,"word_count":150,"hashes":{".ai_agency/specs/reviews/ux_review.md":"b8a52f324e36fcc2d046cc903a05903057098a67a397ae6442d6c825091f4513"}},".antigravity/instructions.md":{"size":226,"mtime_ns":1786870552833405800,"indexed_at_ns":1787726739842276100,"word_count":29,"hashes":{".antigravity/instructions.md":"8d8f5c1bbdbb7b8045e02b06a50e68d3fcfabfb2d65f8ac1cd86168dc8a8cc96"}},".antigravity/workflows/graphify.md":{"size":43292,"mtime_ns":1786870552837921500,"indexed_at_ns":1787726739843281500,"word_count":5442,"hashes":{".antigravity/workflows/graphify.md":"0c16b701a50d64f741f6de107c49584012a8dd7f5e922af9f79754540629e2fe"}},".claude/CLAUDE.md":{"size":226,"mtime_ns":1786870552838920200,"indexed_at_ns":1787726739845281600,"word_count":29,"hashes":{".claude/claude.md":"c6f7fc2f062904d246b700d446ba3ad03e77f41809b12eccfb5e090a11f4fad2"}},".claude/settings.json":{"size":479,"mtime_ns":1786870552841922800,"indexed_at_ns":1787726739757648600,"word_count":38,"hashes":{".claude/settings.json":"0aaafba2cbd7dd67f7d69fa2f01b747c9a72f56ee421a40825521f937caec82b"}},".claude/skills/graphify/SKILL.md":{"size":43292,"mtime_ns":1786870552845041000,"indexed_at_ns":1787726739846281500,"word_count":5442,"hashes":{".claude/skills/graphify/skill.md":"5b24d39cbbb662ea1cd672839f64b50823e1b7de9b113f542248eac38c70cdf1"}},".claude/skills/graphify/references/add-watch.md":{"size":2486,"mtime_ns":1786870552848102000,"indexed_at_ns":1787726739847281400,"word_count":366,"hashes":{".claude/skills/graphify/references/add-watch.md":"cb5e2f3284265c08c88c08f445b96958b13a9115c0afc0a33206c293d1b1c187"}},".claude/skills/graphify/references/exports.md":{"size":3362,"mtime_ns":1786870552849102100,"indexed_at_ns":1787726739848281300,"word_count":470,"hashes":{".claude/skills/graphify/references/exports.md":"7aa8b606e5c19334b6c9fe62a12fc30eb46c0320d1dbb5726cfda0becdd04a5a"}},".claude/skills/graphify/references/extraction-spec.md":{"size":7960,"mtime_ns":1786870552850101900,"indexed_at_ns":1787726739849713100,"word_count":1038,"hashes":{".claude/skills/graphify/references/extraction-spec.md":"9cf5d515d0d8584aeef36708df34f560078772a568ed599cac5ba20b089e563d"}},".claude/skills/graphify/references/github-and-merge.md":{"size":2177,"mtime_ns":1786870552853101000,"indexed_at_ns":1787726739850713300,"word_count":271,"hashes":{".claude/skills/graphify/references/github-and-merge.md":"609de4b1331ddb2f8c80e97aac0a5de782a373d6f5af858e10a731c20b35c0e2"}},".claude/skills/graphify/references/hooks.md":{"size":1267,"mtime_ns":1786870552855098700,"indexed_at_ns":1787726739852220900,"word_count":193,"hashes":{".claude/skills/graphify/references/hooks.md":"7c7827f2f29d6e2cb6cc6902558dac08380f60c414b4968f83e1bc4e61b3e268"}},".claude/skills/graphify/references/query.md":{"size":13456,"mtime_ns":1786870552857702900,"indexed_at_ns":1787726739853231100,"word_count":1763,"hashes":{".claude/skills/graphify/references/query.md":"54526cc3e2392922d344f14767f09037ef85fb7ec5cc7911b749b35bcb004fbf"}},".claude/skills/graphify/references/transcribe.md":{"size":3173,"mtime_ns":1786870552858710700,"indexed_at_ns":1787726739855230800,"word_count":418,"hashes":{".claude/skills/graphify/references/transcribe.md":"1d5afbaccf36e952e71082591edfc9e4fbd9946eb85b01855a1d0bd810b7623d"}},".claude/skills/graphify/references/update.md":{"size":10425,"mtime_ns":1786870552860709800,"indexed_at_ns":1787726739856230800,"word_count":1196,"hashes":{".claude/skills/graphify/references/update.md":"0249cd6ceae6effdfc7371b51d00c462f51d95700101dcedd36255bab1b4ce7a"}},".gemini/config/mcp_config.json":{"size":146,"mtime_ns":1787729527922392700,"indexed_at_ns":1787729937075859600,"word_count":15,"hashes":{".gemini/config/mcp_config.json":"5350ccca14cfd0cb47901b879636407765ead90ade58684cbe3bca634580cbd7"}},".gitea/scripts/with-vpn.sh":{"size":1794,"mtime_ns":1786799852126316200,"indexed_at_ns":1787726739759255200,"word_count":208,"hashes":{".gitea/scripts/with-vpn.sh":"9ec013d142e3cf5d7e5f09778fcb06b4b8ea7b394688f9f40b5e74298c76bcf0"}},".gitea/workflows/deploy.yml":{"size":993,"mtime_ns":1787078454762471500,"indexed_at_ns":1787726728591851200,"word_count":84},".gitea/workflows/e2e.yml":{"size":980,"mtime_ns":1787729527923391900,"indexed_at_ns":1787729927042405700,"word_count":98},".vscode/extensions.json":{"size":74,"mtime_ns":1787461919449307400,"indexed_at_ns":1787726739761255600,"word_count":6,"hashes":{".vscode/extensions.json":"57518c36999b5176c9e8617cf937f6e35b54ddd015305005d4611729d1d69177"}},"AGENTS.md":{"size":226,"mtime_ns":1786870552862708600,"indexed_at_ns":1787726739857230800,"word_count":29,"hashes":{"agents.md":"b664c2bb6d85e009d7495bcd9c3d52c419176473cd4e19362fd4256616076151"}},"BACKEND_INTEGRATION.md":{"size":15568,"mtime_ns":1786885876768825200,"indexed_at_ns":1787726728620874500,"word_count":1521},"CLAUDE.md":{"size":772,"mtime_ns":1786870552863710100,"indexed_at_ns":1787726739858230900,"word_count":106,"hashes":{"claude.md":"3612256e7473a2e5f67ef4778d4edeefb44794ef22bac5529bee9c87dc5d8f3d"}},"DATABASE_SCHEMA.md":{"size":15399,"mtime_ns":1786885876771342200,"indexed_at_ns":1787726728633463600,"word_count":1566},"README.md":{"size":13117,"mtime_ns":1786885876775371800,"indexed_at_ns":1787726728645776100,"word_count":1310},"backend/README.md":{"size":5028,"mtime_ns":1783764561601382400,"indexed_at_ns":1787726739859230700,"word_count":472,"hashes":{"backend/readme.md":"c3edfd26252566ef2ddee12c91a874b59e03a1656894d3db25209a0e4031010a"}},"backend/eslint.config.mjs":{"size":1649,"mtime_ns":1787073059105361700,"indexed_at_ns":1787726728676723300,"word_count":104},"backend/nest-cli.json":{"size":172,"mtime_ns":1787072106370561300,"indexed_at_ns":1787726739762253100,"word_count":13,"hashes":{"backend/nest-cli.json":"64fe2904203985aa0acb9b67d7ade489f2362ac8730283fb11d6a764d1cb3878"}},"backend/package.json":{"size":2903,"mtime_ns":1787644197137104200,"indexed_at_ns":1787726739763253000,"word_count":214,"hashes":{"backend/package.json":"164822617eb449e27d8e6a9ff13476f3b08fb3dcf5710289e85af9bf50ec39d5"}},"backend/prisma/migrations/20260526145407_init/migration.sql":{"size":8963,"mtime_ns":1783764561612007600,"indexed_at_ns":1787726739764254000,"word_count":936,"hashes":{"backend/prisma/migrations/20260526145407_init/migration.sql":"d6cc5e861e43bf82dcffe1ad7121fcbe9f74db7901cf204b5058da3132d3c1d2"}},"backend/prisma/migrations/20260526160916_add_ui_texts_and_scientific_terms/migration.sql":{"size":404,"mtime_ns":1783764561613425800,"indexed_at_ns":1787726739765254200,"word_count":48,"hashes":{"backend/prisma/migrations/20260526160916_add_ui_texts_and_scientific_terms/migration.sql":"c564f4aba35d32a733a5837c33664c68c8912277ad9645310f7e8116fbcba741"}},"backend/prisma/scientificTerms.ts":{"size":24298,"mtime_ns":1785325924634812500,"indexed_at_ns":1787726728717813800,"word_count":2294},"backend/prisma/seed-blogs.ts":{"size":6950,"mtime_ns":1786885876777374000,"indexed_at_ns":1787726728724742400,"word_count":620},"backend/prisma/seed-custom.ts":{"size":3836,"mtime_ns":1786799852144902000,"indexed_at_ns":1787726728731289500,"word_count":371},"backend/prisma/seed-home.ts":{"size":3870,"mtime_ns":1786885876779371100,"indexed_at_ns":1787726728738323600,"word_count":374},"backend/prisma/seed-products-data.json":{"size":59231,"mtime_ns":1788333723584557900,"indexed_at_ns":1788333819826304600,"word_count":5730,"hashes":{"backend/prisma/seed-products-data.json":"2c84695a0e1ce94406b8eb038936758a2dd27e22b5727051ea8d30749b4e9163"}},"backend/prisma/seed-products.ts":{"size":28268,"mtime_ns":1787127978219270600,"indexed_at_ns":1787726728749556400,"word_count":2063},"backend/prisma/seed-ui-texts.ts":{"size":9168,"mtime_ns":1787999006317919000,"indexed_at_ns":1787999341072321100,"word_count":758},"backend/prisma/seed-wiki.ts":{"size":24019,"mtime_ns":1786961195297596000,"indexed_at_ns":1787726728762216000,"word_count":2292},"backend/prisma/seed.ts":{"size":30480,"mtime_ns":1787127978225587600,"indexed_at_ns":1787726728769733300,"word_count":2636},"backend/prisma/tsconfig.json":{"size":194,"mtime_ns":1786961195300236300,"indexed_at_ns":1787726739768256500,"word_count":17,"hashes":{"backend/prisma/tsconfig.json":"0308b15b67bad714ff5f1b6b73f64ae46f98d5190cd6092abb1fb67885d67be1"}},"backend/prisma/tsconfig.seed.json":{"size":194,"mtime_ns":1786955870751259200,"indexed_at_ns":1787726739769256400,"word_count":17,"hashes":{"backend/prisma/tsconfig.seed.json":"e178d23a09563a7a9b348d905bc70322115514c78a7afcc5a53db7d18e511583"}},"backend/scripts/generate-openapi.d.ts":{"size":11,"mtime_ns":1786883225777483700,"indexed_at_ns":1787726728788027700,"word_count":2},"backend/scripts/generate-openapi.js":{"size":2965,"mtime_ns":1786883225779120000,"indexed_at_ns":1787726728794115400,"word_count":309},"backend/scripts/generate-openapi.ts":{"size":1421,"mtime_ns":1787729527925391800,"indexed_at_ns":1787729927210338500,"word_count":132},"backend/scripts/seo-backfill.ts":{"size":4551,"mtime_ns":1787729527925391800,"indexed_at_ns":1787729927215335400,"word_count":464},"backend/src/admin/admin.controller.spec.ts":{"size":593,"mtime_ns":1786799852157399700,"indexed_at_ns":1787726728816339600,"word_count":59},"backend/src/admin/admin.controller.ts":{"size":11107,"mtime_ns":1788609394315789100,"indexed_at_ns":1788613605032606200,"word_count":1076},"backend/src/admin/admin.module.ts":{"size":1420,"mtime_ns":1786877667005008400,"indexed_at_ns":1787726728829614400,"word_count":145},"backend/src/admin/admin.service.spec.ts":{"size":903,"mtime_ns":1787729523434852600,"indexed_at_ns":1787729927236681900,"word_count":89},"backend/src/admin/admin.service.ts":{"size":54945,"mtime_ns":1788609394316908100,"indexed_at_ns":1788613605051366500,"word_count":5207},"backend/src/admin/blogs.controller.ts":{"size":5204,"mtime_ns":1787579631758177800,"indexed_at_ns":1787726728849039400,"word_count":532},"backend/src/admin/blogs.service.ts":{"size":9542,"mtime_ns":1787579631760177700,"indexed_at_ns":1787726728855138400,"word_count":1070},"backend/src/admin/categories.controller.ts":{"size":2187,"mtime_ns":1786799852174192500,"indexed_at_ns":1787726728862149600,"word_count":204},"backend/src/admin/categories.service.ts":{"size":2005,"mtime_ns":1786799852175194300,"indexed_at_ns":1787726728869148700,"word_count":223},"backend/src/admin/dto/admin-query.dto.ts":{"size":975,"mtime_ns":1788332757638029400,"indexed_at_ns":1788333107621968800,"word_count":89},"backend/src/admin/dto/product.dto.ts":{"size":9859,"mtime_ns":1788609394317999800,"indexed_at_ns":1788613605093051200,"word_count":808},"backend/src/admin/dto/user.dto.ts":{"size":2839,"mtime_ns":1787072106381989700,"indexed_at_ns":1787726728889404100,"word_count":259},"backend/src/admin/media.controller.ts":{"size":2339,"mtime_ns":1786876983648866300,"indexed_at_ns":1787726728895408700,"word_count":226},"backend/src/admin/media.service.ts":{"size":3596,"mtime_ns":1787748438701533500,"indexed_at_ns":1787748507167881200,"word_count":373},"backend/src/admin/pets.controller.ts":{"size":1195,"mtime_ns":1786799852186217200,"indexed_at_ns":1787726728908565800,"word_count":117},"backend/src/admin/pets.service.ts":{"size":1731,"mtime_ns":1786954681814243000,"indexed_at_ns":1787726728915489100,"word_count":193},"backend/src/admin/reports.controller.ts":{"size":1079,"mtime_ns":1787729523434852600,"indexed_at_ns":1787729927304516400,"word_count":107},"backend/src/admin/reports.service.ts":{"size":6497,"mtime_ns":1787729523434852600,"indexed_at_ns":1787729927310486400,"word_count":729},"backend/src/admin/ssl.controller.ts":{"size":3371,"mtime_ns":1787072106382979000,"indexed_at_ns":1787726728933458100,"word_count":296},"backend/src/admin/ssl.service.ts":{"size":6502,"mtime_ns":1787072106383978900,"indexed_at_ns":1787726728940536700,"word_count":612},"backend/src/admin/wiki.controller.ts":{"size":1814,"mtime_ns":1786799852191732300,"indexed_at_ns":1787726728947315900,"word_count":179},"backend/src/admin/wiki.service.ts":{"size":1767,"mtime_ns":1786799852193324200,"indexed_at_ns":1787726728953886100,"word_count":195},"backend/src/app.controller.spec.ts":{"size":617,"mtime_ns":1783764561644839700,"indexed_at_ns":1787726728959886100,"word_count":61},"backend/src/app.controller.ts":{"size":274,"mtime_ns":1783764561645849100,"indexed_at_ns":1787726728965475600,"word_count":31},"backend/src/app.module.ts":{"size":4052,"mtime_ns":1787579631764695400,"indexed_at_ns":1787726728971183900,"word_count":382},"backend/src/app.service.ts":{"size":142,"mtime_ns":1783764561648840500,"indexed_at_ns":1787726728977275800,"word_count":19},"backend/src/auth/auth.constants.ts":{"size":456,"mtime_ns":1787072106385980100,"indexed_at_ns":1787726728983890000,"word_count":32},"backend/src/auth/auth.controller.spec.ts":{"size":1528,"mtime_ns":1785327951179468000,"indexed_at_ns":1787726728988890000,"word_count":149},"backend/src/auth/auth.controller.ts":{"size":4304,"mtime_ns":1787645037368025500,"indexed_at_ns":1787726728996333500,"word_count":410},"backend/src/auth/auth.module.ts":{"size":724,"mtime_ns":1787072106388501600,"indexed_at_ns":1787726729002365400,"word_count":80},"backend/src/auth/auth.service.spec.ts":{"size":4306,"mtime_ns":1787729523436876800,"indexed_at_ns":1787729927377157300,"word_count":381},"backend/src/auth/auth.service.ts":{"size":9713,"mtime_ns":1787127978228589700,"indexed_at_ns":1787726729014017400,"word_count":933},"backend/src/auth/dto/admin-login.dto.ts":{"size":766,"mtime_ns":1787127978229587400,"indexed_at_ns":1787726729021017300,"word_count":82},"backend/src/auth/dto/login.dto.ts":{"size":587,"mtime_ns":1783764561659109000,"indexed_at_ns":1787726729027109900,"word_count":63},"backend/src/auth/dto/register.dto.ts":{"size":1197,"mtime_ns":1785327951186476900,"indexed_at_ns":1787726729033385300,"word_count":115},"backend/src/auth/dto/send-otp.dto.ts":{"size":374,"mtime_ns":1783764561661106500,"indexed_at_ns":1787726729039417400,"word_count":39},"backend/src/auth/dto/verify-otp.dto.ts":{"size":594,"mtime_ns":1783764561662112100,"indexed_at_ns":1787726729045971800,"word_count":64},"backend/src/auth/jwt-auth.guard.ts":{"size":494,"mtime_ns":1786799852205862700,"indexed_at_ns":1787726729051550300,"word_count":58},"backend/src/auth/jwt.strategy.ts":{"size":1122,"mtime_ns":1786883225794343300,"indexed_at_ns":1787726729058027000,"word_count":116},"backend/src/auth/roles.decorator.ts":{"size":54,"mtime_ns":1786799852208379600,"indexed_at_ns":1787726729064059300,"word_count":4},"backend/src/auth/roles.guard.ts":{"size":46,"mtime_ns":1786799852209003400,"indexed_at_ns":1787726729070031800,"word_count":4},"backend/src/b2b/b2b.controller.ts":{"size":2782,"mtime_ns":1787645037369065300,"indexed_at_ns":1787726729075540200,"word_count":261},"backend/src/b2b/b2b.module.ts":{"size":342,"mtime_ns":1786799852212013200,"indexed_at_ns":1787726729082375900,"word_count":38},"backend/src/b2b/b2b.service.ts":{"size":2379,"mtime_ns":1786799852214009300,"indexed_at_ns":1787726729088349500,"word_count":243},"backend/src/banners/banners.controller.ts":{"size":1923,"mtime_ns":1786799852215010200,"indexed_at_ns":1787726729094382800,"word_count":169},"backend/src/banners/banners.module.ts":{"size":374,"mtime_ns":1786799852216010300,"indexed_at_ns":1787726729099954900,"word_count":38},"backend/src/banners/banners.service.ts":{"size":1394,"mtime_ns":1786799852216010300,"indexed_at_ns":1787726729105481900,"word_count":160},"backend/src/blogs/blogs.controller.ts":{"size":2794,"mtime_ns":1788334048803235500,"indexed_at_ns":1788334713518424700,"word_count":247},"backend/src/blogs/blogs.module.ts":{"size":248,"mtime_ns":1783764561665678100,"indexed_at_ns":1787726729117858700,"word_count":28},"backend/src/blogs/blogs.service.ts":{"size":10448,"mtime_ns":1788334048804373300,"indexed_at_ns":1788334713528538100,"word_count":1157},"backend/src/blogs/dto/create-blog.dto.ts":{"size":30,"mtime_ns":1783764561671557000,"indexed_at_ns":1787726729130858800,"word_count":4},"backend/src/blogs/dto/update-blog.dto.ts":{"size":164,"mtime_ns":1783764561673712400,"indexed_at_ns":1787726729137866600,"word_count":18},"backend/src/blogs/entities/blog.entity.ts":{"size":21,"mtime_ns":1783764561675101100,"indexed_at_ns":1787726729143865200,"word_count":4},"backend/src/cms/cms.controller.ts":{"size":3521,"mtime_ns":1785327951196913100,"indexed_at_ns":1787726729149268700,"word_count":280},"backend/src/cms/cms.module.ts":{"size":342,"mtime_ns":1785148022206298000,"indexed_at_ns":1787726729156414600,"word_count":38},"backend/src/cms/cms.service.ts":{"size":2501,"mtime_ns":1785327951197940400,"indexed_at_ns":1787726729162441900,"word_count":256},"backend/src/cms/dto/cms.dto.ts":{"size":2357,"mtime_ns":1785327951199995500,"indexed_at_ns":1787726729169380900,"word_count":203},"backend/src/common/decorators/roles.decorator.ts":{"size":157,"mtime_ns":1786799852220522400,"indexed_at_ns":1787726729174954700,"word_count":20},"backend/src/common/dto/pagination.dto.ts":{"size":1188,"mtime_ns":1785327951201988900,"indexed_at_ns":1787726729180990600,"word_count":121},"backend/src/common/env.validation.ts":{"size":1162,"mtime_ns":1787645037370646800,"indexed_at_ns":1787726729187990800,"word_count":109},"backend/src/common/filters/http-exception.filter.ts":{"size":4993,"mtime_ns":1787645037371739300,"indexed_at_ns":1787726729194260200,"word_count":500},"backend/src/common/filters/prisma-exception.filter.ts":{"size":2862,"mtime_ns":1787645037372254700,"indexed_at_ns":1787726729201199300,"word_count":280},"backend/src/common/guards/roles.guard.spec.ts":{"size":2426,"mtime_ns":1786799852225556800,"indexed_at_ns":1787726729208239500,"word_count":223},"backend/src/common/guards/roles.guard.ts":{"size":1285,"mtime_ns":1786799852226565200,"indexed_at_ns":1787726729214246900,"word_count":120},"backend/src/common/interceptors/decimal.interceptor.spec.ts":{"size":1677,"mtime_ns":1786799852227565700,"indexed_at_ns":1787726729220254800,"word_count":164},"backend/src/common/interceptors/decimal.interceptor.ts":{"size":1094,"mtime_ns":1786799852227565700,"indexed_at_ns":1787726729226825500,"word_count":118},"backend/src/common/metrics.controller.ts":{"size":2093,"mtime_ns":1786799852229073100,"indexed_at_ns":1787726729232447400,"word_count":206},"backend/src/common/revalidation/revalidation.module.ts":{"size":240,"mtime_ns":1787579631769582300,"indexed_at_ns":1787726729239087900,"word_count":24},"backend/src/common/revalidation/revalidation.service.ts":{"size":3410,"mtime_ns":1787579631770587500,"indexed_at_ns":1787726729246057400,"word_count":272},"backend/src/common/schemas/error-response.schema.ts":{"size":1680,"mtime_ns":1785330913144701500,"indexed_at_ns":1787726729252104800,"word_count":162},"backend/src/common/schemas/paginated-response.schema.ts":{"size":1108,"mtime_ns":1786799852230082200,"indexed_at_ns":1787726729258104400,"word_count":110},"backend/src/common/services/sms.service.ts":{"size":43530,"mtime_ns":1788609394320641400,"indexed_at_ns":1788613605425945700,"word_count":4091},"backend/src/common/sms.module.ts":{"size":204,"mtime_ns":1785330750996125100,"indexed_at_ns":1787726729274176800,"word_count":24},"backend/src/common/utils/phone.utils.ts":{"size":1089,"mtime_ns":1786883225801396000,"indexed_at_ns":1787726729280624000,"word_count":149},"backend/src/contact/contact.controller.ts":{"size":2088,"mtime_ns":1787645037373264000,"indexed_at_ns":1787726729286660600,"word_count":192},"backend/src/contact/contact.module.ts":{"size":365,"mtime_ns":1786799852236599000,"indexed_at_ns":1787726729292806800,"word_count":38},"backend/src/contact/contact.service.ts":{"size":4445,"mtime_ns":1788584193706148400,"indexed_at_ns":1788608118832554900,"word_count":432},"backend/src/doctors/doctors.controller.ts":{"size":1583,"mtime_ns":1787148092311692900,"indexed_at_ns":1787726729304627000,"word_count":148},"backend/src/doctors/doctors.module.ts":{"size":374,"mtime_ns":1786971396035575100,"indexed_at_ns":1787726729310709500,"word_count":38},"backend/src/doctors/doctors.service.ts":{"size":2336,"mtime_ns":1787148092312693100,"indexed_at_ns":1787726729316710800,"word_count":266},"backend/src/doctors/dto/doctor-query.dto.ts":{"size":1009,"mtime_ns":1787148092314699500,"indexed_at_ns":1787726729323711800,"word_count":116},"backend/src/faq/faq.controller.ts":{"size":2210,"mtime_ns":1787148092316694700,"indexed_at_ns":1787726729329710800,"word_count":199},"backend/src/faq/faq.module.ts":{"size":234,"mtime_ns":1787148092316694700,"indexed_at_ns":1787726729335913700,"word_count":28},"backend/src/faq/faq.service.ts":{"size":1541,"mtime_ns":1787148092319911700,"indexed_at_ns":1787726729341879200,"word_count":184},"backend/src/home/dto/create-home.dto.ts":{"size":30,"mtime_ns":1783764561682365300,"indexed_at_ns":1787726729348678200,"word_count":4},"backend/src/home/dto/update-home.dto.ts":{"size":164,"mtime_ns":1783764561682365300,"indexed_at_ns":1787726729354360200,"word_count":18},"backend/src/home/entities/home.entity.ts":{"size":21,"mtime_ns":1783764561684884800,"indexed_at_ns":1787726729360332100,"word_count":4},"backend/src/home/home.controller.ts":{"size":757,"mtime_ns":1785327951212087300,"indexed_at_ns":1787726729365692000,"word_count":69},"backend/src/home/home.module.ts":{"size":241,"mtime_ns":1783764561687108000,"indexed_at_ns":1787726729372815400,"word_count":28},"backend/src/home/home.service.ts":{"size":1372,"mtime_ns":1785327951214087300,"indexed_at_ns":1787726729378370200,"word_count":144},"backend/src/ingredients/ingredients.controller.ts":{"size":1952,"mtime_ns":1786799852237596500,"indexed_at_ns":1787726729384776300,"word_count":165},"backend/src/ingredients/ingredients.module.ts":{"size":406,"mtime_ns":1786799852238596500,"indexed_at_ns":1787726729391513400,"word_count":38},"backend/src/ingredients/ingredients.service.ts":{"size":1526,"mtime_ns":1786799852240108300,"indexed_at_ns":1787726729397517700,"word_count":162},"backend/src/main.ts":{"size":4119,"mtime_ns":1787999006319547500,"indexed_at_ns":1787999341613980900,"word_count":362},"backend/src/menu/menu.controller.ts":{"size":2920,"mtime_ns":1787564348681948800,"indexed_at_ns":1787726729410971900,"word_count":265},"backend/src/menu/menu.module.ts":{"size":267,"mtime_ns":1787148092323869500,"indexed_at_ns":1787726729418641500,"word_count":30},"backend/src/menu/menu.service.ts":{"size":7799,"mtime_ns":1787564362262172600,"indexed_at_ns":1787726729424116700,"word_count":799},"backend/src/orders/dto/create-order.dto.ts":{"size":1899,"mtime_ns":1785327951218626100,"indexed_at_ns":1787726729430534500,"word_count":162},"backend/src/orders/orders.controller.spec.ts":{"size":1910,"mtime_ns":1785327951219627700,"indexed_at_ns":1787726729437590400,"word_count":194},"backend/src/orders/orders.controller.ts":{"size":5930,"mtime_ns":1787072106398077200,"indexed_at_ns":1787726729444156500,"word_count":517},"backend/src/orders/orders.module.ts":{"size":255,"mtime_ns":1783764561697598200,"indexed_at_ns":1787726729449863600,"word_count":28},"backend/src/orders/orders.service.spec.ts":{"size":5121,"mtime_ns":1787729523436876800,"indexed_at_ns":1787729927751553500,"word_count":493},"backend/src/orders/orders.service.ts":{"size":21538,"mtime_ns":1788609394322769200,"indexed_at_ns":1788613605602689400,"word_count":2046},"backend/src/payment/dto/admin-transaction-filter.dto.ts":{"size":2060,"mtime_ns":1787072106401590500,"indexed_at_ns":1787726729467565100,"word_count":191},"backend/src/payment/dto/ebank-checkout.dto.ts":{"size":1378,"mtime_ns":1787394001603461200,"indexed_at_ns":1787726729473467400,"word_count":118},"backend/src/payment/dto/initiate-payment.dto.ts":{"size":775,"mtime_ns":1786870552874246400,"indexed_at_ns":1787726729479997200,"word_count":69},"backend/src/payment/dto/verify-payment.dto.ts":{"size":1421,"mtime_ns":1786894580126857900,"indexed_at_ns":1787726729487007600,"word_count":126},"backend/src/payment/interfaces/payment-gateway.interface.ts":{"size":1330,"mtime_ns":1786870552876751100,"indexed_at_ns":1787726729493007700,"word_count":128},"backend/src/payment/payment.controller.ts":{"size":19204,"mtime_ns":1788609394323871800,"indexed_at_ns":1788613605639615500,"word_count":1576},"backend/src/payment/payment.module.ts":{"size":608,"mtime_ns":1787394001605617900,"indexed_at_ns":1787726729505386600,"word_count":61},"backend/src/payment/payment.service.ts":{"size":40259,"mtime_ns":1788609394325101800,"indexed_at_ns":1788613605650669200,"word_count":3576},"backend/src/payment/zibal-ebank.service.ts":{"size":10087,"mtime_ns":1787461919452306600,"indexed_at_ns":1787726729518640700,"word_count":1006},"backend/src/payment/zibal.service.ts":{"size":25781,"mtime_ns":1787461919453309100,"indexed_at_ns":1787726729525641200,"word_count":2490},"backend/src/pets/dto/create-health-log.dto.ts":{"size":761,"mtime_ns":1785327951229443300,"indexed_at_ns":1787726729532595600,"word_count":69},"backend/src/pets/dto/create-pet.dto.ts":{"size":1143,"mtime_ns":1785327951230948800,"indexed_at_ns":1787726729539689500,"word_count":104},"backend/src/pets/dto/create-reminder.dto.ts":{"size":810,"mtime_ns":1785327951231958200,"indexed_at_ns":1787726729545689700,"word_count":71},"backend/src/pets/dto/update-pet.dto.ts":{"size":160,"mtime_ns":1783764561709557500,"indexed_at_ns":1787726729551201600,"word_count":18},"backend/src/pets/pets.controller.spec.ts":{"size":2544,"mtime_ns":1786799852248118800,"indexed_at_ns":1787726729556953000,"word_count":269},"backend/src/pets/pets.controller.ts":{"size":8427,"mtime_ns":1787461919454308900,"indexed_at_ns":1787726729563595800,"word_count":781},"backend/src/pets/pets.module.ts":{"size":241,"mtime_ns":1783764561714469800,"indexed_at_ns":1787726729570135400,"word_count":28},"backend/src/pets/pets.service.spec.ts":{"size":2961,"mtime_ns":1785327951238208000,"indexed_at_ns":1787726729576202600,"word_count":272},"backend/src/pets/pets.service.ts":{"size":6978,"mtime_ns":1786799852250117400,"indexed_at_ns":1787726729581853500,"word_count":710},"backend/src/prescriptions/prescriptions.controller.ts":{"size":2356,"mtime_ns":1786799852253748300,"indexed_at_ns":1787726729589105100,"word_count":232},"backend/src/prescriptions/prescriptions.module.ts":{"size":495,"mtime_ns":1786954681815809200,"indexed_at_ns":1787726729595362900,"word_count":45},"backend/src/prescriptions/prescriptions.service.ts":{"size":4666,"mtime_ns":1787072106408779000,"indexed_at_ns":1787726729601839800,"word_count":498},"backend/src/prisma/prisma.module.ts":{"size":210,"mtime_ns":1783764561718199800,"indexed_at_ns":1787726729608494400,"word_count":24},"backend/src/prisma/prisma.service.ts":{"size":4250,"mtime_ns":1787640806107781000,"indexed_at_ns":1787726729614499200,"word_count":425},"backend/src/products/dto/get-products.dto.ts":{"size":1320,"mtime_ns":1786799852260271600,"indexed_at_ns":1787726729621151100,"word_count":115},"backend/src/products/products.controller.spec.ts":{"size":1863,"mtime_ns":1785327951243280800,"indexed_at_ns":1787726729629866100,"word_count":166},"backend/src/products/products.controller.ts":{"size":2445,"mtime_ns":1786799852261281700,"indexed_at_ns":1787726729636530800,"word_count":209},"backend/src/products/products.module.ts":{"size":340,"mtime_ns":1787999968301264900,"indexed_at_ns":1788000007911577500,"word_count":35},"backend/src/products/products.service.spec.ts":{"size":1860,"mtime_ns":1787729523438446200,"indexed_at_ns":1787729927908082400,"word_count":175},"backend/src/products/products.service.ts":{"size":7842,"mtime_ns":1788334048805380100,"indexed_at_ns":1788334713972877000,"word_count":807},"backend/src/redis/redis.module.ts":{"size":205,"mtime_ns":1783764561727662100,"indexed_at_ns":1787726729660667100,"word_count":24},"backend/src/redis/redis.service.spec.ts":{"size":1525,"mtime_ns":1783764561728672300,"indexed_at_ns":1787726729667111900,"word_count":145},"backend/src/redis/redis.service.ts":{"size":1202,"mtime_ns":1786895436211834600,"indexed_at_ns":1787726729673119800,"word_count":132},"backend/src/reviews/dto/create-review.dto.ts":{"size":949,"mtime_ns":1787072106414306300,"indexed_at_ns":1787726729680066000,"word_count":92},"backend/src/reviews/dto/update-review.dto.ts":{"size":534,"mtime_ns":1787072106415805700,"indexed_at_ns":1787726729686118000,"word_count":53},"backend/src/reviews/reviews.controller.ts":{"size":3318,"mtime_ns":1787645037375268800,"indexed_at_ns":1787726729692109200,"word_count":329},"backend/src/reviews/reviews.module.ts":{"size":374,"mtime_ns":1786944769517310800,"indexed_at_ns":1787726729699837600,"word_count":38},"backend/src/reviews/reviews.service.ts":{"size":7013,"mtime_ns":1787579631775586600,"indexed_at_ns":1787726729706361600,"word_count":742},"backend/src/seo/seo.controller.ts":{"size":904,"mtime_ns":1785327951247283200,"indexed_at_ns":1787726729713027000,"word_count":85},"backend/src/seo/seo.module.ts":{"size":342,"mtime_ns":1785148022268580900,"indexed_at_ns":1787726729720026400,"word_count":38},"backend/src/seo/seo.service.ts":{"size":2023,"mtime_ns":1787127978249385200,"indexed_at_ns":1787726729726026200,"word_count":182},"backend/src/settings/default-ui-texts.ts":{"size":19254,"mtime_ns":1787999006320546900,"indexed_at_ns":1787999341882239600,"word_count":1538},"backend/src/settings/dto/sms-log-query.dto.ts":{"size":1343,"mtime_ns":1787072106421339300,"indexed_at_ns":1787726729739063400,"word_count":125},"backend/src/settings/settings.controller.spec.ts":{"size":2855,"mtime_ns":1787729523438446200,"indexed_at_ns":1787729927987436700,"word_count":239},"backend/src/settings/settings.controller.ts":{"size":9726,"mtime_ns":1788609394326111700,"indexed_at_ns":1788613605848234200,"word_count":762},"backend/src/settings/settings.module.ts":{"size":382,"mtime_ns":1783764561735515700,"indexed_at_ns":1787726729758697700,"word_count":38},"backend/src/settings/settings.service.spec.ts":{"size":3028,"mtime_ns":1787729523439452400,"indexed_at_ns":1787729928002596300,"word_count":279},"backend/src/settings/settings.service.ts":{"size":23005,"mtime_ns":1788609394327111600,"indexed_at_ns":1788613605865219900,"word_count":1766},"backend/src/smart-advisor/smart-advisor.controller.ts":{"size":1821,"mtime_ns":1786799852275441500,"indexed_at_ns":1787726729775867900,"word_count":152},"backend/src/smart-advisor/smart-advisor.module.ts":{"size":416,"mtime_ns":1786799852276441700,"indexed_at_ns":1787726729782878800,"word_count":38},"backend/src/smart-advisor/smart-advisor.service.ts":{"size":1241,"mtime_ns":1786799852277440400,"indexed_at_ns":1787726729788878100,"word_count":131},"backend/src/testimonials/testimonials.controller.ts":{"size":1905,"mtime_ns":1787148092329786500,"indexed_at_ns":1787726729795446100,"word_count":160},"backend/src/testimonials/testimonials.module.ts":{"size":414,"mtime_ns":1786799852279441800,"indexed_at_ns":1787726729801924900,"word_count":38},"backend/src/testimonials/testimonials.service.ts":{"size":1268,"mtime_ns":1787148092332501600,"indexed_at_ns":1787726729810241500,"word_count":140},"backend/src/tickets/dto/create-ticket.dto.ts":{"size":2374,"mtime_ns":1787072106430874900,"indexed_at_ns":1787726729816278100,"word_count":201},"backend/src/tickets/dto/ticket-query.dto.ts":{"size":1103,"mtime_ns":1787072106431871400,"indexed_at_ns":1787726729824281400,"word_count":106},"backend/src/tickets/tickets.controller.ts":{"size":3114,"mtime_ns":1787072106433878000,"indexed_at_ns":1787726729829734800,"word_count":293},"backend/src/tickets/tickets.module.ts":{"size":374,"mtime_ns":1786890779322296800,"indexed_at_ns":1787726729836741100,"word_count":38},"backend/src/tickets/tickets.service.ts":{"size":7310,"mtime_ns":1787072106434874300,"indexed_at_ns":1787726729844342200,"word_count":781},"backend/src/users/dto/address.dto.ts":{"size":1098,"mtime_ns":1783764561739871500,"indexed_at_ns":1787726729851866000,"word_count":99},"backend/src/users/dto/update-profile.dto.ts":{"size":1068,"mtime_ns":1786885876805472100,"indexed_at_ns":1787726729858986800,"word_count":98},"backend/src/users/users.controller.spec.ts":{"size":3333,"mtime_ns":1785327951253796500,"indexed_at_ns":1787726729865019600,"word_count":322},"backend/src/users/users.controller.ts":{"size":6854,"mtime_ns":1786799852282481500,"indexed_at_ns":1787726729871026300,"word_count":590},"backend/src/users/users.module.ts":{"size":275,"mtime_ns":1783764561748154400,"indexed_at_ns":1787726729878590100,"word_count":30},"backend/src/users/users.service.spec.ts":{"size":3844,"mtime_ns":1787729523440453600,"indexed_at_ns":1787729928098956400,"word_count":320},"backend/src/users/users.service.ts":{"size":9199,"mtime_ns":1788609394329113500,"indexed_at_ns":1788613605960730600,"word_count":861},"backend/src/videos/dto/create-video.dto.ts":{"size":1573,"mtime_ns":1786971396042093900,"indexed_at_ns":1787726729895417800,"word_count":127},"backend/src/videos/dto/get-videos-query.dto.ts":{"size":643,"mtime_ns":1786799852287643500,"indexed_at_ns":1787726729903314300,"word_count":77},"backend/src/videos/videos.controller.ts":{"size":1924,"mtime_ns":1786799852291153100,"indexed_at_ns":1787726729909344900,"word_count":173},"backend/src/videos/videos.module.ts":{"size":283,"mtime_ns":1785148022306583700,"indexed_at_ns":1787726729915346300,"word_count":30},"backend/src/videos/videos.service.ts":{"size":3036,"mtime_ns":1788334048807380600,"indexed_at_ns":1788334714212541600,"word_count":321},"backend/src/wholesale/dto/wholesale-apply.dto.ts":{"size":739,"mtime_ns":1785148022317622300,"indexed_at_ns":1787726729928834600,"word_count":66},"backend/src/wholesale/wholesale.controller.ts":{"size":2037,"mtime_ns":1786799852294177000,"indexed_at_ns":1787726729934839900,"word_count":160},"backend/src/wholesale/wholesale.module.ts":{"size":390,"mtime_ns":1785148022328746300,"indexed_at_ns":1787726729941840900,"word_count":38},"backend/src/wholesale/wholesale.service.ts":{"size":2618,"mtime_ns":1788584193713366900,"indexed_at_ns":1788608119381476800,"word_count":266},"backend/src/wiki/dto/create-wiki.dto.ts":{"size":30,"mtime_ns":1783764561752933200,"indexed_at_ns":1787726729953896900,"word_count":4},"backend/src/wiki/dto/update-wiki.dto.ts":{"size":164,"mtime_ns":1783764561753945200,"indexed_at_ns":1787726729959896600,"word_count":18},"backend/src/wiki/entities/wiki.entity.ts":{"size":21,"mtime_ns":1783764561755039400,"indexed_at_ns":1787726729966410900,"word_count":4},"backend/src/wiki/wiki.controller.ts":{"size":1219,"mtime_ns":1785327951272850400,"indexed_at_ns":1787726729972418600,"word_count":110},"backend/src/wiki/wiki.module.ts":{"size":241,"mtime_ns":1783764561756925000,"indexed_at_ns":1787726729978966700,"word_count":28},"backend/src/wiki/wiki.service.ts":{"size":1562,"mtime_ns":1786799852295173000,"indexed_at_ns":1787726729985599000,"word_count":174},"backend/test/app-audit-verification.e2e-spec.d.ts":{"size":11,"mtime_ns":1787073059109005600,"indexed_at_ns":1787726729992165500,"word_count":2},"backend/test/app-audit-verification.e2e-spec.js":{"size":8429,"mtime_ns":1787073059110516300,"indexed_at_ns":1787726729998303900,"word_count":714},"backend/test/app-audit-verification.e2e-spec.ts":{"size":6464,"mtime_ns":1786799852296174700,"indexed_at_ns":1787726730009127800,"word_count":569},"backend/test/app.e2e-spec.d.ts":{"size":11,"mtime_ns":1787073059112563300,"indexed_at_ns":1787726730014789500,"word_count":2},"backend/test/app.e2e-spec.js":{"size":1228,"mtime_ns":1787073059113572500,"indexed_at_ns":1787726730020887300,"word_count":97},"backend/test/app.e2e-spec.ts":{"size":981,"mtime_ns":1786799852297175000,"indexed_at_ns":1787726730030564200,"word_count":83},"backend/test/jest-e2e.json":{"size":183,"mtime_ns":1783764561762911800,"indexed_at_ns":1787726739771257900,"word_count":17,"hashes":{"backend/test/jest-e2e.json":"94091f560937212ad7027afcb77e62e6ac79e3e4cb401c3a16a56e7be4cac721"}},"backend/tsconfig.build.json":{"size":107,"mtime_ns":1783764561763447000,"indexed_at_ns":1787726739772258300,"word_count":10,"hashes":{"backend/tsconfig.build.json":"1f47c7dc3c8b5a15558654f45f21e0f553acc1680046f09dc24428e8538c4f9d"}},"backend/tsconfig.json":{"size":785,"mtime_ns":1787073059116167600,"indexed_at_ns":1787726739773257700,"word_count":56,"hashes":{"backend/tsconfig.json":"9b20fbca537d1e55f3a113fcee6683f0eb1f06752d3c8c52edf26eef8e2053f2"}},"backend/uploads/1781288429353-508765350.jpg":{"size":110246,"mtime_ns":1783764561766257000,"indexed_at_ns":1787726730057371500,"word_count":3882},"canina.md":{"size":21919,"mtime_ns":1786885876809472400,"indexed_at_ns":1787726730067353200,"word_count":1983},"canina.pdf":{"size":2858373,"mtime_ns":1785148022370811500,"indexed_at_ns":1787726730072352400,"word_count":0},"docker-compose.yml":{"size":2147,"mtime_ns":1787752951349742200,"indexed_at_ns":1787752967203975800,"word_count":125},"docs/01-introduction.md":{"size":5537,"mtime_ns":1786885876812474900,"indexed_at_ns":1787726730085575100,"word_count":523},"docs/02-user-guide.md":{"size":4303,"mtime_ns":1786885876813985900,"indexed_at_ns":1787726730091574900,"word_count":422},"docs/03-developer-guide.md":{"size":6717,"mtime_ns":1783764561771660500,"indexed_at_ns":1787726730099089600,"word_count":678},"docs/04-setup-and-deployment.md":{"size":4005,"mtime_ns":1787127978256847800,"indexed_at_ns":1787726739861230800,"word_count":425,"hashes":{"docs/04-setup-and-deployment.md":"aee712cb19a8475be75f8073f7e39870e704923a561ffb9f4ce4b31b1d4bd830"}},"docs/05-devops-and-monitoring.md":{"size":3590,"mtime_ns":1783764561774446100,"indexed_at_ns":1787726739862230700,"word_count":374,"hashes":{"docs/05-devops-and-monitoring.md":"53f1f45bbbdd3cf81cb4bc082ef4e49f506627f10f581d3c4b835028d02b5421"}},"docs/06-testing.md":{"size":4214,"mtime_ns":1783764561774967500,"indexed_at_ns":1787726739862740900,"word_count":457,"hashes":{"docs/06-testing.md":"69d50bd5e233f030d8076b55b69599cee201e1c393b7ee1beeb495c304fd4bd3"}},"docs/README.md":{"size":2740,"mtime_ns":1786885876816996700,"indexed_at_ns":1787726739864750200,"word_count":253,"hashes":{"docs/readme.md":"1b7ffde4b290e742802fc554f2dd2f7a2316fe25bd1cd328421ffa823b36f40f"}},"docs/audit/00-repository-map.md":{"size":3171,"mtime_ns":1786799852298174200,"indexed_at_ns":1787726739865750000,"word_count":351,"hashes":{"docs/audit/00-repository-map.md":"dde4a63c991d0f469086a147df03b97d8370cd75fa19cc83af1199f267d7bc55"}},"docs/audit/01-system-discovery.md":{"size":3790,"mtime_ns":1786799852299174400,"indexed_at_ns":1787726739866750300,"word_count":467,"hashes":{"docs/audit/01-system-discovery.md":"6c91253cac025506db71adea33a054f88f4c367ba81fc3cb1b85c2bdcfec5c70"}},"docs/audit/02-audit-plan.md":{"size":5058,"mtime_ns":1786799852300175400,"indexed_at_ns":1787726739867750300,"word_count":530,"hashes":{"docs/audit/02-audit-plan.md":"b623d8f8c2b8a14c1ddca1ad956cd8afc9203f7a94eda8e63fd608bc8e9164d1"}},"docs/audit/03-baseline-command-plan.md":{"size":4904,"mtime_ns":1786799852300175400,"indexed_at_ns":1787726739868750300,"word_count":735,"hashes":{"docs/audit/03-baseline-command-plan.md":"fcf49beae52c69d7e9cf85967f028052fa1a78eaae5a2bb9b18072b0273e80e1"}},"docs/audit/04-open-questions.md":{"size":1690,"mtime_ns":1786799852301682100,"indexed_at_ns":1787726739869750100,"word_count":224,"hashes":{"docs/audit/04-open-questions.md":"02fbd51a9131da0b12122a5280cc6f842c299b436a72b117e2263f011b9ebf9c"}},"docs/audit/05-architectural-audit.md":{"size":4884,"mtime_ns":1786799852302689800,"indexed_at_ns":1787726730169702300,"word_count":560},"docs/audit/06-storefront-audit.md":{"size":4191,"mtime_ns":1786799852303691400,"indexed_at_ns":1787726739871758800,"word_count":520,"hashes":{"docs/audit/06-storefront-audit.md":"1e2f2d9d867dc553f503ef91b3bd60310202225da12bc7d324e192f4e15d8c38"}},"docs/audit/07-backend-audit.md":{"size":5037,"mtime_ns":1786799852304689900,"indexed_at_ns":1787726739872758800,"word_count":581,"hashes":{"docs/audit/07-backend-audit.md":"0436a967b82026334bf45c9ca677d1e79ce688681bea4dc06a7fd19e2d5a2129"}},"docs/audit/08-admin-features-audit.md":{"size":4222,"mtime_ns":1786799852305951400,"indexed_at_ns":1787726739873758600,"word_count":479,"hashes":{"docs/audit/08-admin-features-audit.md":"dda5b0bae4f843a51274269dcb91d8b65db2f2917d336d511790da4718b05b8d"}},"docs/audit/09-database-audit.md":{"size":4126,"mtime_ns":1786799852306969500,"indexed_at_ns":1787726739874758900,"word_count":521,"hashes":{"docs/audit/09-database-audit.md":"d4f82b84ae6c1899ab4da1310414d993d9c23dcd2759120fbe551f5b8da95a08"}},"docs/audit/10-security-audit.md":{"size":5560,"mtime_ns":1786799852307952600,"indexed_at_ns":1787726730204465900,"word_count":678},"docs/audit/11-code-quality-audit.md":{"size":3379,"mtime_ns":1786799852308957000,"indexed_at_ns":1787726739875758500,"word_count":419,"hashes":{"docs/audit/11-code-quality-audit.md":"b6b9a4845e0bd5674d897c08f5451f8cab4df22722826f7c9d55ca19b94d88da"}},"docs/audit/12-testing-audit.md":{"size":4106,"mtime_ns":1786799852309952600,"indexed_at_ns":1787726739877758700,"word_count":486,"hashes":{"docs/audit/12-testing-audit.md":"8bdf2058520a88de4d08c0635999de8f79fdab83055ef560ca3a865026b6450a"}},"docs/audit/13-devops-audit.md":{"size":3435,"mtime_ns":1786799852310953800,"indexed_at_ns":1787726739878758700,"word_count":440,"hashes":{"docs/audit/13-devops-audit.md":"d21daac201fcfc3a0e27c27348806f3f5d2790071578dcb98e7869cd6e9ec8a9"}},"docs/audit/14-documentation-audit.md":{"size":3311,"mtime_ns":1786799852311952200,"indexed_at_ns":1787726739879758400,"word_count":379,"hashes":{"docs/audit/14-documentation-audit.md":"e64be175bd632a05e37be823621eb8a8f13bdb74887d10f5f20887d41cef5c62"}},"docs/audit/15-raw-findings-index.json":{"size":9909,"mtime_ns":1786799852313066900,"indexed_at_ns":1787726739774686100,"word_count":817,"hashes":{"docs/audit/15-raw-findings-index.json":"3c1e582431f5f25edd2c38285c9d59f83c83d5348eaf0ced91d6e7c94a9afb6d"}},"docs/audit/16-deep-audit-summary.md":{"size":3111,"mtime_ns":1786799852313066900,"indexed_at_ns":1787726739880758700,"word_count":393,"hashes":{"docs/audit/16-deep-audit-summary.md":"8ea08de6ac54dddd9da6de934bc850bb31ab7e3c5470059d02d7f84dd120a0e4"}},"docs/audit/17-source-coverage-manifest.json":{"size":128714,"mtime_ns":1786799852315065000,"indexed_at_ns":1787726739775692000,"word_count":7827,"hashes":{"docs/audit/17-source-coverage-manifest.json":"834e6c341db760439d2e7a9c17531b03c17151ab0f2f16b92aac8a350bcae51d"}},"docs/audit/18-compiler-diagnostic-dispositions.md":{"size":1961,"mtime_ns":1786799852315065000,"indexed_at_ns":1787726739881758500,"word_count":285,"hashes":{"docs/audit/18-compiler-diagnostic-dispositions.md":"246b9164725e89c67c76f2305cd128f0c0f9bfdba46e45e0e958fe92ccdcda53"}},"docs/audit/19-finding-verification-report.md":{"size":5464,"mtime_ns":1786799852316064800,"indexed_at_ns":1787726739883758400,"word_count":753,"hashes":{"docs/audit/19-finding-verification-report.md":"1cd1bc37f9e76ba7e4d4ef82b8565def786abfeb159bc4d822e364e3f2ea694f"}},"docs/audit/20-verified-findings-index.json":{"size":21797,"mtime_ns":1786799852317071400,"indexed_at_ns":1787726739777692600,"word_count":1903,"hashes":{"docs/audit/20-verified-findings-index.json":"b20d0b140bd727faefde9f29aa4d787199dd386464030eecdf58e5a8ab629442"}},"docs/audit/21-phase2-quality-gate-summary.md":{"size":1706,"mtime_ns":1786799852318066000,"indexed_at_ns":1787726739883758400,"word_count":211,"hashes":{"docs/audit/21-phase2-quality-gate-summary.md":"1b117f866e73cd17c43e3a4e856584f03997a3c897d1de9afbd128ff8a86d09e"}},"docs/audit/22-tracked-first-party-files.txt":{"size":4452,"mtime_ns":1786799852319066000,"indexed_at_ns":1787726730289099900,"word_count":139},"docs/audit/23-untracked-first-party-files.txt":{"size":59,"mtime_ns":1786799852319066000,"indexed_at_ns":1787726730295099800,"word_count":7},"docs/audit/24-omitted-file-inspection-report.md":{"size":2462,"mtime_ns":1786799852320065700,"indexed_at_ns":1787726739885266400,"word_count":227,"hashes":{"docs/audit/24-omitted-file-inspection-report.md":"d4484eea65f1861b9b6a30813d2c233d947c2965a13ed5b399462b80ca9c1513"}},"docs/audit/25-reference-integrity-validation.json":{"size":1002,"mtime_ns":1786799852321571600,"indexed_at_ns":1787726739778692300,"word_count":82,"hashes":{"docs/audit/25-reference-integrity-validation.json":"31b900ed297325cabee3e0804809ecd4229f4427283e449f5d82951bb5ed7fde"}},"docs/audit/26-phase2-integrity-repair-report.md":{"size":3191,"mtime_ns":1786799852322091800,"indexed_at_ns":1787726739887276800,"word_count":385,"hashes":{"docs/audit/26-phase2-integrity-repair-report.md":"2b2f385705db6729fccedc63db0f5709afa23e08a80fc859fe0138b416356cd9"}},"docs/audit/27-all-tracked-repository-files.txt":{"size":4631,"mtime_ns":1786799852323099900,"indexed_at_ns":1787726730320693600,"word_count":148},"docs/audit/28-full-repository-classification.json":{"size":27913,"mtime_ns":1786799852324099500,"indexed_at_ns":1787726739779692400,"word_count":1782,"hashes":{"docs/audit/28-full-repository-classification.json":"bcb50229ceddb267c8839ee69c05f5e5c8c4460485c92849532bcf163c37faa8"}},"docs/audit/29-file-content-evidence.json":{"size":109095,"mtime_ns":1786799852325608100,"indexed_at_ns":1787726739781691000,"word_count":9098,"hashes":{"docs/audit/29-file-content-evidence.json":"c4696525e8ab3c252ff9b6b38d5882225e0a9016698111df28064edbe7bf5124"}},"docs/audit/30-compiler-diagnostics-index.json":{"size":3707,"mtime_ns":1786799852326617100,"indexed_at_ns":1787726739783194500,"word_count":324,"hashes":{"docs/audit/30-compiler-diagnostics-index.json":"85bd1a964e41cc5e615c7260be2beb54b49dd444da40d96ae31e2a33c1c6bc24"}},"docs/audit/31-module-audit-closure.md":{"size":7587,"mtime_ns":1786799852327616800,"indexed_at_ns":1787726739888276700,"word_count":709,"hashes":{"docs/audit/31-module-audit-closure.md":"a1c9d7902131d71cf87a072876cc309ac8dfc7cd6e1f33e9619ac12d99f685ba"}},"docs/audit/32-evidence-grade-validation.json":{"size":1613,"mtime_ns":1786799852328616800,"indexed_at_ns":1787726739784200700,"word_count":123,"hashes":{"docs/audit/32-evidence-grade-validation.json":"12ddcc21ff65a2aa76845935ebc0d8313c39991335356fbe3ae7cdd201251af5"}},"docs/audit/33-final-phase2-audit-closure.md":{"size":2535,"mtime_ns":1786799852328616800,"indexed_at_ns":1787726739889276900,"word_count":271,"hashes":{"docs/audit/33-final-phase2-audit-closure.md":"217cadb664c7f7d27f8f849ea1249dfd88d5398fd2af154fd385c80e4d559bb1"}},"docs/audit/34-repository-observations.json":{"size":594,"mtime_ns":1786799852329618700,"indexed_at_ns":1787726739785199000,"word_count":49,"hashes":{"docs/audit/34-repository-observations.json":"28ce67ed3f5bcc3e5c3c80d73a16a34d8053d570be0af62be8afaffbc9318a27"}},"docs/audit/35-semantic-review-ledger.json":{"size":99353,"mtime_ns":1786799852330616000,"indexed_at_ns":1787726739786706200,"word_count":6011,"hashes":{"docs/audit/35-semantic-review-ledger.json":"ac0529050e87efc9e2b5a6c5b3a2ce6379186b4b07f23d8ec9cebf214ff885ef"}},"docs/audit/36-mandatory-semantic-scope.json":{"size":7960,"mtime_ns":1786799852331617100,"indexed_at_ns":1787726739787707200,"word_count":638,"hashes":{"docs/audit/36-mandatory-semantic-scope.json":"af62db825dd527009b8d79a6edab6ab627fe55303d3f7fd1c2d8e5fab9a8760b"}},"docs/audit/ADR-AUTH-001.md":{"size":3274,"mtime_ns":1786799852332642700,"indexed_at_ns":1787726730388254300,"word_count":398},"docs/audit/CROSS_BOUNDARY_DEPENDENCIES.md":{"size":2146,"mtime_ns":1786799852332642700,"indexed_at_ns":1787726730394794200,"word_count":239},"docs/audit/FRONTEND_INTEGRATION_REQUIREMENTS.md":{"size":15307,"mtime_ns":1787127978258848200,"indexed_at_ns":1787726730402390500,"word_count":1579},"docs/audit/MASTER-TASK-BACKLOG.md":{"size":30107,"mtime_ns":1786799852335470200,"indexed_at_ns":1787726730410947100,"word_count":3510},"docs/audit/audit-state.json":{"size":4135,"mtime_ns":1786799852337382200,"indexed_at_ns":1787726739788704900,"word_count":267,"hashes":{"docs/audit/audit-state.json":"4b804494570a2812170cb8dab35d15da659f57d6e637652328725e956f7d98aa"}},"docs/audit/build_manifest.js":{"size":4060,"mtime_ns":1786799852338393200,"indexed_at_ns":1787726730421985600,"word_count":348},"docs/audit/frontend-route-map.md":{"size":2558,"mtime_ns":1786799852339389800,"indexed_at_ns":1787726730429495100,"word_count":329},"docs/audit/generate_classification.js":{"size":2186,"mtime_ns":1786799852339389800,"indexed_at_ns":1787726730434093300,"word_count":204},"docs/audit/generate_evidence.js":{"size":3098,"mtime_ns":1786799852340390100,"indexed_at_ns":1787726730440532500,"word_count":253},"docs/audit/generate_ledger.js":{"size":7648,"mtime_ns":1786799852341897300,"indexed_at_ns":1787726730446281100,"word_count":620},"docs/audit/generate_manifest.js":{"size":6357,"mtime_ns":1786799852341897300,"indexed_at_ns":1787726730452526800,"word_count":489},"docs/audit/master-task-backlog.json":{"size":22336,"mtime_ns":1786799852342906700,"indexed_at_ns":1787726739790706500,"word_count":2071,"hashes":{"docs/audit/master-task-backlog.json":"f1c994d971b4e58165ab9f74f8b69b97c07fe74005f64dc11badf5e287b5fd28"}},"docs/audit/phase3-execution-plan.md":{"size":6007,"mtime_ns":1786799852343952400,"indexed_at_ns":1787726730466602900,"word_count":736},"docs/audit/phase3-traceability-matrix.md":{"size":5237,"mtime_ns":1786799852344952800,"indexed_at_ns":1787726739890276800,"word_count":692,"hashes":{"docs/audit/phase3-traceability-matrix.md":"c46b1b09c5f6be7f54ba888652e69698b26d955a8e7c8e4fa19cda8729ee2f7b"}},"docs/audit/phase3.1-backlog-review.md":{"size":9737,"mtime_ns":1786799852345952800,"indexed_at_ns":1787726739891276700,"word_count":1202,"hashes":{"docs/audit/phase3.1-backlog-review.md":"021895bb0b90dd75935ebe0317d3198a2c448ccdd6861b1302cc29735f48da82"}},"docs/audit/phase3.1-change-log.md":{"size":3756,"mtime_ns":1786799852346954800,"indexed_at_ns":1787726739893276700,"word_count":451,"hashes":{"docs/audit/phase3.1-change-log.md":"093d244c2788ead47c69e3068ccf66930ba52e04430bdba87020cb4a4edcb817"}},"docs/audit/phase3.2-change-log.md":{"size":8272,"mtime_ns":1786799852347952200,"indexed_at_ns":1787726739894276600,"word_count":930,"hashes":{"docs/audit/phase3.2-change-log.md":"00bff98e2ae2ef50c4daf265d5f34469f21c244b6dca88b70e1f9ffa17a71d83"}},"docs/audit/phase3.2-implementation-readiness.md":{"size":4694,"mtime_ns":1786799852347952200,"indexed_at_ns":1787726739895276700,"word_count":517,"hashes":{"docs/audit/phase3.2-implementation-readiness.md":"9f1e0335fdc0fa2db0fd5ceaa97e50be85d04bc1ad5d3db1ef74e85de97f71a6"}},"docs/audit/rebuild_honest_ledger.js":{"size":6113,"mtime_ns":1786799852348952900,"indexed_at_ns":1787726730506440800,"word_count":559},"docs/audit/sync_honest_manifest.js":{"size":1213,"mtime_ns":1786799852349953100,"indexed_at_ns":1787726730513042200,"word_count":75},"docs/audit/sync_manifest.js":{"size":997,"mtime_ns":1786799852350953300,"indexed_at_ns":1787726730519090300,"word_count":62},"docs/audit/validate_evidence_grade.js":{"size":6141,"mtime_ns":1786799852351954100,"indexed_at_ns":1787726730524859000,"word_count":526},"docs/audit/validate_integrity.js":{"size":3408,"mtime_ns":1786799852352952400,"indexed_at_ns":1787726730530859600,"word_count":284},"docs/backlog.md":{"size":26175,"mtime_ns":1786799852356021600,"indexed_at_ns":1787726730538035500,"word_count":2834},"frontend/admin-panel/README.md":{"size":2425,"mtime_ns":1783764561778952800,"indexed_at_ns":1787726739896276700,"word_count":212,"hashes":{"frontend/admin-panel/readme.md":"3945c052249ebd020b013303d5921815b52d847bd36c748a03bfdc8eb2a390b8"}},"frontend/admin-panel/eslint.config.js":{"size":906,"mtime_ns":1787148092334501700,"indexed_at_ns":1787726730554130000,"word_count":69},"frontend/admin-panel/index.html":{"size":363,"mtime_ns":1783764561780558500,"indexed_at_ns":1787726730559871600,"word_count":28},"frontend/admin-panel/package.json":{"size":1072,"mtime_ns":1788000055991496000,"indexed_at_ns":1788000470938176500,"word_count":84,"hashes":{"frontend/admin-panel/package.json":"455b58b802fb0ba4c5aabfa83f023a9e9b692f1d6a2e71b66952509b1a7dd6da"}},"frontend/admin-panel/postcss.config.js":{"size":91,"mtime_ns":1783764561796281900,"indexed_at_ns":1787726730571159000,"word_count":11},"frontend/admin-panel/public/favicon.svg":{"size":9522,"mtime_ns":1783764561797801500,"indexed_at_ns":1787726730577396200,"word_count":491},"frontend/admin-panel/public/fonts/A-Iranian-Sans/A-Iranian-Sans/read me!.txt":{"size":281,"mtime_ns":1783856792435855000,"indexed_at_ns":1787726730602607800,"word_count":15},"frontend/admin-panel/public/fonts/IranNastaliq/IranNastaliq/read me!.txt":{"size":281,"mtime_ns":1783856792445365000,"indexed_at_ns":1787726730626154600,"word_count":15},"frontend/admin-panel/public/fonts/sahel-font-v3.4.0/CHANGELOG.md":{"size":8519,"mtime_ns":1783856792454604400,"indexed_at_ns":1787726739897276800,"word_count":1077,"hashes":{"frontend/admin-panel/public/fonts/sahel-font-v3.4.0/changelog.md":"4003fe6a71221e735897cfe03ac11bd59ef9951572007763151bf95663256a3d"}},"frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md":{"size":4136,"mtime_ns":1783856792502503100,"indexed_at_ns":1787726739898786800,"word_count":366,"hashes":{"frontend/admin-panel/public/fonts/sahel-font-v3.4.0/readme.md":"880beb9c92fd527a098de27bc779b6891a36af98ae994f506a64be199ed50392"}},"frontend/admin-panel/public/fonts/sahel-font-v3.4.0/sample-variable.gif":{"size":236102,"mtime_ns":1783856792546496500,"indexed_at_ns":1787726731162750800,"word_count":10881},"frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/CHANGELOG.md":{"size":7177,"mtime_ns":1783856792548005600,"indexed_at_ns":1787726739900396600,"word_count":951,"hashes":{"frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/changelog.md":"a735e1b29ad9d3361a0d1ecfd5c1f2f78c200a272918606decc377c469944321"}},"frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md":{"size":3696,"mtime_ns":1783856792595155200,"indexed_at_ns":1787726739901406500,"word_count":283,"hashes":{"frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/readme.md":"3b6e2d78372a72b67e339bfd7331d408f43245840749d2f46df5c356a208fbfd"}},"frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/sample.png":{"size":85019,"mtime_ns":1783856792645667900,"indexed_at_ns":1787726731663450200,"word_count":2615},"frontend/admin-panel/public/fonts/vazirmatn-v33.003/AUTHORS.txt":{"size":339,"mtime_ns":1783856792646666000,"indexed_at_ns":1787726731673001900,"word_count":55},"frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md":{"size":38550,"mtime_ns":1783856792647671700,"indexed_at_ns":1787726739903406700,"word_count":5086,"hashes":{"frontend/admin-panel/public/fonts/vazirmatn-v33.003/changelog.md":"5207a2a148ccfd0338342325a39d9b5b2d39514429c93e0aedf68b21f23fd71e"}},"frontend/admin-panel/public/fonts/vazirmatn-v33.003/OFL.txt":{"size":4391,"mtime_ns":1783856792648669800,"indexed_at_ns":1787726731688185800,"word_count":671},"frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md":{"size":2339,"mtime_ns":1783856792648669800,"indexed_at_ns":1787726739904406600,"word_count":270,"hashes":{"frontend/admin-panel/public/fonts/vazirmatn-v33.003/readme.md":"0d736c7dd11e89622e7105e6a5958fc3d83ec827b8a00debc0943bc8e3a3d201"}},"frontend/admin-panel/public/fonts/vazirmatn-v33.003/\u0631\u0627\u0647\u0646\u0645\u0627.txt":{"size":211,"mtime_ns":1783856792971535000,"indexed_at_ns":1787726733915800800,"word_count":14},"frontend/admin-panel/public/icons.svg":{"size":5031,"mtime_ns":1783764561799320300,"indexed_at_ns":1787726733920800200,"word_count":382},"frontend/admin-panel/src/App.tsx":{"size":1088,"mtime_ns":1786799852365481100,"indexed_at_ns":1787726733931929300,"word_count":99},"frontend/admin-panel/src/assets/hero.png":{"size":13057,"mtime_ns":1783764561812863000,"indexed_at_ns":1787726733938940400,"word_count":437},"frontend/admin-panel/src/assets/react.svg":{"size":4126,"mtime_ns":1783764561813924700,"indexed_at_ns":1787726733944940500,"word_count":366},"frontend/admin-panel/src/assets/vite.svg":{"size":8709,"mtime_ns":1783764561814995700,"indexed_at_ns":1787726733951568000,"word_count":439},"frontend/admin-panel/src/components/Layout.tsx":{"size":726,"mtime_ns":1784621786958594800,"indexed_at_ns":1787726733957572200,"word_count":69},"frontend/admin-panel/src/components/ProtectedRoute.tsx":{"size":2336,"mtime_ns":1786799852369164100,"indexed_at_ns":1787726733964577700,"word_count":210},"frontend/admin-panel/src/components/RouteErrorBoundary.tsx":{"size":4042,"mtime_ns":1787062174623011100,"indexed_at_ns":1787726733970575200,"word_count":350},"frontend/admin-panel/src/components/Sidebar.tsx":{"size":13111,"mtime_ns":1787461920842084500,"indexed_at_ns":1787726733977661300,"word_count":1198},"frontend/admin-panel/src/components/Topbar.tsx":{"size":19016,"mtime_ns":1787466234964385700,"indexed_at_ns":1787726733983181100,"word_count":1586},"frontend/admin-panel/src/components/TransactionReceiptModal.tsx":{"size":9674,"mtime_ns":1787405554804618300,"indexed_at_ns":1787726733989180000,"word_count":738},"frontend/admin-panel/src/components/ui/Badge.tsx":{"size":1554,"mtime_ns":1787461920844094000,"indexed_at_ns":1787726733997180400,"word_count":158},"frontend/admin-panel/src/components/ui/Button.tsx":{"size":3591,"mtime_ns":1787467799871536000,"indexed_at_ns":1787726734004723300,"word_count":338},"frontend/admin-panel/src/components/ui/ConfirmModal.tsx":{"size":2294,"mtime_ns":1786972191359099700,"indexed_at_ns":1787726734011333000,"word_count":192},"frontend/admin-panel/src/components/ui/FormField.tsx":{"size":1683,"mtime_ns":1786954681823527000,"indexed_at_ns":1787726734018369200,"word_count":148},"frontend/admin-panel/src/components/ui/IconPickerModal.tsx":{"size":4853,"mtime_ns":1787071159959928200,"indexed_at_ns":1787726734024338100,"word_count":397},"frontend/admin-panel/src/components/ui/ImagePreviewModal.tsx":{"size":3351,"mtime_ns":1786954681824534900,"indexed_at_ns":1787726734032842500,"word_count":270},"frontend/admin-panel/src/components/ui/Input.tsx":{"size":2451,"mtime_ns":1788332598539946700,"indexed_at_ns":1788332708245483800,"word_count":213},"frontend/admin-panel/src/components/ui/MaskableField.tsx":{"size":3246,"mtime_ns":1787405554805712000,"indexed_at_ns":1787726734045422000,"word_count":310},"frontend/admin-panel/src/components/ui/MediaSelector.tsx":{"size":21604,"mtime_ns":1787038450536696800,"indexed_at_ns":1787726734051928800,"word_count":1686},"frontend/admin-panel/src/components/ui/Modal.tsx":{"size":3381,"mtime_ns":1787461920845094300,"indexed_at_ns":1787726734060570900,"word_count":324},"frontend/admin-panel/src/components/ui/Pagination.tsx":{"size":5510,"mtime_ns":1786799852387442100,"indexed_at_ns":1787726734066608900,"word_count":447},"frontend/admin-panel/src/components/ui/PriceInput.tsx":{"size":2633,"mtime_ns":1786948119771162400,"indexed_at_ns":1787726734074127900,"word_count":267},"frontend/admin-panel/src/components/ui/RichTextEditor.tsx":{"size":36574,"mtime_ns":1787980615563542500,"indexed_at_ns":1787981098348418200,"word_count":2767},"frontend/admin-panel/src/components/ui/Select.tsx":{"size":1881,"mtime_ns":1786954681828537500,"indexed_at_ns":1787726734087116300,"word_count":160},"frontend/admin-panel/src/components/ui/Skeleton.tsx":{"size":178,"mtime_ns":1783856792977535800,"indexed_at_ns":1787726734092926500,"word_count":22},"frontend/admin-panel/src/components/ui/Spinner.tsx":{"size":650,"mtime_ns":1783856792979049200,"indexed_at_ns":1787726734100568500,"word_count":67},"frontend/admin-panel/src/components/ui/Textarea.tsx":{"size":1287,"mtime_ns":1786954681828537500,"indexed_at_ns":1787726734107173200,"word_count":110},"frontend/admin-panel/src/components/ui/ThSort.tsx":{"size":1478,"mtime_ns":1787461920845094300,"indexed_at_ns":1787726734113136300,"word_count":148},"frontend/admin-panel/src/components/ui/ToggleSwitch.tsx":{"size":1623,"mtime_ns":1786954681830044900,"indexed_at_ns":1787726734120391600,"word_count":143},"frontend/admin-panel/src/main.tsx":{"size":1055,"mtime_ns":1787062325395038600,"indexed_at_ns":1787726734130217700,"word_count":106},"frontend/admin-panel/src/pages/B2BManager.tsx":{"size":24689,"mtime_ns":1787729527927391700,"indexed_at_ns":1787729932214362700,"word_count":1682},"frontend/admin-panel/src/pages/BannersManager.tsx":{"size":19583,"mtime_ns":1787467799874171700,"indexed_at_ns":1787726734145966800,"word_count":1396},"frontend/admin-panel/src/pages/Blogs.tsx":{"size":82294,"mtime_ns":1787729527928391800,"indexed_at_ns":1787729932225892600,"word_count":5654},"frontend/admin-panel/src/pages/CMS.tsx":{"size":10114,"mtime_ns":1787467933664259800,"indexed_at_ns":1787726734157997900,"word_count":791},"frontend/admin-panel/src/pages/Categories.tsx":{"size":16242,"mtime_ns":1787469989141511600,"indexed_at_ns":1787726734164506500,"word_count":1174},"frontend/admin-panel/src/pages/ContactSubmissions.tsx":{"size":12346,"mtime_ns":1787467799877343800,"indexed_at_ns":1787726734172638600,"word_count":842},"frontend/admin-panel/src/pages/Coupons.tsx":{"size":27669,"mtime_ns":1788332598543451700,"indexed_at_ns":1788332708366710500,"word_count":2138},"frontend/admin-panel/src/pages/Dashboard.tsx":{"size":6006,"mtime_ns":1786885876829510000,"indexed_at_ns":1787726734186274700,"word_count":534},"frontend/admin-panel/src/pages/DoctorsManager.tsx":{"size":23282,"mtime_ns":1787467799879923800,"indexed_at_ns":1787726734193275100,"word_count":1666},"frontend/admin-panel/src/pages/FAQManager.tsx":{"size":12625,"mtime_ns":1787467799881924800,"indexed_at_ns":1787726734201784400,"word_count":937},"frontend/admin-panel/src/pages/FinancialSettingsPage.tsx":{"size":27051,"mtime_ns":1788333161520132500,"indexed_at_ns":1788333266832134200,"word_count":1794},"frontend/admin-panel/src/pages/IngredientsManager.tsx":{"size":17943,"mtime_ns":1787467933669934500,"indexed_at_ns":1787726734213391200,"word_count":1254},"frontend/admin-panel/src/pages/Login.tsx":{"size":11573,"mtime_ns":1788587906733886000,"indexed_at_ns":1788608123807803900,"word_count":838},"frontend/admin-panel/src/pages/Media.tsx":{"size":29374,"mtime_ns":1787467799885925200,"indexed_at_ns":1787726734227390500,"word_count":2304},"frontend/admin-panel/src/pages/MenuManager.tsx":{"size":19625,"mtime_ns":1787469989146215000,"indexed_at_ns":1787726734240896100,"word_count":1512},"frontend/admin-panel/src/pages/MonitoringPage.tsx":{"size":16455,"mtime_ns":1787466234965980200,"indexed_at_ns":1787726734246489100,"word_count":1289},"frontend/admin-panel/src/pages/Orders.tsx":{"size":64822,"mtime_ns":1788609394330111700,"indexed_at_ns":1788613610290338300,"word_count":4808},"frontend/admin-panel/src/pages/PaymentGatewaysPage.tsx":{"size":37893,"mtime_ns":1787467799889939500,"indexed_at_ns":1787726734259598900,"word_count":2521},"frontend/admin-panel/src/pages/Pets.tsx":{"size":16631,"mtime_ns":1787467799891938300,"indexed_at_ns":1787726734268435300,"word_count":1209},"frontend/admin-panel/src/pages/PrescriptionsManager.tsx":{"size":19424,"mtime_ns":1787467799892935800,"indexed_at_ns":1787726734275434500,"word_count":1419},"frontend/admin-panel/src/pages/Products.tsx":{"size":248144,"mtime_ns":1788351605801883800,"indexed_at_ns":1788608123851710200,"word_count":16079},"frontend/admin-panel/src/pages/Reports.tsx":{"size":24050,"mtime_ns":1787729523442451300,"indexed_at_ns":1787729932336128900,"word_count":1832},"frontend/admin-panel/src/pages/Reviews.tsx":{"size":30539,"mtime_ns":1787740536670948600,"indexed_at_ns":1787741544010232200,"word_count":2140},"frontend/admin-panel/src/pages/SeoSettingsPage.tsx":{"size":50513,"mtime_ns":1788343360494035900,"indexed_at_ns":1788608123872221300,"word_count":3404},"frontend/admin-panel/src/pages/Settings.tsx":{"size":24256,"mtime_ns":1787468615457819400,"indexed_at_ns":1787726734308156100,"word_count":1701},"frontend/admin-panel/src/pages/ShippingSettingsPage.tsx":{"size":7615,"mtime_ns":1787467799901935300,"indexed_at_ns":1787726734314725100,"word_count":585},"frontend/admin-panel/src/pages/SmartAdvisorManager.tsx":{"size":13745,"mtime_ns":1787467799902933600,"indexed_at_ns":1787726734320253400,"word_count":1014},"frontend/admin-panel/src/pages/SmsSettingsPage.tsx":{"size":133882,"mtime_ns":1788610217563142800,"indexed_at_ns":1788613610355074400,"word_count":9180},"frontend/admin-panel/src/pages/SslSettingsPage.tsx":{"size":25502,"mtime_ns":1787467799905446700,"indexed_at_ns":1787726734336379700,"word_count":1847},"frontend/admin-panel/src/pages/SystemSettingsPage.tsx":{"size":18951,"mtime_ns":1787742160542543900,"indexed_at_ns":1787742226362423500,"word_count":1264},"frontend/admin-panel/src/pages/TestimonialsManager.tsx":{"size":18547,"mtime_ns":1787467799908955400,"indexed_at_ns":1787726734348881900,"word_count":1297},"frontend/admin-panel/src/pages/Tickets.tsx":{"size":20254,"mtime_ns":1787467799909962900,"indexed_at_ns":1787726734355478000,"word_count":1455},"frontend/admin-panel/src/pages/Transactions.tsx":{"size":45136,"mtime_ns":1787471434872188300,"indexed_at_ns":1787726734362406800,"word_count":3213},"frontend/admin-panel/src/pages/UITexts.tsx":{"size":64687,"mtime_ns":1788587906738676600,"indexed_at_ns":1788608123929931500,"word_count":5471},"frontend/admin-panel/src/pages/Users.tsx":{"size":42038,"mtime_ns":1788587906739671200,"indexed_at_ns":1788608123936596200,"word_count":2827},"frontend/admin-panel/src/pages/Videos.tsx":{"size":25920,"mtime_ns":1787740536675689700,"indexed_at_ns":1787741544096497300,"word_count":1845},"frontend/admin-panel/src/pages/WholesaleApplications.tsx":{"size":6713,"mtime_ns":1787467799916852500,"indexed_at_ns":1787726734390128300,"word_count":505},"frontend/admin-panel/src/pages/Wiki.tsx":{"size":15651,"mtime_ns":1787469989158212800,"indexed_at_ns":1787726734396025400,"word_count":1221},"frontend/admin-panel/src/pages/ZibalPortalPage.tsx":{"size":55699,"mtime_ns":1787570438155805200,"indexed_at_ns":1787726734402122900,"word_count":3753},"frontend/admin-panel/src/routes/adminRoutes.tsx":{"size":6245,"mtime_ns":1787461920854097100,"indexed_at_ns":1787726734408451000,"word_count":603},"frontend/admin-panel/src/services/api.ts":{"size":5190,"mtime_ns":1787997670262225000,"indexed_at_ns":1787998034950007400,"word_count":479},"frontend/admin-panel/src/store/adminAuthStore.ts":{"size":666,"mtime_ns":1786799852469037000,"indexed_at_ns":1787726734421659400,"word_count":65},"frontend/admin-panel/src/types/admin.ts":{"size":4526,"mtime_ns":1788336258608452000,"indexed_at_ns":1788337260287496600,"word_count":483},"frontend/admin-panel/src/utils/lazyWithRetry.ts":{"size":1129,"mtime_ns":1787062174626227900,"indexed_at_ns":1787726734435357300,"word_count":114},"frontend/admin-panel/src/utils/useTableParams.ts":{"size":4060,"mtime_ns":1787461920855096000,"indexed_at_ns":1787726734441273300,"word_count":441},"frontend/admin-panel/tailwind.config.js":{"size":182,"mtime_ns":1783764561861721300,"indexed_at_ns":1787726734447096600,"word_count":20},"frontend/admin-panel/tsconfig.app.json":{"size":633,"mtime_ns":1787055476779566300,"indexed_at_ns":1787726739794704700,"word_count":48,"hashes":{"frontend/admin-panel/tsconfig.app.json":"2d9838ee1119342fd03bf7644781b8b6aced2cbdc908ff186cdd6ab7ab9ba1c4"}},"frontend/admin-panel/tsconfig.json":{"size":119,"mtime_ns":1783764561863393600,"indexed_at_ns":1787726739795705100,"word_count":15,"hashes":{"frontend/admin-panel/tsconfig.json":"7a6c2e21b6eaa2355b4e2ed29db2a767499a88498bde745cdccf3ba8c7f64f2b"}},"frontend/admin-panel/tsconfig.node.json":{"size":591,"mtime_ns":1783764561863923100,"indexed_at_ns":1787726739796704600,"word_count":44,"hashes":{"frontend/admin-panel/tsconfig.node.json":"035a8143cff9651dbb67885756a07cc3f8ed1c5dcbf04a6e2042600b7989d525"}},"frontend/admin-panel/vite.config.ts":{"size":161,"mtime_ns":1783764561864454900,"indexed_at_ns":1787726734467280600,"word_count":18},"frontend/application/AGENTS.md":{"size":717,"mtime_ns":1787127978268943700,"indexed_at_ns":1787726734477280500,"word_count":88},"frontend/application/CLAUDE.md":{"size":11,"mtime_ns":1783764561866744500,"indexed_at_ns":1787726739905406700,"word_count":1,"hashes":{"frontend/application/claude.md":"0776fbbe8c29c6dc861efa70683090a370ab56dc77c22cb9de74895b4c783320"}},"frontend/application/README.md":{"size":1450,"mtime_ns":1783764561867354300,"indexed_at_ns":1787726739906406500,"word_count":155,"hashes":{"frontend/application/readme.md":"dd829cdf325092d859080ac1db3cbf2cca3198e72834f0f228495ef3c49a2240"}},"frontend/application/app/ClientLayout.tsx":{"size":7245,"mtime_ns":1787999006323066200,"indexed_at_ns":1787999346453403700,"word_count":658},"frontend/application/app/HomeClient.tsx":{"size":13529,"mtime_ns":1788587906741672600,"indexed_at_ns":1788608124055744400,"word_count":868},"frontend/application/app/about/page.tsx":{"size":5706,"mtime_ns":1787139270959412500,"indexed_at_ns":1787726734506477700,"word_count":474},"frontend/application/app/api/revalidate/route.ts":{"size":1889,"mtime_ns":1787579631780106700,"indexed_at_ns":1787726734514149300,"word_count":220},"frontend/application/app/b2b/error.tsx":{"size":380,"mtime_ns":1787645037377262000,"indexed_at_ns":1787726734520148500,"word_count":50},"frontend/application/app/b2b/page.tsx":{"size":1506,"mtime_ns":1787644197141618200,"indexed_at_ns":1787726734526117900,"word_count":135},"frontend/application/app/blog/[slug]/page.tsx":{"size":8201,"mtime_ns":1787641161057694000,"indexed_at_ns":1787726734533148700,"word_count":767},"frontend/application/app/blog/error.tsx":{"size":382,"mtime_ns":1787645037378268200,"indexed_at_ns":1787726734540186900,"word_count":50},"frontend/application/app/blog/loading.tsx":{"size":1293,"mtime_ns":1787645037379262800,"indexed_at_ns":1787726734546152600,"word_count":115},"frontend/application/app/blog/page.tsx":{"size":3378,"mtime_ns":1787993003772568700,"indexed_at_ns":1787997305789060800,"word_count":346},"frontend/application/app/blog/rss.xml/route.ts":{"size":3076,"mtime_ns":1787577523710351300,"indexed_at_ns":1787726734558947600,"word_count":280},"frontend/application/app/catalog/CatalogClient.tsx":{"size":1338,"mtime_ns":1788351605803883700,"indexed_at_ns":1788608124133262000,"word_count":124},"frontend/application/app/catalog/page.tsx":{"size":671,"mtime_ns":1787139270965525300,"indexed_at_ns":1787726734570982600,"word_count":66},"frontend/application/app/checkout/page.tsx":{"size":604,"mtime_ns":1787139270967535500,"indexed_at_ns":1787726734576551900,"word_count":60},"frontend/application/app/checkout/success/[id]/page.tsx":{"size":231,"mtime_ns":1783764561878668300,"indexed_at_ns":1787726734582122000,"word_count":31},"frontend/application/app/contact/page.tsx":{"size":2655,"mtime_ns":1787644197143198500,"indexed_at_ns":1787726734588729900,"word_count":214},"frontend/application/app/dashboard/page.tsx":{"size":903,"mtime_ns":1787394935318217400,"indexed_at_ns":1787726734595730700,"word_count":83},"frontend/application/app/error.tsx":{"size":383,"mtime_ns":1785148022478709000,"indexed_at_ns":1787726734601792600,"word_count":50},"frontend/application/app/layout.tsx":{"size":6818,"mtime_ns":1788354488237712300,"indexed_at_ns":1788608124192280700,"word_count":547},"frontend/application/app/loading.tsx":{"size":1373,"mtime_ns":1785148022487650000,"indexed_at_ns":1787726734623432900,"word_count":122},"frontend/application/app/not-found.tsx":{"size":124,"mtime_ns":1783764561891411400,"indexed_at_ns":1787726734629416600,"word_count":15},"frontend/application/app/page.tsx":{"size":1093,"mtime_ns":1788587906745671800,"indexed_at_ns":1788608124207313100,"word_count":120},"frontend/application/app/payment/verify/page.tsx":{"size":14338,"mtime_ns":1786891855356078600,"indexed_at_ns":1787726734641507800,"word_count":1094},"frontend/application/app/privacy/page.tsx":{"size":4098,"mtime_ns":1787139270976563700,"indexed_at_ns":1787726734648804500,"word_count":336},"frontend/application/app/profile/page.tsx":{"size":623,"mtime_ns":1787139270978803200,"indexed_at_ns":1787726734655771200,"word_count":63},"frontend/application/app/robots.ts":{"size":825,"mtime_ns":1787578481501464000,"indexed_at_ns":1787726734660416500,"word_count":72},"frontend/application/app/search/page.tsx":{"size":786,"mtime_ns":1787139270979946700,"indexed_at_ns":1787726734667451100,"word_count":82},"frontend/application/app/shop/[slug]/page.tsx":{"size":11235,"mtime_ns":1788337303756021500,"indexed_at_ns":1788337670120361600,"word_count":1011},"frontend/application/app/shop/error.tsx":{"size":382,"mtime_ns":1787645037380267900,"indexed_at_ns":1787726734679433600,"word_count":50},"frontend/application/app/shop/feed.xml/route.ts":{"size":3698,"mtime_ns":1788000526323436900,"indexed_at_ns":1788328795003523300,"word_count":333},"frontend/application/app/shop/loading.tsx":{"size":1596,"mtime_ns":1787645037380267900,"indexed_at_ns":1787726734691441600,"word_count":144},"frontend/application/app/shop/page.tsx":{"size":2715,"mtime_ns":1787644197146199100,"indexed_at_ns":1787726734698441300,"word_count":295},"frontend/application/app/sitemap-categories.xml/route.ts":{"size":1797,"mtime_ns":1787578481507462100,"indexed_at_ns":1787726734703951500,"word_count":179},"frontend/application/app/sitemap-products.xml/route.ts":{"size":1980,"mtime_ns":1787578481508464300,"indexed_at_ns":1787726734710719000,"word_count":186},"frontend/application/app/sitemap.ts":{"size":3510,"mtime_ns":1787578481510463300,"indexed_at_ns":1787726734715717900,"word_count":350},"frontend/application/app/track/page.tsx":{"size":612,"mtime_ns":1787139270984213600,"indexed_at_ns":1787726734723190300,"word_count":60},"frontend/application/app/trust-seals/page.tsx":{"size":7155,"mtime_ns":1787394001609306700,"indexed_at_ns":1787726734729188900,"word_count":566},"frontend/application/app/videos/page.tsx":{"size":2822,"mtime_ns":1787644197147196700,"indexed_at_ns":1787726734735191600,"word_count":266},"frontend/application/app/wiki/[slug]/page.tsx":{"size":8912,"mtime_ns":1787644197149197300,"indexed_at_ns":1787726734743193100,"word_count":702},"frontend/application/app/wiki/page.tsx":{"size":910,"mtime_ns":1787139270987830800,"indexed_at_ns":1787726734749703000,"word_count":85},"frontend/application/components/AddressModal.tsx":{"size":16470,"mtime_ns":1787739535190383900,"indexed_at_ns":1787739632847264500,"word_count":1146},"frontend/application/components/ArchivePage.tsx":{"size":39465,"mtime_ns":1788613393615499400,"indexed_at_ns":1788613610786542000,"word_count":3049},"frontend/application/components/AuthModal.tsx":{"size":55557,"mtime_ns":1787741599341881000,"indexed_at_ns":1787741688145548900,"word_count":3610},"frontend/application/components/B2BLandingClient.tsx":{"size":25866,"mtime_ns":1787645037381267600,"indexed_at_ns":1787726734774269600,"word_count":1824},"frontend/application/components/B2BPortal.tsx":{"size":14014,"mtime_ns":1786894580156857600,"indexed_at_ns":1787726734780287600,"word_count":1094},"frontend/application/components/BackButton.tsx":{"size":1120,"mtime_ns":1786965281357277800,"indexed_at_ns":1787726734786847300,"word_count":117},"frontend/application/components/BannerPlacement.tsx":{"size":7703,"mtime_ns":1788346274841175500,"indexed_at_ns":1788608124349969300,"word_count":527},"frontend/application/components/BlogPage.tsx":{"size":21976,"mtime_ns":1787729523446453700,"indexed_at_ns":1787729932775425100,"word_count":1583},"frontend/application/components/BlogPostClient.tsx":{"size":20329,"mtime_ns":1787740536679696900,"indexed_at_ns":1787741544522017800,"word_count":1361},"frontend/application/components/BlogPreviewSection.tsx":{"size":7925,"mtime_ns":1788345971093472400,"indexed_at_ns":1788608124366176400,"word_count":567},"frontend/application/components/BrandLogo.tsx":{"size":3307,"mtime_ns":1787564348690862200,"indexed_at_ns":1787726734819682600,"word_count":287},"frontend/application/components/CartDrawer.tsx":{"size":22052,"mtime_ns":1787733215548980400,"indexed_at_ns":1787737992400541400,"word_count":1448},"frontend/application/components/CheckoutPage.tsx":{"size":48510,"mtime_ns":1788595515841005300,"indexed_at_ns":1788608124380746700,"word_count":3241},"frontend/application/components/ContactFormClient.tsx":{"size":10833,"mtime_ns":1787729527935396400,"indexed_at_ns":1787729932808029300,"word_count":784},"frontend/application/components/DeleteConfirmModal.tsx":{"size":2328,"mtime_ns":1786799852608752300,"indexed_at_ns":1787726734845321800,"word_count":195},"frontend/application/components/EnamadBadge.tsx":{"size":1516,"mtime_ns":1786799852612361900,"indexed_at_ns":1787726734850835400,"word_count":114},"frontend/application/components/ErrorBoundary.tsx":{"size":2617,"mtime_ns":1786799852614549600,"indexed_at_ns":1787726734857066500,"word_count":235},"frontend/application/components/ErrorPages.tsx":{"size":2809,"mtime_ns":1787661485945074600,"indexed_at_ns":1787726734862654700,"word_count":243},"frontend/application/components/FAQSection.tsx":{"size":5086,"mtime_ns":1787729995239614600,"indexed_at_ns":1787733017983672300,"word_count":414},"frontend/application/components/FeaturedProducts.tsx":{"size":12447,"mtime_ns":1788613359018032200,"indexed_at_ns":1788613610878863500,"word_count":1076},"frontend/application/components/Footer.tsx":{"size":14945,"mtime_ns":1788349370985831800,"indexed_at_ns":1788608124424181700,"word_count":996},"frontend/application/components/Header.tsx":{"size":33116,"mtime_ns":1788346274842183200,"indexed_at_ns":1788608124429851700,"word_count":2234},"frontend/application/components/HeaderButton.tsx":{"size":2242,"mtime_ns":1786799852637156100,"indexed_at_ns":1787726734893172700,"word_count":208},"frontend/application/components/Hero.tsx":{"size":20159,"mtime_ns":1788354488241306800,"indexed_at_ns":1788608124439859300,"word_count":1652},"frontend/application/components/IngredientWiki.tsx":{"size":20337,"mtime_ns":1786965281374206800,"indexed_at_ns":1787726734906680500,"word_count":1496},"frontend/application/components/LoginModal.tsx":{"size":13846,"mtime_ns":1786885876932267500,"indexed_at_ns":1787726734914249200,"word_count":1121},"frontend/application/components/MaintenancePage.tsx":{"size":3686,"mtime_ns":1786946249984693000,"indexed_at_ns":1787726734921249900,"word_count":313},"frontend/application/components/NetworkBanner.tsx":{"size":2350,"mtime_ns":1786799852662138900,"indexed_at_ns":1787726734928082300,"word_count":214},"frontend/application/components/OrderDetailsModal.tsx":{"size":36797,"mtime_ns":1788609394333189500,"indexed_at_ns":1788613610930051500,"word_count":2547},"frontend/application/components/OrderSuccess.tsx":{"size":6396,"mtime_ns":1786799852665542300,"indexed_at_ns":1787726734947087000,"word_count":521},"frontend/application/components/OrderTracking.tsx":{"size":9269,"mtime_ns":1787729527937447000,"indexed_at_ns":1787729932896464500,"word_count":681},"frontend/application/components/PetProfile.tsx":{"size":83265,"mtime_ns":1788613480193167400,"indexed_at_ns":1788613610946375900,"word_count":5854},"frontend/application/components/PodcastInlinePlayer.tsx":{"size":18123,"mtime_ns":1787993003774220500,"indexed_at_ns":1787997306151429500,"word_count":1464},"frontend/application/components/PodcastPlayerModal.tsx":{"size":18105,"mtime_ns":1787748657155136900,"indexed_at_ns":1787748748510048700,"word_count":1487},"frontend/application/components/PrescriptionUploadModal.tsx":{"size":19183,"mtime_ns":1787741735267947500,"indexed_at_ns":1787741779220211300,"word_count":1356},"frontend/application/components/ProductPage.tsx":{"size":94017,"mtime_ns":1788613456774888300,"indexed_at_ns":1788613610973916500,"word_count":6701},"frontend/application/components/ProductReviews.tsx":{"size":16113,"mtime_ns":1788333723592862900,"indexed_at_ns":1788333815613251700,"word_count":1195},"frontend/application/components/SafeImage.tsx":{"size":4289,"mtime_ns":1788354488242911600,"indexed_at_ns":1788608124543408700,"word_count":399},"frontend/application/components/SearchResultsPage.tsx":{"size":8335,"mtime_ns":1786799852701578200,"indexed_at_ns":1787726735012019400,"word_count":594},"frontend/application/components/SearchableSelect.tsx":{"size":4375,"mtime_ns":1785575516155554800,"indexed_at_ns":1787726735019020000,"word_count":336},"frontend/application/components/Skeleton.tsx":{"size":3084,"mtime_ns":1783764561943996900,"indexed_at_ns":1787726735026024900,"word_count":291},"frontend/application/components/SmartAdvisor.tsx":{"size":37402,"mtime_ns":1788587906747669800,"indexed_at_ns":1788608124565416700,"word_count":2836},"frontend/application/components/TestimonialsSection.tsx":{"size":6677,"mtime_ns":1788346274843208600,"indexed_at_ns":1788608124571187900,"word_count":516},"frontend/application/components/TickerBanner.tsx":{"size":1605,"mtime_ns":1786885876960835800,"indexed_at_ns":1787726735043649000,"word_count":140},"frontend/application/components/Tooltip.tsx":{"size":5237,"mtime_ns":1788333306923629700,"indexed_at_ns":1788333673999170900,"word_count":438},"frontend/application/components/TopUpModal.tsx":{"size":9381,"mtime_ns":1787406597303349300,"indexed_at_ns":1787726735057286900,"word_count":741},"frontend/application/components/UserDashboard.tsx":{"size":97782,"mtime_ns":1788613325218658300,"indexed_at_ns":1788613611033614700,"word_count":6193},"frontend/application/components/VetGallery.tsx":{"size":8392,"mtime_ns":1788346274844355400,"indexed_at_ns":1788608124598520700,"word_count":653},"frontend/application/components/VideoModalPlayer.tsx":{"size":24822,"mtime_ns":1787993003775855300,"indexed_at_ns":1787997306253976800,"word_count":1846},"frontend/application/components/VideosPage.tsx":{"size":8815,"mtime_ns":1787729523450452600,"indexed_at_ns":1787729932995147700,"word_count":672},"frontend/application/components/__tests__/CartDrawer.test.tsx":{"size":3197,"mtime_ns":1786799852761825800,"indexed_at_ns":1787726735089813300,"word_count":285},"frontend/application/components/__tests__/FeaturedProducts.test.tsx":{"size":2922,"mtime_ns":1787729523451454700,"indexed_at_ns":1787729933006280300,"word_count":246},"frontend/application/components/__tests__/Footer.test.tsx":{"size":1200,"mtime_ns":1787729523452453700,"indexed_at_ns":1787729933012281300,"word_count":97},"frontend/application/components/__tests__/Header.test.tsx":{"size":3336,"mtime_ns":1787729523452453700,"indexed_at_ns":1787729933018310200,"word_count":266},"frontend/application/components/__tests__/Hero.test.tsx":{"size":1980,"mtime_ns":1786799852776010800,"indexed_at_ns":1787726735115917200,"word_count":192},"frontend/application/components/__tests__/Tooltip.test.tsx":{"size":1508,"mtime_ns":1786799852784348900,"indexed_at_ns":1787726735121917300,"word_count":137},"frontend/application/components/catalog/CatalogPageSpread.tsx":{"size":27938,"mtime_ns":1788613506708489500,"indexed_at_ns":1788613611092813900,"word_count":2227},"frontend/application/components/catalog/FlipbookCatalog.tsx":{"size":36610,"mtime_ns":1787738052869335500,"indexed_at_ns":1787738361662030900,"word_count":3147},"frontend/application/components/catalog/ProductDetailModal.tsx":{"size":8265,"mtime_ns":1787981163247727400,"indexed_at_ns":1787981250441706300,"word_count":589},"frontend/application/eslint.config.mjs":{"size":747,"mtime_ns":1787148092358055900,"indexed_at_ns":1787726735150541200,"word_count":61},"frontend/application/lib/data/products.ts":{"size":104414,"mtime_ns":1788351605806390800,"indexed_at_ns":1788608124674690000,"word_count":9765},"frontend/application/lib/data/provinces.ts":{"size":2993,"mtime_ns":1785571725610676000,"indexed_at_ns":1787726735166169300,"word_count":203},"frontend/application/lib/data/scientificTerms.ts":{"size":18042,"mtime_ns":1786958978743097300,"indexed_at_ns":1787726735173169300,"word_count":1756},"frontend/application/lib/fonts.ts":{"size":561,"mtime_ns":1788351855943419900,"indexed_at_ns":1788608124691696500,"word_count":55},"frontend/application/lib/hooks/useNetworkStatus.ts":{"size":610,"mtime_ns":1786799852793488000,"indexed_at_ns":1787726735185762100,"word_count":59},"frontend/application/lib/schema.ts":{"size":7336,"mtime_ns":1787644197156205400,"indexed_at_ns":1787726735192345800,"word_count":609},"frontend/application/lib/seo.ts":{"size":9685,"mtime_ns":1788587906749774900,"indexed_at_ns":1788608124712831100,"word_count":837},"frontend/application/lib/services/api.ts":{"size":3694,"mtime_ns":1787997670265470700,"indexed_at_ns":1787998035733091300,"word_count":391},"frontend/application/lib/services/authService.ts":{"size":4524,"mtime_ns":1786885876986184800,"indexed_at_ns":1787726735211416700,"word_count":509},"frontend/application/lib/services/orderService.ts":{"size":2428,"mtime_ns":1786799852810726500,"indexed_at_ns":1787726735217187400,"word_count":279},"frontend/application/lib/services/productService.ts":{"size":14085,"mtime_ns":1788354488244444100,"indexed_at_ns":1788608124734055200,"word_count":1287},"frontend/application/lib/services/ticketService.ts":{"size":1569,"mtime_ns":1786890779340901800,"indexed_at_ns":1787726735230632600,"word_count":170},"frontend/application/lib/services/videoService.ts":{"size":1867,"mtime_ns":1787993003779460300,"indexed_at_ns":1787997306396146000,"word_count":210},"frontend/application/lib/store/__tests__/cartStore.test.ts":{"size":4430,"mtime_ns":1786799852822036900,"indexed_at_ns":1787726735244738400,"word_count":386},"frontend/application/lib/store/__tests__/settingsStore.test.ts":{"size":1949,"mtime_ns":1783856793043803200,"indexed_at_ns":1787726735251871200,"word_count":194},"frontend/application/lib/store/__tests__/userStore.test.ts":{"size":3639,"mtime_ns":1786799852825547700,"indexed_at_ns":1787726735257815200,"word_count":289},"frontend/application/lib/store/cartStore.ts":{"size":6972,"mtime_ns":1787660831220289700,"indexed_at_ns":1787726735265091600,"word_count":697},"frontend/application/lib/store/settingsStore.ts":{"size":3630,"mtime_ns":1786948119787096800,"indexed_at_ns":1787726735271091300,"word_count":371},"frontend/application/lib/store/uiStore.ts":{"size":872,"mtime_ns":1786799852833588000,"indexed_at_ns":1787726735277092600,"word_count":100},"frontend/application/lib/store/usePetStore.ts":{"size":8680,"mtime_ns":1786954681845300600,"indexed_at_ns":1787726735283172200,"word_count":850},"frontend/application/lib/store/userStore.ts":{"size":10602,"mtime_ns":1788609394337189200,"indexed_at_ns":1788613611248850100,"word_count":918},"frontend/application/lib/types.ts":{"size":2222,"mtime_ns":1787729527940443900,"indexed_at_ns":1787729933167879300,"word_count":239},"frontend/application/lib/utils.ts":{"size":478,"mtime_ns":1786799852847284000,"indexed_at_ns":1787726735301154500,"word_count":61},"frontend/application/next.config.ts":{"size":3153,"mtime_ns":1788353540761527200,"indexed_at_ns":1788608124808716400,"word_count":279},"frontend/application/package.json":{"size":879,"mtime_ns":1788000055992497300,"indexed_at_ns":1788000470956192900,"word_count":74,"hashes":{"frontend/application/package.json":"7a1fa68660fc9ab2089ea4e22c7d889b8efd8dbdc9faf56ce7d354319ac081b9"}},"frontend/application/postcss.config.mjs":{"size":94,"mtime_ns":1783764561988252100,"indexed_at_ns":1787726735322173300,"word_count":13},"frontend/application/public/assets/images/canina-product-placeholder.png":{"size":6990105,"mtime_ns":1787461919505024400,"indexed_at_ns":1787726735328171600,"word_count":267685},"frontend/application/public/assets/images/regenerated_image_1779109861747.png":{"size":2269101,"mtime_ns":1783764562014110300,"indexed_at_ns":1787726735596033500,"word_count":84979},"frontend/application/public/file.svg":{"size":391,"mtime_ns":1783764562016213600,"indexed_at_ns":1787726735643616000,"word_count":50},"frontend/application/public/fonts/A-Iranian-Sans/A-Iranian-Sans/read me!.txt":{"size":281,"mtime_ns":1783856793098052000,"indexed_at_ns":1787726735668659800,"word_count":15},"frontend/application/public/fonts/IranNastaliq/IranNastaliq/read me!.txt":{"size":281,"mtime_ns":1783856793107660400,"indexed_at_ns":1787726735694207900,"word_count":15},"frontend/application/public/fonts/sahel-font-v3.4.0/CHANGELOG.md":{"size":8519,"mtime_ns":1783856793113660500,"indexed_at_ns":1787726739908406400,"word_count":1077,"hashes":{"frontend/application/public/fonts/sahel-font-v3.4.0/changelog.md":"be9b046e69dc5442c30d61cca51a69e4238f861da265d1ce8cd0192bafce40a9"}},"frontend/application/public/fonts/sahel-font-v3.4.0/README.md":{"size":4136,"mtime_ns":1783856793156251700,"indexed_at_ns":1787726739909406300,"word_count":366,"hashes":{"frontend/application/public/fonts/sahel-font-v3.4.0/readme.md":"9b0e689f6474b487d70db0ecb05321072f15df92266522497b60aaa47579aac5"}},"frontend/application/public/fonts/sahel-font-v3.4.0/sample-variable.gif":{"size":236102,"mtime_ns":1783856793229119700,"indexed_at_ns":1787726736213031900,"word_count":10881},"frontend/application/public/fonts/shabnam-font-v5.0.1/CHANGELOG.md":{"size":7177,"mtime_ns":1783856793230118600,"indexed_at_ns":1787726736225832200,"word_count":951},"frontend/application/public/fonts/shabnam-font-v5.0.1/README.md":{"size":3696,"mtime_ns":1783856793279542700,"indexed_at_ns":1787726736475009300,"word_count":283},"frontend/application/public/fonts/shabnam-font-v5.0.1/sample.png":{"size":85019,"mtime_ns":1783856793315146800,"indexed_at_ns":1787726736717303100,"word_count":2615},"frontend/application/public/fonts/vazirmatn-v33.003/AUTHORS.txt":{"size":339,"mtime_ns":1783856793316155600,"indexed_at_ns":1787726736727313200,"word_count":55},"frontend/application/public/fonts/vazirmatn-v33.003/CHANGELOG.md":{"size":38550,"mtime_ns":1783856793317690100,"indexed_at_ns":1787726736736959200,"word_count":5086},"frontend/application/public/fonts/vazirmatn-v33.003/OFL.txt":{"size":4391,"mtime_ns":1783856793319422000,"indexed_at_ns":1787726736744957500,"word_count":671},"frontend/application/public/fonts/vazirmatn-v33.003/README.md":{"size":2339,"mtime_ns":1783856793320489000,"indexed_at_ns":1787726736753050400,"word_count":270},"frontend/application/public/fonts/vazirmatn-v33.003/\u0631\u0627\u0647\u0646\u0645\u0627.txt":{"size":211,"mtime_ns":1783856793668096800,"indexed_at_ns":1787726738964542200,"word_count":14},"frontend/application/public/globe.svg":{"size":1035,"mtime_ns":1783764562016720700,"indexed_at_ns":1787726738969546300,"word_count":154},"frontend/application/public/images/vets/vet1.webp":{"size":6990105,"mtime_ns":1787461919541761600,"indexed_at_ns":1787726738988845300,"word_count":267685},"frontend/application/public/next.svg":{"size":1375,"mtime_ns":1783764562018238900,"indexed_at_ns":1787726739135424800,"word_count":183},"frontend/application/public/vercel.svg":{"size":128,"mtime_ns":1783764562019253000,"indexed_at_ns":1787726739141424700,"word_count":12},"frontend/application/public/window.svg":{"size":385,"mtime_ns":1783764562019253000,"indexed_at_ns":1787726739147423800,"word_count":63},"frontend/application/tsconfig.json":{"size":750,"mtime_ns":1786799852865640000,"indexed_at_ns":1787726739800717100,"word_count":61,"hashes":{"frontend/application/tsconfig.json":"adcade0f962ec5888be99b4b1402d98812cfd570b0c5669bda73142b2cb9210d"}},"frontend/application/vitest.config.ts":{"size":244,"mtime_ns":1786799852868652900,"indexed_at_ns":1787726739161997600,"word_count":25},"frontend/application/vitest.setup.ts":{"size":1237,"mtime_ns":1787729523454452000,"indexed_at_ns":1787729936531670400,"word_count":141},"manual-test-scenarios.md":{"size":0,"mtime_ns":1787729528073006400,"indexed_at_ns":1787729937354455500,"word_count":0,"hashes":{"manual-test-scenarios.md":"c6e53ad8216c7ae7d9e1449511caca4c768d1c68b0b859ae24f0add4afe8e502"}},"metadata.json":{"size":334,"mtime_ns":1783856793672137200,"indexed_at_ns":1787726739801716800,"word_count":35,"hashes":{"metadata.json":"c44b4c4ba60752554ceae65e2f22bddb756cbeb25a4a31ee79160b6eb182255a"}},"package.json":{"size":1237,"mtime_ns":1787729528076005200,"indexed_at_ns":1787729937137155800,"word_count":136,"hashes":{"package.json":"3ca5b265c68cc5660e5fd57b0aeb13de7eb49732740eafe405f6f0804671ceeb"}},"playwright.config.ts":{"size":2710,"mtime_ns":1787729528077005300,"indexed_at_ns":1787729936552986300,"word_count":270},"prometheus.yml":{"size":164,"mtime_ns":1783764562027779300,"indexed_at_ns":1787726739197125100,"word_count":13},"scripts/backup_db.sh":{"size":1362,"mtime_ns":1786799852876784600,"indexed_at_ns":1787726739803716600,"word_count":134,"hashes":{"scripts/backup_db.sh":"f90cf2d0c954f3eaca83566ccb365bff62fd97a2af0225816c19902ee4dfdd6c"}},"scripts/compose.prod.yml":{"size":2248,"mtime_ns":1787998075631988900,"indexed_at_ns":1787998966532164100,"word_count":126},"scripts/compose.stage.yml":{"size":2557,"mtime_ns":1787077093991779700,"indexed_at_ns":1787726739215476500,"word_count":137},"scripts/deploy.sh":{"size":3346,"mtime_ns":1787136904559094200,"indexed_at_ns":1787726739805264300,"word_count":351,"hashes":{"scripts/deploy.sh":"64d276bb6eb6cfb83690c529b9d1c0c71fa46aa912a458f684dfcf842fab2aea"}},"scripts/open-browsers.js":{"size":1551,"mtime_ns":1788000056009180700,"indexed_at_ns":1788000469601092500,"word_count":202},"scripts/start-dev.js":{"size":1689,"mtime_ns":1787997670335055900,"indexed_at_ns":1787998039460221000,"word_count":186},"start.sh":{"size":26,"mtime_ns":1784033954813080300,"indexed_at_ns":1787726739806268200,"word_count":4,"hashes":{"start.sh":"694c258b963c309734a3316c770f5fef29703bc6f24754b04155fd8db94cf862"}},"swagger.yml":{"size":95785,"mtime_ns":1786799852892091600,"indexed_at_ns":1787726739249239800,"word_count":7031},"test-coverage-map.md":{"size":13899,"mtime_ns":1787729528078006200,"indexed_at_ns":1787729937356455600,"word_count":1524,"hashes":{"test-coverage-map.md":"970d0bc2af7773ce27006da7c642991e3f094e71838201680fca7d9dfe809746"}},"tests/e2e/admin/admin-b2b-submissions.spec.ts":{"size":8979,"mtime_ns":1787729528080005900,"indexed_at_ns":1787729936612960300,"word_count":742},"tests/e2e/admin/admin-blogs-crud.spec.ts":{"size":5540,"mtime_ns":1787729528080005900,"indexed_at_ns":1787729936618959100,"word_count":490},"tests/e2e/admin/admin-crud.spec.ts":{"size":6485,"mtime_ns":1787729528081005800,"indexed_at_ns":1787729936623995800,"word_count":569},"tests/e2e/admin/admin-orders-flow.spec.ts":{"size":4130,"mtime_ns":1787729528082005000,"indexed_at_ns":1787729936630000900,"word_count":352},"tests/e2e/admin/admin-rbac-roles.spec.ts":{"size":4011,"mtime_ns":1787729528083005700,"indexed_at_ns":1787729936634530400,"word_count":327},"tests/e2e/security/xss-ratelimit.spec.ts":{"size":5646,"mtime_ns":1787729528085005800,"indexed_at_ns":1787729936640566600,"word_count":491},"tests/e2e/storefront/auth-otp-recovery.spec.ts":{"size":4540,"mtime_ns":1787729528086009200,"indexed_at_ns":1787729936646208300,"word_count":384},"tests/e2e/storefront/b2b-flow.spec.ts":{"size":3521,"mtime_ns":1787729528086516700,"indexed_at_ns":1787729936650784800,"word_count":288},"tests/e2e/storefront/blog-wiki.spec.ts":{"size":2107,"mtime_ns":1787729528087532400,"indexed_at_ns":1787729936656754300,"word_count":185},"tests/e2e/storefront/cart-operations.spec.ts":{"size":3910,"mtime_ns":1787729528089034600,"indexed_at_ns":1787729936662399200,"word_count":332},"tests/e2e/storefront/checkout-flow.spec.ts":{"size":2766,"mtime_ns":1787729528089034600,"indexed_at_ns":1787729936667403000,"word_count":251},"tests/e2e/storefront/concurrency-stock.spec.ts":{"size":5868,"mtime_ns":1787729528090041700,"indexed_at_ns":1787729936673410700,"word_count":537},"tests/e2e/storefront/contact.spec.ts":{"size":2899,"mtime_ns":1787729528091042800,"indexed_at_ns":1787729936678440900,"word_count":238},"tests/e2e/storefront/error-pages-404-500.spec.ts":{"size":1238,"mtime_ns":1787729528092042000,"indexed_at_ns":1787729936683435600,"word_count":121},"tests/e2e/storefront/order-tracking.spec.ts":{"size":3125,"mtime_ns":1787729528093041900,"indexed_at_ns":1787729936689592900,"word_count":282},"tests/e2e/storefront/shop-filter-search.spec.ts":{"size":2151,"mtime_ns":1787729528094048800,"indexed_at_ns":1787729936695374800,"word_count":187},"tests/fixtures/admin-auth.setup.ts":{"size":1950,"mtime_ns":1787729528095047800,"indexed_at_ns":1787729936700406800,"word_count":195},"tests/fixtures/index.ts":{"size":194,"mtime_ns":1787729528095047800,"indexed_at_ns":1787729936705408800,"word_count":32},"tsconfig.json":{"size":439,"mtime_ns":1787729528096047500,"indexed_at_ns":1787729937145762700,"word_count":37,"hashes":{"tsconfig.json":"12f2e30da1a34da7d06440370b7d1930cd5a3c3293f485789f5cfa2434aeea6f"}},"frontend/application/app/smart-advisor/page.tsx":{"size":2634,"mtime_ns":1787740536678699600,"indexed_at_ns":1787741544436016800,"word_count":232},"frontend/application/app/dashboard/orders/page.tsx":{"size":132,"mtime_ns":1787741941302806200,"indexed_at_ns":1787741982449356000,"word_count":13},"frontend/application/app/dashboard/pets/page.tsx":{"size":128,"mtime_ns":1787741941303809300,"indexed_at_ns":1787741982462112200,"word_count":13},"frontend/application/components/ProductImageZoomModal.tsx":{"size":12596,"mtime_ns":1788609394334189600,"indexed_at_ns":1788613610968916100,"word_count":1139},"frontend/application/app/api/media/[...path]/route.ts":{"size":6739,"mtime_ns":1788353078508488900,"indexed_at_ns":1788608124068410300,"word_count":613},"frontend/application/app/api/uploads/[...path]/route.ts":{"size":6805,"mtime_ns":1788353078510085700,"indexed_at_ns":1788608124086973600,"word_count":622},"frontend/application/lib/media.ts":{"size":2051,"mtime_ns":1788353540759919900,"indexed_at_ns":1788608124702730800,"word_count":227},"frontend/application/components/NavigationProgressBar.tsx":{"size":3658,"mtime_ns":1787999006325061100,"indexed_at_ns":1787999346873063500,"word_count":380},"frontend/application/app/api/torob/products/route.ts":{"size":6649,"mtime_ns":1788328838746612700,"indexed_at_ns":1788330894736956000,"word_count":738},"backend/src/products/torob.controller.ts":{"size":6562,"mtime_ns":1788334048806380400,"indexed_at_ns":1788334713978590500,"word_count":681},"backend/src/admin/dto/pricing.dto.ts":{"size":5033,"mtime_ns":1788334048800615600,"indexed_at_ns":1788334713321316900,"word_count":444},"backend/src/common/utils/pricing.utils.ts":{"size":1516,"mtime_ns":1788330948589741100,"indexed_at_ns":1788332263529713900,"word_count":205},"frontend/admin-panel/src/utils/pricing.ts":{"size":1127,"mtime_ns":1788330948594740900,"indexed_at_ns":1788332268764720100,"word_count":147},"backend/src/common/services/sms-events.constants.ts":{"size":10144,"mtime_ns":1788609394319095700,"indexed_at_ns":1788613605418411400,"word_count":956},"frontend/application/components/AnalyticsDeferred.tsx":{"size":3286,"mtime_ns":1788609394332188600,"indexed_at_ns":1788613610781541900,"word_count":303},"frontend/application/public/images/favicons/android-chrome-192x192.png":{"size":62883,"mtime_ns":1788587906752677800,"indexed_at_ns":1788608128262720100,"word_count":2247},"frontend/application/public/images/favicons/android-chrome-512x512.png":{"size":395793,"mtime_ns":1788587906757218700,"indexed_at_ns":1788608128270717200,"word_count":13917},"frontend/application/public/images/favicons/apple-touch-icon.png":{"size":56230,"mtime_ns":1788587906759218700,"indexed_at_ns":1788608128285373300,"word_count":2032},"frontend/application/public/images/favicons/favicon-16x16.png":{"size":943,"mtime_ns":1788587906761187700,"indexed_at_ns":1788608128293375000,"word_count":36},"frontend/application/public/images/favicons/favicon-32x32.png":{"size":2797,"mtime_ns":1788587906763190700,"indexed_at_ns":1788608128300378400,"word_count":103},"frontend/application/lib/petCompatibility.ts":{"size":3636,"mtime_ns":1788613313838347700,"indexed_at_ns":1788613611159483700,"word_count":324}} \ No newline at end of file diff --git a/graphify-out/graph.html b/graphify-out/graph.html index 8d89d50..c0cdc29 100644 --- a/graphify-out/graph.html +++ b/graphify-out/graph.html @@ -63,12 +63,12 @@
-
4234 nodes · 7717 edges · 310 communities
+
4240 nodes · 7765 edges · 330 communities